personal-blog/layouts/podcast/podcast.html

22 lines
470 B
HTML

{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke">
<h1 style="color: gray(35)">{{ .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.ByDate.Reverse }}
{{ .Render "li" }}
{{ end }}
</ul>
<hr/>
{{ end }}
</div>
{{ partial "footer.html" . }}