commit d44d94460253ddd7e4c275247f284f49802cf82f
parent 6818536717d553c1902274a59a8b7681a69db076
Author: Hugo Soucy <hugo.soucy@savoirfairelinux.com>
Date: Tue, 16 Jan 2018 13:54:58 -0500
Add the content to the ewntries
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/templates/feed.mustache b/templates/feed.mustache
@@ -4,20 +4,23 @@
<subtitle>{{{ SITE.METAS.DESCRIPTION }}}</subtitle>
<id>tag:hugo.soucy.cc,2014-02-19:hs0ucy</id>
<link href="{{{ SITE.URL }}}/feed.atom.xml" rel="self" type="application/atom+xml"/>
- <link href="{{{ SITE.URL }}}" rel="alternate" />
+ <link href="{{{ SITE.URL }}}" rel="alternate" />
<updated>{{{ lastupdate }}}Z</updated>
<author>
<name>{{{ SITE.AUTHOR.NAME }}}</name>
<email>{{{ SITE.AUTHOR.EMAIL }}}</email>
<uri>{{{ SITE.AUTHOR.URI }}}</uri>
</author>
-
+
{{# entries }}
<entry>
<title>{{{ title }}}</title>
<id>{{{ id }}}</id>
<link href="{{{ permalink }}}" hreflang="{{{ SITE.LANGUAGE }}}" rel="alternate" />
<updated>{{ updated }}Z</updated>
- </entry>
+ <content type="html" xml:base="{{{ permalink }}}">
+ {{ content }}
+ </content>
+ </entry>
{{/ entries }}
</feed>