Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
25 righe
908 B
25 righe
908 B
5 anni fa
|
<#assign portlet_display = portletDisplay />
|
||
|
|
||
|
<#assign portlet_id = htmlUtil.escapeAttribute(portlet_display.getId()) />
|
||
|
<#assign portlet_title = htmlUtil.escape(portlet_display.getTitle()) />
|
||
|
<#assign portlet_back_url = htmlUtil.escapeHREF(portlet_display.getURLBack()) />
|
||
|
|
||
|
<section class="portlet" id="portlet_${portlet_id}">
|
||
|
<header class="portlet-topper">
|
||
|
<h1 class="portlet-title">
|
||
|
${theme.portletIconPortlet()} <span class="portlet-title-text">${portlet_title}</span>
|
||
|
</h1>
|
||
|
|
||
|
<menu class="portlet-topper-toolbar" id="portlet-topper-toolbar_${portlet_id}" type="toolbar">
|
||
|
<#if portlet_display.isShowBackIcon()>
|
||
|
<a href="${portlet_back_url}" class="portlet-icon-back"><@liferay.language key="return-to-full-page" /></a>
|
||
|
<#else>
|
||
|
${theme.portletIconOptions()}
|
||
|
</#if>
|
||
|
</menu>
|
||
|
</header>
|
||
|
|
||
|
<div class="portlet-content">
|
||
|
${portlet_display.writeContent(writer)}
|
||
|
</div>
|
||
|
</section>
|