aboutsummaryrefslogtreecommitdiff
path: root/themes/bare/layouts/_default/single.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-01-26 11:38:51 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-01-26 11:38:51 +0100
commit23542c9a37a18f1d18c7739241bdef19c0be0124 (patch)
treef88de3d0b36530daaf33dd5a8564086375656b29 /themes/bare/layouts/_default/single.html
parentd95fc5ca9e6a9c28894514b77e77b6b0eb58fbe9 (diff)
downloadmitjafelicijan.com-23542c9a37a18f1d18c7739241bdef19c0be0124.tar.gz
Removal of bare theme
Diffstat (limited to 'themes/bare/layouts/_default/single.html')
-rwxr-xr-xthemes/bare/layouts/_default/single.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/themes/bare/layouts/_default/single.html b/themes/bare/layouts/_default/single.html
deleted file mode 100755
index 23a60a9..0000000
--- a/themes/bare/layouts/_default/single.html
+++ /dev/null
@@ -1,20 +0,0 @@
1{{ define "main" }}
2<main role="main">
3
4 <!-- Single article -->
5 <article itemtype="http://schema.org/Article">
6 <header>
7 <h1 itemtype="headline">{{ .Title }}</h1>
8
9 {{ if in .Type "posts" }}
10 <time>Published on {{ .Date.Format "Monday Jan 2, 2006" }}</time>
11 {{ end }}
12 </header>
13
14 <div>
15 {{.Content}}
16 </div>
17 </article>
18
19</main>
20{{ end }}