22 lines
446 B
HTML
22 lines
446 B
HTML
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<div class="header" style="background-color: whitesmoke">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
</div>
|
||
|
<div class="content">
|
||
|
|
||
|
{{ range .Data.Pages.GroupByParam "series"}}
|
||
|
<center><h2 id="#{{ .Key }}"><a href="#{{ .Key }}">#</a>{{ .Key }}</h2></center>
|
||
|
<div class="row">
|
||
|
</div>
|
||
|
<ul>
|
||
|
{{ range .Pages.ByParam "date" }}
|
||
|
{{ .Render "li" }}
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
<hr/>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|