aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2019-10-25 01:49:59 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2019-10-25 01:49:59 +0200
commit52dd381304bf920eeced8985e8ab1d4cb1bc40a4 (patch)
tree90df088dfc7523e4ad0742d6773cea00366a6c08 /src/index.html
parentbc4ea1bd4874860f1abb22f0a6a1b4c305cbc77e (diff)
downloadmitjafelicijan.com-52dd381304bf920eeced8985e8ab1d4cb1bc40a4.tar.gz
Added simple commenting system with Firebase Database integration
Diffstat (limited to 'src/index.html')
-rw-r--r--src/index.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/index.html b/src/index.html
index c0767b0..6b987f7 100644
--- a/src/index.html
+++ b/src/index.html
@@ -2,8 +2,10 @@
2<ul class="article-list"> 2<ul class="article-list">
3{{ range .Site.Pages.Children "experiments/" }} 3{{ range .Site.Pages.Children "experiments/" }}
4 <li> 4 <li>
5 {{ template "date" .Date }} 5 <div>
6 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a> 6 <time>{{ template "date" .Date }}</time>
7 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
8 </div>
7 </li> 9 </li>
8{{ end }} 10{{ end }}
9</ul> 11</ul>
@@ -12,7 +14,7 @@
12<ul class="article-list"> 14<ul class="article-list">
13{{ range .Site.Pages.Children "notes/" }} 15{{ range .Site.Pages.Children "notes/" }}
14 <li> 16 <li>
15 {{ template "date" .Date }} 17 <time>{{ template "date" .Date }}</time>
16 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a> 18 <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
17 </li> 19 </li>
18{{ end }} 20{{ end }}