Compare commits

...

2 Commits

Author SHA1 Message Date
Marcus Noble 3bf8fc61c5 Added gitinfo url 2020-09-13 20:39:41 +01:00
Marcus Noble 5067cd1fc3 Include tags in RSS feed 2020-09-13 20:34:27 +01:00
2 changed files with 9 additions and 0 deletions

View File

@ -6,3 +6,7 @@ enableGitInfo = true
[permalinks]
posts = "/:title/"
[params]
gitUrl = "https://git.cluster.fun/AverageMarcus/til/commit/"

View File

@ -21,6 +21,11 @@
<guid>{{ .Permalink }}</guid>
<description>{{ .Summary | html }}</description>
<content type="html">{{ printf `<![CDATA[%s]]>` .Content | safeHTML }}</content>
<tags>
{{ range .Param "tags" -}}
<tag>{{ . }}</tag>
{{ end -}}
</tags>
</item>
{{ end }}
</channel>