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