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/links/single.html

20 lines
544 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">
{{ .Content }}
<p>{{ .Params.externalUrl | markdownify }}</p>
</div>
{{ partial "post_tags.html" . }}
</article>
</main>
{{ partial "webmentionform" . }}
{{ partial "authorbox.html" . }}
{{ partial "post_nav.html" . }}
{{ end }}