ariadne.space/layouts/_default/single.html

35 lines
859 B
HTML

{{ define "main" }}
<article class="h-entry">
<h1 class="p-name">{{ .Title }}</h1>
<div class="e-content">
{{ .Content }}
</div>
{{ if .Date }}
<p>
Published on
<a class="u-url" href="{{ .Permalink }}">
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</a>
</p>
{{ end }}
</article>
{{ end }}
{{ define "title" }}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "opengraph" }}
<!-- Opengraph tags -->
<meta property="og:url" content="{{ .Permalink }}">
<meta property="og:title" content="{{ .Title }}">
{{ if .Date }}
<meta property="og:type" content="article">
{{ end }}
<meta property="og:description" content="{{ .Summary }}">
<!-- Twitter tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@ariadneconill">
{{ end }}