jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/_default/single.html

43 lines
1.5 KiB
HTML
Raw Normal View History

2019-09-03 15:50:00 +00:00
{{ define "main" }}
2019-09-05 15:01:57 +00:00
<main class="main h-entry">
<article>
2019-09-03 15:50:00 +00:00
<header class="main-header">
2019-11-19 08:22:33 +00:00
{{ with .Title }}
<h1 class="p-name post-title">{{ . }}</h1>
{{ end }}
2019-12-25 13:35:57 +00:00
{{ if not .Params.nometa }}
2020-04-11 17:27:10 +00:00
<div class="post-meta">
2020-04-20 18:12:21 +00:00
{{ partial "post_meta" . }}
2020-04-11 17:27:10 +00:00
{{ if (.Param "speak") }}
<div id="speakBtn" class="item" style="display: none;"></div>
{{ $speakScript := resources.Get "js/speak.js" | minify | fingerprint }}
<script>const speakText = "{{ T "speak" }}";const stopSpeakText = "{{ T "stopspeak" }}";</script>
2020-04-11 17:27:10 +00:00
<script defer src="{{ $speakScript.RelPermalink }}" integrity="{{ $speakScript.Data.Integrity }}"></script>
{{ end }}
</div>
2019-12-25 13:35:57 +00:00
{{ end }}
2019-09-03 15:50:00 +00:00
</header>
{{ partial "oldcontentwarning" . }}
2019-09-03 15:50:00 +00:00
<div class="e-content content clearfix">
{{ with .Params.audio }}
<p><audio controls preload="metadata" style="width: 100%;"><source src="{{ . }}"/></audio></p>
{{ end }}
{{ .Content }}
{{ with .Params.externalUrl }}
<p><a class="u-bookmark-of" href="{{ . }}" target="_blank">{{ . }}</a></p>
{{ end }}
2019-09-03 15:50:00 +00:00
</div>
2020-02-22 07:57:27 +00:00
{{ partial "post_tags" . }}
2019-09-03 15:50:00 +00:00
</article>
{{ if (.Param "authorbox") }}{{ partialCached "authorbox" . }}{{ end }}
2019-09-03 15:50:00 +00:00
</main>
{{ if (and (.Param "promo") .CurrentSection.Parent) }}{{ partialCached "promo" . }}{{ end }}
2020-03-21 10:27:28 +00:00
{{ range $i, $image := .Params.images }}
<a href="#_" class="lightbox" id="{{ $image | md5 }}-lightbox">
<img src="{{ $image | safeURL }}">
</a>
{{ end }}
2019-09-03 15:50:00 +00:00
{{ partial "webmentionform" . }}
2019-12-12 08:09:31 +00:00
{{ partial "mentions.html" . }}
2019-09-03 15:50:00 +00:00
{{ partial "post_nav.html" . }}
{{ end }}