aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 05:12:40 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2020-03-25 05:12:40 +0100
commited161e7fb20a697ecba070ef7db4c231d700f245 (patch)
tree5a415f8e758c6b7001ade8003ca2aa26b476b58c /src/index.html
parentfb94d7aef76a5996892ef82938524cb0c2e0d285 (diff)
downloadmitjafelicijan.com-ed161e7fb20a697ecba070ef7db4c231d700f245.tar.gz
Move to my own static generator
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/index.html b/src/index.html
deleted file mode 100644
index 6b987f7..0000000
--- a/src/index.html
+++ /dev/null
@@ -1,21 +0,0 @@
1<h2>Experiments</h2>
2<ul class="article-list">
3{{ range .Site.Pages.Children "experiments/" }}
4 <li>
5 <div>
6 <time>{{ template "date" .Date }}</time>
7 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
8 </div>
9 </li>
10{{ end }}
11</ul>
12
13<h2>General notes</h2>
14<ul class="article-list">
15{{ range .Site.Pages.Children "notes/" }}
16 <li>
17 <time>{{ template "date" .Date }}</time>
18 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
19 </li>
20{{ end }}
21</ul>