Add ability to add about me page

This commit is contained in:
Joseph Hutchinson
2018-05-22 16:43:29 -04:00
parent d99502225f
commit fbcb71a2fe
9 changed files with 42 additions and 10 deletions

31
layouts/posts/single.html Normal file
View File

@@ -0,0 +1,31 @@
<!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 dropcase">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
<p class="post-date">Posted <time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.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 "li-next" }}
{{ end }}
{{ partial "home-card.html" . }}
</nav>
{{ partial "scripts.html" . }}
</body>
</html>