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

22 lines
633 B
HTML

{{ define "main" }}
<main class="main">
<article class="h-entry post">
<header class="main-header">
<h1 class="p-name post-title">{{ .Title }}</h1>
{{ with partial "post_meta.html" . -}}
<div class="post-meta">{{ . }}</div>
{{- end }}
</header>
<div class="e-content content clearfix">
{{ with .Params.audio }}
<p><audio controls preload="metadata" style="width: 100%;"><source src="{{ . }}"/></audio></p>
{{ end }}
{{ .Content }}
</div>
{{ partial "post_tags.html" . }}
</article>
</main>
{{ partial "webmentionform" . }}
{{ partial "authorbox.html" . }}
{{ partial "post_nav.html" . }}
{{ end }}