hugo-theme-anubis2/layouts/partials/post-summary.html

48 lines
1.7 KiB
HTML
Raw Normal View History

2023-11-18 09:19:26 +01:00
<article class="post-list h-feed post-card">
<div class="post-header">
<header>
{{ $random := (md5 .Title) }}
{{ $iconPath := printf "%sicon.svg" .File.Dir }}
{{ if fileExists $iconPath }}
<style>
.post-icon-{{ $random }}::before {
display: inline-block;
content: '';
background: url("/{{ $iconPath }}");
width: 1.2em;
height: 1.2em;
background-size: auto 100%;
vertical-align: text-bottom;
}
</style>
{{ end }}
<h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}} {{ if fileExists $iconPath}}post-icon-{{$random}}{{end}}">
<a class="u-url" href="{{ .RelPermalink }}">{{ trim .Title " " | markdownify }}</a>
</h1>
</header>
2021-07-08 22:32:45 +02:00
{{ partial "post-language-switcher.html" . }}
</div>
2020-06-06 21:05:21 +02:00
2021-04-13 19:20:58 +02:00
{{ if not .Site.Params.disableSummary }}
<div class="content post-summary p-summary">
{{ .Summary | safeHTML }}
2021-04-13 19:20:58 +02:00
</div>
{{ end }}
2020-08-12 21:25:08 +02:00
{{ if and (.Truncated) (.Site.Params.readMore) }}
2020-06-06 21:05:21 +02:00
<div class="read-more">
<a class="u-url" href="{{ .RelPermalink }}">{{ i18n "readMore" }}</a>
2020-06-06 21:05:21 +02:00
</div>
2020-08-12 21:25:08 +02:00
{{ end }}
{{ if .Store.Get "hasMermaid" }}
{{ partial "mermaid_support.html" . }}
{{ end }}
{{ if .Params.math }}
{{ partial "mathjax_support.html" . }}
{{ end }}
2024-04-09 14:03:09 +02:00
2021-07-09 18:00:52 +02:00
{{ partial "post-info.html" . }}
2024-04-09 14:03:09 +02:00
</article>