mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-31 00:57:33 -05:00
This must've gotten out of sync somehow throughout the history. It slightly changes the margins by disabling the default one on h1, which is slightly larger than the breadcrumb nav margin-block's.
27 lines
589 B
HTML
27 lines
589 B
HTML
{{ define "main" }}
|
|
<div class="page-title">
|
|
<h1>
|
|
{{ partial "icon.html" "files" }}
|
|
{{ .Title | markdownify }}
|
|
</h1>
|
|
</div>
|
|
|
|
{{ with .Content }}
|
|
{{ . }}
|
|
{{ end }}
|
|
|
|
<div class="page-list series">
|
|
{{ with .Paginator.Pages }}
|
|
{{ range . }}
|
|
<div class="page series">
|
|
{{ .Render "summary" }}
|
|
</div>
|
|
{{ end }}
|
|
{{ else }}
|
|
<div>
|
|
{{ i18n "no_posts" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|