diff options
author | Justin Mayer <entroP@gmail.com> | 2013-04-29 20:23:46 -0700 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2013-04-29 20:23:46 -0700 |
commit | 94c5db216f7d0d7494f61d612e8715da99d9cda4 (patch) | |
tree | b4e53dded551f8569efc592d5f616a5501e56bbc | |
parent | 941d2e7c271cbff9e088497c23d9b28729e4e88a (diff) | |
download | pelican-themes-94c5db216f7d0d7494f61d612e8715da99d9cda4.tar.gz |
Add feeds & other fixes to Bootstrap base.html
-rw-r--r-- | bootstrap/templates/base.html | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/bootstrap/templates/base.html b/bootstrap/templates/base.html index 49fbd7d..45ddcdc 100644 --- a/bootstrap/templates/base.html +++ b/bootstrap/templates/base.html @@ -6,15 +6,24 @@ <meta name="description" content=""> <meta name="author" content="{{ AUTHOR }}"> - <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> + <!-- HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <script src="{{ SITEURL }}/theme/html5.js"></script> <![endif]--> - <!-- Le styles --> + <!-- Styles --> <link href="{{ SITEURL }}/theme/bootstrap.min.css" rel="stylesheet"> <link href="{{ SITEURL }}/theme/local.css" rel="stylesheet"> <link href="{{ SITEURL }}/theme/pygments.css" rel="stylesheet"> + + <!-- Feeds --> + {% if FEED_ALL_ATOM %} + <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Atom Feed" /> + {% endif %} + {% if FEED_ALL_RSS %} + <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" /> + {% endif %} + {% include "analytics.html" %} {% include "disqus.html" %} </head> @@ -24,7 +33,7 @@ <div class="topbar"> <div class="topbar-inner"> <div class="container-fluid"> - <a class="brand" href="{{ SITEURL }}/index.html">{{ SITENAME }}</a> + <a class="brand" href="{{ SITEURL }}/">{{ SITENAME }}</a> <ul class="nav"> {% for title, link in MENUITEMS %} <li><a href="{{ link }}">{{ title }}</a></li> @@ -66,8 +75,8 @@ {% block indextitle %}<div class="page-header"><h1>{% block title %} {{ self.windowtitle() }} {% endblock %}</h1></div>{% endblock %} {% block content %}{% endblock %} <footer> - <p> Powered by <a href="http://alexis.notmyidea.org/pelican/">Pelican</a>, theme based on <a href="http://twitter.github.com/bootstrap/">Bootstrap, from Twitter</a>.</p> - <p>© {{ AUTHOR }} 2011</p> + <p>Powered by <a href="http://getpelican.com/">Pelican</a>. Theme based on <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap</a>.</p> + <p>© {{ AUTHOR }}</p> </footer> </div> |