archive.ftl #1

  • //
  • main/
  • guest/
  • tjuricek/
  • p4java_ext/
  • src/
  • site/
  • templates/
  • archive.ftl
  • View
  • Commits
  • Open Download .zip Download (591 B)
<#include "header.ftl">

	<#include "menu.ftl">
	
	<div class="page-header">
		<h1>Blog Archive</h1>
	</div>
	
	<!--<ul>-->
		<#list published_posts as post>
		<#if (last_month)??>
			<#if post.date?string("MMMM yyyy") != last_month>
				</ul>
				<h4>${post.date?string("MMMM yyyy")}</h4>
				<ul>
			</#if>
		<#else>
			<h4>${post.date?string("MMMM yyyy")}</h4>
			<ul>
		</#if>
		
		<li>${post.date?string("dd")} - <a href="${post.uri}"><#escape x as x?xml>${post.title}</#escape></a></li>
		<#assign last_month = post.date?string("MMMM yyyy")>
		</#list>
	</ul>
	
<#include "footer.ftl">
# Change User Description Committed
#1 9085 tjuricek First import of the project, before package refactoring.