diff options
author | Alexis Métaireau <alexis@notmyidea.org> | 2012-10-24 18:45:43 +0200 |
---|---|---|
committer | Alexis Métaireau <alexis@notmyidea.org> | 2012-10-24 18:45:43 +0200 |
commit | bb63360655369d98029fb26b6c39e67f8d47ce15 (patch) | |
tree | 74663b2228d803baba6b3c371337e0cb891035dc /bootlex | |
parent | 320fc05064b532b0cd0ec383aae5ff3d48ec71f9 (diff) | |
download | pelican-themes-bb63360655369d98029fb26b6c39e67f8d47ce15.tar.gz |
Add the feeds into the bootlex theme
Diffstat (limited to 'bootlex')
-rw-r--r-- | bootlex/templates/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bootlex/templates/base.html b/bootlex/templates/base.html index 3aaffa6..481fb28 100644 --- a/bootlex/templates/base.html +++ b/bootlex/templates/base.html @@ -7,6 +7,10 @@ <link href="http://fonts.googleapis.com/css?family=Arimo:400,700|Inika" rel="stylesheet" type="text/css" /> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/bootstrap.css" /> <link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/pastie.css" /> + <link href="{{ FEED_DOMAIN }}/{{ FEED_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" /> + {% if FEED_RSS %} + <link href="{{ FEED_DOMAIN }}/{{ FEED_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" /> + {% endif %} {% endblock head %} {% include 'analytics.html' %} |