mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 00:15:59 -06:00
21 lines
461 B
HTML
21 lines
461 B
HTML
{{ define "main" }}
|
|
<h1>
|
|
{{ partial "icon.html" "files" }}
|
|
{{ .Title | markdownify }}
|
|
</h1>
|
|
|
|
<div class="series-taxonomy">
|
|
{{ with .Pages }}
|
|
<ul>
|
|
{{ range . }}
|
|
<li>{{ .Render "summary/series" }}</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ else }}
|
|
<div>
|
|
{{ i18n "no_posts" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|