mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-11-14 20:35:58 -06:00
BBaoVanC
7bc8a4cb57
- Add vim folds to make organized sections - Rename a lot of classes from post- to page- - Generalize series CSS classes better - Clean up navbar div structure - Remove langpicker and most of multilingual support - many other minor tweaks
20 lines
561 B
HTML
20 lines
561 B
HTML
<h2 class="page-title">
|
|
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
<a class="heading-link" href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
|
</h2>
|
|
|
|
{{ partial "page-metadata/series.html" . }}
|
|
|
|
<div class="page-description">
|
|
{{ partial "description-or-summary.html" . }}
|
|
</div>
|
|
|
|
<div class="page-list series-inner">
|
|
{{ range .Data.Pages.Reverse }}
|
|
<article class="page">
|
|
{{ .Render "summary" }}
|
|
</article>
|
|
{{ end }}
|
|
</div>
|