aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/section.html
blob: a27e808d96ac3703be26287b0f8980b535da1941 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
<h1>{{ strings.Title .Section }}</h1>
<table style="width: 100%">
	<colgroup>
		<col span="1" style="width: 10%;">
		<col span="1" style="width: 30%;">
		<col span="1" style="width: 60%;">
	</colgroup>
	{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
	{{ $paginator := .Paginate (where $pages "Params.hidden" "ne" true) }}
	{{ range $index, $element := $paginator.Pages }}
	<tr>
		<td style="border: none; text-align: right;">{{ add $index 1 }}</td>
		<td style="border: none; text-align: center;">{{ dateFormat "2006-01-02" $element.Date }}</td>
        <td style="border: none;"><a href="{{ .RelPermalink }}">{{ $element.Title }}</a></td>
	</tr>
	{{ end }}
</table>
{{ end }}