mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 11:46:41 +02:00
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
{{ partial "header.html" . }}
|
|
|
|
<section class="main post non-narrow zero-top-spacing">
|
|
<div class="container">
|
|
<div class="content">
|
|
<div class="front-matter">
|
|
<div class="title-container">
|
|
{{ partial "page-heading" . }}
|
|
</div>
|
|
<div class="meta">
|
|
<div class="date" title="{{ .Date.Format .Site.Params.dateformfull }}">{{ .Date.Format .Site.Params.dateform }}</div>
|
|
<div class="reading-time"><div class="middot"></div>{{ if eq 1 .ReadingTime }}{{ .ReadingTime }} minute read{{ else }}{{ .ReadingTime }} minutes read{{ end }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="markdown">
|
|
{{ if .Site.Params.progressively }}
|
|
{{ .Content | replaceRE "<img src=(.*)\\/(.*) alt=(.*)>" "<figure class=\"progressive\"><img class=\"progressive__img progressive--not-loaded\" data-progressive=$1/high/$2 src=$1/low/$2 alt=$3></figure>" | safeHTML }}
|
|
{{ else }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
<br>
|
|
<p><a href="{{ .Section }}">Back to posts</a></p>
|
|
</div>
|
|
<br>
|
|
<div class="disqus">
|
|
{{ template "_internal/disqus.html" . }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|