summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2019-11-24 17:18:36 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2019-11-24 17:43:52 +0100
commit1f74c443405b2827217275bbdc428bd9320bb99a (patch)
treed97b3c35280ab24fdffd9b099fca0f318239986b /layouts/_default/single.html
parentf752530692e7a3db2d75bc2c77b80839da64d5f3 (diff)
downloadblog-1f74c443405b2827217275bbdc428bd9320bb99a.tar.gz
blog-1f74c443405b2827217275bbdc428bd9320bb99a.zip
Rework index page layout to include projects
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html20
1 files changed, 11 insertions, 9 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 431e193..e5ed960 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,13 +1,15 @@
{{ partial "header.html" . }}
- <main role="main">
- <article itemscope itemtype="http://schema.org/BlogPosting">
- <h1 class="entry-title" itemprop="headline">{{ .Title }}</h1>
- <span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
- <section itemprop="entry-text">
- {{ .Content }}
- </section>
- </article>
- </main>
+ <main role="main">
+ <article itemscope itemtype="http://schema.org/BlogPosting">
+ <h1 class="entry-title" itemprop="headline">{{ .Title }}</h1>
+ <span class="entry-meta">
+ <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>
+ </span>
+ <section itemprop="entry-text">
+ {{ .Content }}
+ </section>
+ </article>
+ </main>
{{ partial "footer.html" . }}