2021-11-29 17:29:47 +00:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
|
|
|
<div class="header" style="background-color: whitesmoke">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
2021-11-29 21:02:54 +00:00
|
|
|
|
|
|
|
{{ range .Data.Pages.GroupByParam "topic"}}
|
2021-11-29 22:20:38 +00:00
|
|
|
<center><h3 id="#{{ .Key }}"><a href="#{{ .Key }}">#</a>{{ .Key }}</h3></center>
|
2021-11-29 21:02:54 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="micro-block"><b> </b></div>
|
|
|
|
<div class="big-block" style="vertical-align: middle"><b> Title</b></div>
|
|
|
|
<div class="small-block"><b> Author</b></div>
|
|
|
|
<div class="small-block"><b> Era</b></div>
|
|
|
|
</div>
|
2021-11-29 17:29:47 +00:00
|
|
|
<ul>
|
2021-11-29 21:02:54 +00:00
|
|
|
{{ range .Pages.ByParam "era" }}
|
2021-11-29 17:29:47 +00:00
|
|
|
{{ .Render "li" }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
2021-11-29 21:22:26 +00:00
|
|
|
<hr/>
|
2021-11-29 17:29:47 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|