diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/templates/entry.html | 2 | ||||
-rw-r--r-- | src/templates/journal.html | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -12,7 +12,7 @@ build/%/: mkdir $@ clean: - -rm -r $(addprefix build/, $(FILES)) build/journal.xml build/journal build/resources + -rm -r $(addprefix build/, $(FILES)) build/journal.atom build/journal build/resources build/index.html: src/index.rst $(TEMPLATES) @./scripts/bupa index.html diff --git a/src/templates/entry.html b/src/templates/entry.html index 9cd4f78..50454eb 100644 --- a/src/templates/entry.html +++ b/src/templates/entry.html @@ -2,7 +2,7 @@ {% block head %} <link href="isso.css" rel="stylesheet"> - <link href="../journal.xml" type="application/atom+xml" rel="alternate" title="kyrias’ journal atom feed" /> + <link href="../journal.atom" type="application/atom+xml" rel="alternate" title="kyrias’ journal atom feed" /> {% if page.meta_desc is defined %} <meta name="description" content="{{ page.meta_desc }}"> {% endif %} diff --git a/src/templates/journal.html b/src/templates/journal.html index 5adbd38..d7a64d2 100644 --- a/src/templates/journal.html +++ b/src/templates/journal.html @@ -1,7 +1,7 @@ {% extends 'layout.html' %} {% block head %} - <link href="journal.xml" type="application/atom+xml" rel="alternate" title="kyrias’ journal atom feed" /> + <link href="journal.atom" type="application/atom+xml" rel="alternate" title="kyrias’ journal atom feed" /> {% endblock head %} {% block content %} |