Files
aether/layouts/_default/single.html
Joseph Hutchinson a41ab67dc1 menu overlay fade in
2018-04-30 23:36:15 -04:00

31 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" dir="ltr">
{{ partial "head.html" . }}
<body class="single-body">
{{ partial "nav-bar.html" . }}
<main class="content side-text-padding">
<article class="post">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
<p class="post-date">Posted <time datetime="{{ .PublishDate.Format "2006-01-02 12:00" }}">{{ .PublishDate.Format "Jan 2, 2006" }}</time></p>
</header>
{{ if isset .Params "featuredimage" }}
<figure class="post-figure">
<img src="{{ .Site.BaseURL }}/{{.Params.featuredimage }}">
</figure>
{{ end }}
{{ .Content }}
</article>
<!--
If you're going to use DISQUS comments, insert code here.
-->
</main>
<nav class="end-nav side-padding">
{{ with .Next }}
{{ .Render "single-li" }}
{{ end }}
{{ partial "home-card.html" . }}
</nav>
{{ partial "scripts.html" . }}
</body>
</html>