Files
edition.rechampir/layouts/_default/single.html
2021-05-30 16:01:05 +02:00

45 lines
1.5 KiB
HTML

{{ define "main" }}
<main>
<article>
{{ if in site.Params.mainSections .Page.Section }}
<h1 class="page-title blog">{{ .Title }}</h1>
{{ else }}
<h1 class="page-title">{{ .Title }}</h1>
{{ end }}
{{- /* Show post information if it's a post, otherwise just the content */ -}}
{{ if in site.Params.mainSections .Page.Section }}
<p class="blog-post-info">Posted: <time>{{ .Date.Format "2006-01-02" }}</time>
{{ partial "blog-taxonomy-info" . }}</p>
<div class="blog-post-content">
{{ .Content }}
</div>
{{ template "_internal/disqus.html" . }}
{{ else }}
{{ .Content }}
{{ end }}
{{if or (.PrevInSection) (.NextInSection)}}
<div class="next-prev">
<hr>
<div class="g-two-up">
{{with .PrevInSection }}
<div>
<h3>Suivant</h3>
<p><a href=" {{ .Permalink }}">{{ .Title | safeHTML }}</a></p>
</div>
{{ end }}
{{with .NextInSection }}
<div>
<h3>Précédent</h3>
<p><a href=" {{ .Permalink }}">{{ .Title | safeHTML }}</a></p>
</div>
{{ end }}
</div>
</div>
{{ end }}
{{/* partial "breadcrumbs.html" . */}}
</article>
</main>
{{ end }}