diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2019-10-22 03:40:14 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2019-10-22 03:40:14 +0200 |
| commit | 28dd784a088a35739cdfdc4ce79f8ee6d50bf816 (patch) | |
| tree | c198abb97177f60864530ee46f5cdcf0ae88d2bf /src/index.html | |
| parent | 421677613114bb40780d3a5516b6930d386d0b09 (diff) | |
| download | mitjafelicijan.com-28dd784a088a35739cdfdc4ce79f8ee6d50bf816.tar.gz | |
Cleanup of repo and move to gostatic
Diffstat (limited to 'src/index.html')
| -rw-r--r-- | src/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..383737b --- /dev/null +++ b/src/index.html | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | <h2>Research</h2> | ||
| 2 | <ul class="article-list"> | ||
| 3 | {{ range .Site.Pages.Children "research/" }} | ||
| 4 | <li> | ||
| 5 | {{ template "date" .Date }} | ||
| 6 | <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a> | ||
| 7 | </li> | ||
| 8 | {{ end }} | ||
| 9 | </ul> | ||
| 10 | |||
| 11 | <h2>Blog posts</h2> | ||
| 12 | <ul class="article-list"> | ||
| 13 | {{ range .Site.Pages.Children "blog/" }} | ||
| 14 | <li> | ||
| 15 | {{ template "date" .Date }} | ||
| 16 | <a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a> | ||
| 17 | </li> | ||
| 18 | {{ end }} | ||
| 19 | </ul> | ||
