mirror of
https://github.com/rottenwheel/revuoxmrtheme.git
synced 2024-11-09 20:20:06 +00:00
23 lines
696 B
HTML
23 lines
696 B
HTML
|
{{ define "main" }}
|
||
|
<ul id="posts">
|
||
|
{{ $paginator := .Paginate (where site.Pages "Type" "periodical") 6 }}
|
||
|
{{ range $paginator.Pages }}
|
||
|
{{ if not .Params.issuenumber }}
|
||
|
{{ continue }}
|
||
|
{{ end }}
|
||
|
|
||
|
<li class="post">
|
||
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||
|
<time class="by-line">{{ .Date.Format .Site.Params.dateFormat }}</time>
|
||
|
<a href="{{ .RelPermalink }}">
|
||
|
<img class="img-lead" src="{{ .RelPermalink }}cover.png" alt="Revuo Monero Weekly #{{ .Params.issuenumber }} cover">
|
||
|
</a>
|
||
|
|
||
|
{{ $sTitle := split .Params.title ":" }}
|
||
|
<p>Covering the period of {{ .Params.covering }}.</p>
|
||
|
</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
|
||
|
{{ partial "pagination.html" . }}
|
||
|
{{ end }}
|