Browse Source

Adds footer to the template

Talha Mansoor 12 years ago
parent
commit
4f5134d5b0
2 changed files with 12 additions and 0 deletions
  1. 1 0
      templates/base.html
  2. 11 0
      templates/footer.html

+ 1 - 0
templates/base.html

@@ -48,6 +48,7 @@
                 <div class="span1"></div>
             </div>
         </div>
+        {% include 'footer.html' %}
         {% block script %}
         {% include 'analytics.html' %}
         <script src="http://code.jquery.com/jquery.js"></script>

+ 11 - 0
templates/footer.html

@@ -0,0 +1,11 @@
+<footer>
+<div>
+    <ul class="articles_timeline">
+        {% if ELEGANT_LICENSE %}
+        <li class="previous_article">{{ ELEGANT_LICENSE }}</li>
+        {% endif %}
+        <li class="next_article">Powered by <a href="http://getpelican.com/" title="Pelican Home Page">Pelican</a> and <a href="https://github.com/talha131/pelican-elegant" title="Elegant theme Home Page">Elegant theme</a> by <a href="http://oncrashreboot.com" title="Talha Mansoor Home Page">Talha Mansoor</a></li>
+    </ul>
+
+</div>
+</footer>