From 28dd784a088a35739cdfdc4ce79f8ee6d50bf816 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Tue, 22 Oct 2019 03:40:14 +0200 Subject: Cleanup of repo and move to gostatic --- src/feed.atom | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/feed.atom (limited to 'src/feed.atom') diff --git a/src/feed.atom b/src/feed.atom new file mode 100644 index 0000000..9dc15ae --- /dev/null +++ b/src/feed.atom @@ -0,0 +1,55 @@ + + + {{ .Site.Other.Url }} + {{ .Site.Other.Title }} + {{ with .Site.Pages.Children "blog/" }} + {{ .First.Date.Format "2006-01-02T15:04:05Z07:00" }} + {{ end }} + {{ .Site.Other.Author }} + + gostatic + +{{ with .Site.Pages.Children "blog/" }} +{{ range .Slice 0 5 }} + + {{ .Url }} + {{ or .Other.Author .Site.Other.Author }} + {{ html .Title }} + {{ .Date.Format "2006-01-02T15:04:05Z07:00" }} + {{ range .Tags }} + + {{ end }} + + + {{/* .Process runs here in case only feed changed */}} + {{ with cut "
" "
" .Process.Content }} + {{ html . }} + {{ end }} +
+
+{{ end }} +{{ end }} + +{{ with .Site.Pages.Children "research/" }} +{{ range .Slice 0 5 }} + + {{ .Url }} + {{ or .Other.Author .Site.Other.Author }} + {{ html .Title }} + {{ .Date.Format "2006-01-02T15:04:05Z07:00" }} + {{ range .Tags }} + + {{ end }} + + + {{/* .Process runs here in case only feed changed */}} + {{ with cut "
" "
" .Process.Content }} + {{ html . }} + {{ end }} +
+
+{{ end }} +{{ end }} + + +
-- cgit v1.2.3