Revert "Yet another update, hopefully of better quality"
All checks were successful
continuous-integration/drone/push Build is passing

This reverts commit 8afa44019d.
This commit is contained in:
2022-11-30 02:08:40 +01:00
parent 8afa44019d
commit 2a143729c2
3 changed files with 51 additions and 75 deletions

View File

@@ -1,35 +1,35 @@
{{ define "main" }}
<article class="post">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
<div class="post-meta">
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "calendar") }} {{
.PublishDate.Format "Jan 2, 2006" }}
<article class="post">
<header class="post-header">
<h1 class ="post-title">{{ .Title }}</h1>
<div class="post-meta">
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "calendar") }}
{{ .PublishDate.Format "Jan 2, 2006" }}
</div>
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "clock") }}
{{ .ReadingTime }} min read
</div>
{{- with .Params.tags -}}
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "tag") }}
{{ range . -}}
{{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}
<a class="tag" href="{{ .Permalink }}">{{ .Title }}</a>
{{- end -}}
{{- end -}}
</div>
{{- end -}}
</div>
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "clock") }} {{ .ReadingTime
}} min read
</div>
{{- with .Params.tags -}}
<div>
{{ partial "icon.html" (dict "ctx" $ "name" "tag") }} {{ range . -}} {{-
with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}
<a class="tag" href="{{ .Permalink }}">{{ .Title }}</a>
{{- end -}} {{- end -}}
</div>
{{- end -}}
</header>
<div class="post-content">
{{ .Content }}
</div>
</header>
<div class="post-content">{{ .Content }}</div>
<div class="post-footer">
<div id="commento"></div>
</div>
</article>
<script
defer
src="https://commento.phundrak.com/js/commento.js"
data-css-override="http://blog.phundrak.com/ox-hugo/commento.css"
data-auto-init="true"
></script>
<div class="post-footer">
{{ template "_internal/disqus.html" . }}
</div>
</article>
<script defer src="https://commento.phundrak.com/js/commento.js"></script>
<div id="commento"></div>
{{ end }}