hugo-theme-anubis2/layouts/_default/single.html

34 lines
1011 B
HTML
Raw Normal View History

2020-01-12 07:51:51 +01:00
{{ define "main" }}
2020-06-24 21:21:59 +02:00
{{ if .Menus }}
<nav class="post-navigation">
{{ range .Menus }}
<a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a>
2020-06-24 21:21:59 +02:00
{{ end }}
</nav>
{{ end }}
<article class="post h-entry">
2020-06-21 22:23:07 +02:00
<header class="post-header">
<h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1>
2021-07-08 22:32:45 +02:00
{{ partial "post-language-switcher.html" . }}
2020-01-12 07:51:51 +01:00
</header>
<div class="content e-content">
2020-02-02 16:01:10 +01:00
{{ .Content }}
</div>
{{ partial "postInfo.html" . }}
2020-01-12 07:51:51 +01:00
</article>
2020-06-24 21:21:59 +02:00
{{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }}
{{ partial "paginationPost.html" . }}
{{ end }}
2020-01-21 19:57:57 +01:00
{{ if .Site.DisqusShortname }}
{{ template "_internal/disqus.html" . }}
{{ end }}
2020-01-12 07:51:51 +01:00
2021-01-17 17:16:45 +01:00
{{ if .Site.Params.UtterancesRepo }}
{{ partial "utterances.html" . }}
{{ end }}
2020-01-12 07:51:51 +01:00
{{ end }}