diff options
author | EuAndreh <eu@euandre.org> | 2020-01-26 20:41:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-01-26 20:41:45 -0300 |
commit | b9bb99e5f60700daac3d55a79615643ed20fff3d (patch) | |
tree | cdaafdba46a46972784a65f2880dd367762651e1 /hakyll | |
parent | Use mailto: in public-inbox link in about page (diff) | |
download | euandre.org-b9bb99e5f60700daac3d55a79615643ed20fff3d.tar.gz euandre.org-b9bb99e5f60700daac3d55a79615643ed20fff3d.tar.xz |
Use feed.atom extension so nginx uses the right Content-Type
Diffstat (limited to 'hakyll')
-rw-r--r-- | hakyll/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hakyll/Main.hs b/hakyll/Main.hs index c3765db..f2ed24e 100644 --- a/hakyll/Main.hs +++ b/hakyll/Main.hs @@ -76,7 +76,7 @@ main = hakyll $ do >>= loadAndApplyTemplate "templates/default.html" indexCtx >>= relativizeUrls - create ["atom.xml", "feed.xml"] $ do + create ["atom.xml", "feed.xml", "feed.atom"] $ do route idRoute compile $ do loadAllSnapshots "posts/*" "content" |