Casual_blog/themes/anubis2/layouts/index.html

36 lines
1.3 KiB
HTML
Raw Normal View History

2024-03-07 06:27:02 +00:00
{{ define "main" }}
<div class="index-content">
2024-03-07 06:27:02 +00:00
{{ .Content }}
</div>
<div class="articles h-feed">
<h1 class="post-title">{{ i18n .Title | markdownify }}</h1>
{{ $showFullContent := in .Site.Params.sectionsWithFullContentOnListPage .Section }}
{{ $pages := where .Site.RegularPages "Params.hidden" "!=" true}}
{{ $pagesRange := $pages}}
{{ if $showFullContent }}
{{ $pagesRange = (.Paginate $pages).Pages }}
{{ end}}
{{ range $pagesRange }}
<div class="post-short-list h-entry">
<div class="post-header">
<header>
<h2 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}"><a class="u-url" href="{{ .RelPermalink }}">{{ trim .Title " " | markdownify }}</a></h2>
{{ partial "post-language-switcher.html" . }}
</header>
</div>
{{ if $showFullContent }}
{{ .Content }}
{{ end }}
{{ partial "post-info.html" . }}
</div>
2024-03-07 06:27:02 +00:00
{{ end }}
{{ if $showFullContent }}
{{ partial "pagination.html" . }}
{{ end}}
2024-03-07 06:27:02 +00:00
</div>
{{ end }}