summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2016-03-08 17:04:06 +1100
committerCorey Richardson <corey@octayn.net>2016-03-08 17:04:17 +1100
commitd012fc1a623610445e6c81c51ecf5e4a8ecfd9f8 (patch)
tree05d2f779c8514cadbfa09d1cb8e4698ec7165003 /themes
parent208f95fe937000feb0d1d81cef1852a74f8d49be (diff)
Experiment: flip the order of RSS and Atom feeds to see if that causes more readers to use RSS
Diffstat (limited to 'themes')
-rw-r--r--themes/rusted/templates/base.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/rusted/templates/base.html b/themes/rusted/templates/base.html
index 34bb744..7ae5035 100644
--- a/themes/rusted/templates/base.html
+++ b/themes/rusted/templates/base.html
@@ -28,8 +28,8 @@
{% block head_links %}
{% endblock head_links %}
- <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME|striptags }} - Full Atom Feed" />
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME|striptags }} - Full RSS Feed" />
+ <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME|striptags }} - Full Atom Feed" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
{% assets filters="scss,cssmin", output="css/web-min.css", "css/main.scss" %}