mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
18 lines
745 B
HTML
18 lines
745 B
HTML
{{ partial "header.html" . }}
|
|
<section class="main">
|
|
<div class="container">
|
|
<div class="content">
|
|
{{ partial "page-heading.html" . }}
|
|
<div class="markdown">
|
|
{{ if .Site.Params.progressively }}
|
|
{{ $newImage := (print "<figure class=\"progressive\"><img class=\"progressive__img progressive--not-loaded\" data-progressive=\"" .Site.BaseURL "$1/high/$2\" src=\"$1/low/$2\" alt=$3></figure>") }}
|
|
{{ .Content | replaceRE "<img src=\"/(.*)\\/(.*)\" alt=(.*)>" $newImage | safeHTML }}
|
|
{{ else }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ partial "footer.html" . }}
|