An error occurred while processing the template.
Denied access to method or field getParameter of class org.apache.catalina.core.ApplicationHttpRequest ---- FTL stack trace ("~" means nesting-related): - Failed at: #if request.getParameter("assetEntryI... [in template "20255#20295#9175378" at line 4, column 1] ----
1<#assign assetEntryId = 0 />
2<#assign scopeGroupIdLong = themeDisplay.getScopeGroupId()/>
3
4<#if request.getParameter("assetEntryId")??>
5 <#assign assetEntryId = getterUtil.getLong(request.getParameter("assetEntryId")) />
6 Printing asset entry id: ${assetEntryId}
7 <#assign entry= restClient.get("/headless-delivery/v1.0/sites/${scopeGroupIdLong}/structured-contents/by-key/${assetEntryId}")/>
8 <button class="btn" onclick="goBack()">
9 <span id="qfkd____"><svg aria-hidden="true" class="lexicon-icon lexicon-icon-angle-left" focusable="false" viewBox="0 0 512 512">
10 <path class="lexicon-icon-outline" d="M114.106 254.607c0.22 6.936 2.972 13.811 8.272 19.11l227.222 227.221c11.026 11.058 28.94 11.058 39.999 0 11.058-11.026 11.058-28.94 0-39.999l-206.333-206.333c0 0 206.333-206.333 206.333-206.333 11.058-11.059 11.058-28.973 0-39.999-11.058-11.059-28.973-11.059-39.999 0l-227.221 227.221c-5.3 5.3-8.052 12.174-8.273 19.111z"></path>
11 </svg></span>
12 </button>
13
14 <#if entry??>
15 <#assign
16 assetRenderer = entry.getAssetRenderer()
17 journalArticle = assetRenderer.getAssetObject()
18 />
19 <#if journalArticle?has_content>
20 <@liferay_journal["journal-article"]
21 articleId=journalArticle.getArticleId()
22 groupId=journalArticle.getGroupId()
23 />
24 </#if>
25 </#if>
26
27
28</#if>
29
30
31<script>
32function goBack() {
33 window.history.back();
34}
35</script>