summaryrefslogtreecommitdiff
path: root/layouts/index.html
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2016-05-26 17:34:17 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2016-05-26 17:34:17 +0200
commit9b5b232284141fd02e4c8c6b049d0ec4b3d6083c (patch)
tree4cd6225d6cd6202d7c4070e30a765c9e07ff5330 /layouts/index.html
parent4556a4ec7753a8cf85e0568e245dc3e7328bc708 (diff)
downloadblog-9b5b232284141fd02e4c8c6b049d0ec4b3d6083c.tar.gz
blog-9b5b232284141fd02e4c8c6b049d0ec4b3d6083c.zip
change date format and page titles
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html
index 1935813..a3594e6 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,10 +1,11 @@
{{ partial "header.html" . }}
<main role="main">
+ <h1 class="list-title">Tech</h1>
{{ range (where .Data.Pages ".Section" "==" "tech") }}
<article itemscope itemtype="http://schema.org/Blog">
<h2 class="entry-title" itemprop="headline"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
- <span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
+ <span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
</article>
{{ end }}
</main>