mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-09-13 22:45:16 -05:00
20 lines
572 B
HTML
20 lines
572 B
HTML
<article class="summary">
|
|
<h2 class="summary-title">
|
|
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
|
</h2>
|
|
|
|
{{ partial "page-metadata/series.html" . }}
|
|
|
|
{{ with .Summary }}
|
|
<div class="summary-description">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="page-list page-list-series-inner">
|
|
{{ partial "page-list.html" .Data.Pages.Reverse }}
|
|
</div>
|
|
</article>
|