hugo-theme-anubis2/layouts/index.html

32 lines
874 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
{{ range .Paginator.Pages }}
<article class="post-list">
<header>
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
<div class="article-info">
{{ if .Params.date }}
<div class="article-date">{{ .Params.date.Format "2006-01-02" }}</div>
{{ end }}
{{ if .Params.tags }}
<ul class="article-tags">
{{ range .Params.tags }}
<li><a href="/tags/{{ . }}">{{ . }}</a></li>
{{ end }}
</ul>
{{ end }}
</div>
{{ .Summary }}
<div class="read-more">
<a href="{{ .RelPermalink }}">Читать дальше</a>
</div>
</article>
{{ end }}
{{ partial "pagination.html" . }}
{{ end }}