2021-12-02 18:44:48 +00:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
|
|
|
<div class="header" style="background-color: whitesmoke">
|
2022-01-04 23:57:37 +00:00
|
|
|
<h1 style="color: gray(35)">{{ .Title }}</h1>
|
2021-12-02 18:44:48 +00:00
|
|
|
</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>
|
2022-06-25 15:38:39 +00:00
|
|
|
{{ range .Pages.ByDate.Reverse }}
|
2021-12-02 18:44:48 +00:00
|
|
|
{{ .Render "li" }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
<hr/>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|