You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
427 B

{{ define "section_content" }}
<div class="section" id="content">
{{ .Content }}
<ul>
{{ range .Data.Pages }}
<li>
{{ if .Params.showDate }}
{{ .Date.Format (.Site.Params.dateForm | default "Mon Jan 02, 2006")}} --
{{ end }}
<a href="{{.Permalink}}">
{{.Title}}
</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}