page_template_document1.html

 1   <#--
 2   Available objects :
 3    - String 				document 			The HTML code for the document (Xsl transformation result)
 4    - String 				portlet				The HTML code for documents list portlet containing the document
 5    - String 				categories			The HTML code for category list portlet linked with the document
 6    - String 				document_comments	The HTML code for the comments area
 7    - String 				document_id			The document id
 8    - String 				portlet_id			The portlet id
 9    - DocumentPublication 	publication 		The publication object. 
 10    											How to display the date publication : ${publication.datePublishing?date} or ${publication.datePublishing?datetime}
 11   -->
 12   <#if isExtendInstalled?? && isExtendInstalled>
 13   	@ExtenderParameter[${document_id},document,opengraph]@
 14   </#if>
 15   <div class="row">
 16   	<div id="content" class="col-xs-12 col-sm-12 col-md-12">
 17   		${document}
 18   	</div>
 19   </div>
 20   <div class="row">
 21   	<div id="sidebar" class="col-xs-12 col-sm-12 col-md-12">
 22   		<#if isExtendInstalled?? && isExtendInstalled>
 23   			@Extender[${document_id},document,actionbar]@
 24   			@Extender[${document_id},document,hit,{show:true}]@
 25   			@Extender[${document_id},document,rating,{show:"all"}]@
 26   			@Extender[${document_id},document,opengraph,{footer:false, header:false}]@
 27   		</#if>
 28   		<#if portlet?has_content >
 29   			${portlet}
 30   		</#if>
 31   	</div>
 32   </div>
 33   <div class="clearfix">&nbsp;</div>
 34   <#if isExtendInstalled?? && isExtendInstalled>
 35   	@Extender[${document_id},document,comment]@
 36   	@Extender[${document_id},document,feedback]@
 37   	@Extender[${document_id},document,opengraph,{footer:true}]@
 38   </#if>