mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 00:15:59 -06:00
24 lines
547 B
HTML
24 lines
547 B
HTML
|
{{ define "main" }}
|
||
|
<h1>
|
||
|
{{ partial "icon.html" "files" }}
|
||
|
{{ .Title | markdownify }}
|
||
|
{{ partial "rss-link.html" . }}
|
||
|
</h1>
|
||
|
|
||
|
{{ partial "term-description.html" . }}
|
||
|
|
||
|
<div class="page-list">
|
||
|
<ul>
|
||
|
{{ range .Paginator.Pages.Reverse }}
|
||
|
<li>{{ .Render "summary" }}</li>
|
||
|
{{ else }}
|
||
|
<div>
|
||
|
{{ i18n "no_posts" }}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
{{ partial "pagination.html" . }}
|
||
|
{{ end }}
|