aboutsummaryrefslogtreecommitdiff
path: root/themes/bare/layouts/_default/list.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/list.html
parentd95fc5ca9e6a9c28894514b77e77b6b0eb58fbe9 (diff)
downloadmitjafelicijan.com-23542c9a37a18f1d18c7739241bdef19c0be0124.tar.gz
Removal of bare theme
Diffstat (limited to 'themes/bare/layouts/_default/list.html')
-rwxr-xr-xthemes/bare/layouts/_default/list.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/themes/bare/layouts/_default/list.html b/themes/bare/layouts/_default/list.html
deleted file mode 100755
index 73952eb..0000000
--- a/themes/bare/layouts/_default/list.html
+++ /dev/null
@@ -1,21 +0,0 @@
1{{ define "main" }}
2<main role="main">
3
4 <!-- List of all blog posts -->
5 <nav itemscope itemtype="https://schema.org/SiteNavigationElement" role="feed">
6 <meta itemprop="name" content="Article list">
7 {{ range (where .Site.RegularPages "Section" "posts") }}
8 <article itemscope itemtype="http://schema.org/Article" style="padding-bottom:10px;">
9 <time style="display:inline-block;width:70px">{{ .Date.Format "Jan 2006" }}</time>
10 <a href="/{{ .Params.url }}" itemprop="url" rel="bookmark noopener" aria-label="Opens URL">
11 {{ if .Params.draft }}
12 <span style="background:orange">Draft</span>
13 {{ end }}
14 {{.Title}}
15 </a>
16 </article>
17 {{ end }}
18 </nav>
19
20</main>
21{{ end }}