personal-blog/layouts/post/post.html

18 lines
330 B
HTML
Raw Permalink Normal View History

2021-03-30 20:50:34 +00:00
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke">
2021-03-30 20:50:34 +00:00
<h1>{{ .Title }}</h1>
</div>
<div class="content">
{{ range .Data.Pages.GroupByDate "2006" }}
<h2>{{ .Key }}</h2>
<ul>
{{ range .Pages }}
{{ .Render "li" }}
{{ end }}
</ul>
{{ end }}
</div>
{{ partial "footer.html" . }}