bobatheme/layouts/_default/list.html

59 lines
1.4 KiB
HTML
Raw Normal View History

2021-09-26 15:02:47 -05:00
{{ define "main" }}
2021-10-06 09:52:06 -05:00
<h1>
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
2021-10-06 09:52:06 -05:00
{{ .Title | markdownify }}
<span class="rss-link">
{{ with .OutputFormats.Get "rss" }}
2021-11-03 20:30:13 -05:00
<a href="{{ .Permalink }}" target="_blank" rel="noopener">{{ partial "icon.html" "rss-feed" }}</a>
2021-10-06 09:52:06 -05:00
{{ end }}
</span>
</h1>
2021-10-06 09:36:04 -05:00
{{ with .Sections }}
2021-11-01 17:38:44 -05:00
<div class="sections">
{{ range . }}
2021-11-01 17:38:44 -05:00
<a class="section-anchor" href="{{ .Permalink }}">
<div class="section">
<h2 class="section-title">
{{ with .Params.icon }}{{ partial "icon.html" . }}{{ end }}
{{ .Title | markdownify }}
</h2>
<div class="section-description">
{{ if .Description }}
<p>
{{ .Description | markdownify }}
</p>
{{ else }}
{{ .Summary }}
{{ end }}
</div>
</div>
</a>
{{ end }}
</div>
{{ end }}
2021-11-01 17:38:44 -05:00
<div class="page-list">
<ul>
{{ range .Paginator.Pages }}
<li>{{ .Render "summary" }}</li>
{{ else }}
<div>
{{ i18n "no_posts" }}
</div>
{{ end }}
</ul>
2021-10-02 16:22:52 -05:00
</div>
{{ if gt .Paginator.TotalPages 1 }}
2021-10-02 19:26:33 -05:00
<div class="pagination">
{{ template "_internal/pagination.html" . }}
</div>
{{ end }}
2021-10-02 19:26:33 -05:00
{{ end }}