mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-05 08:25:59 -06:00
21 lines
406 B
HTML
21 lines
406 B
HTML
{{ define "main" }}
|
|
<h1>
|
|
{{ partial "icon.html" "files" }}
|
|
{{ .Title | markdownify }}
|
|
{{ partial "rss-link.html" . }}
|
|
</h1>
|
|
|
|
{{ partial "post-metadata/series.html" . }}
|
|
|
|
{{ with .Content }}
|
|
{{ . }}
|
|
{{ end }}
|
|
|
|
{{ with .Paginator.Pages.Reverse }}
|
|
{{ partial "page-list.html" . }}
|
|
{{ end }}
|
|
|
|
|
|
{{ partial "pagination.html" . }}
|
|
{{ end }}
|