diff options
author | Kenton Hamaluik <kenton@hamaluik.com> | 2014-01-26 20:56:55 -0700 |
---|---|---|
committer | Kenton Hamaluik <kenton@hamaluik.com> | 2014-01-26 20:56:55 -0700 |
commit | 488efa23deb42f7425378595cc5af03f58803fa3 (patch) | |
tree | b824f8c9a790e8128c2edaa11dd8ac0d9e24cd14 | |
parent | 3923cd0725ff9257da226dbeca74d36422d34fb5 (diff) | |
download | pelican-themes-488efa23deb42f7425378595cc5af03f58803fa3.tar.gz |
Added horizontal rule for all pages above the footer
-rw-r--r-- | foundation-default-colours/templates/base.html | 1 | ||||
-rw-r--r-- | foundation-default-colours/templates/index.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/foundation-default-colours/templates/base.html b/foundation-default-colours/templates/base.html index 69ad3a3..9d0ff88 100644 --- a/foundation-default-colours/templates/base.html +++ b/foundation-default-colours/templates/base.html @@ -180,6 +180,7 @@ <!-- Footer --> <footer class="row"> <div class="medium-9 small-12"> + <hr/> {% if not FOUNDATION_FOOTER_TEXT %} {% set FOUNDATION_FOOTER_TEXT = 'Powered by <a href="http://getpelican.com">Pelican</a> and <a href="http://foundation.zurb.com/">Zurb Foundation</a>. Theme by <a href="http://hamaluik.com">Kenton Hamaluik</a>.' %} {% endif %} diff --git a/foundation-default-colours/templates/index.html b/foundation-default-colours/templates/index.html index 7c8a6ad..4b85e2d 100644 --- a/foundation-default-colours/templates/index.html +++ b/foundation-default-colours/templates/index.html @@ -19,7 +19,7 @@ {# deal with pagination #} {% if articles_page and articles_paginator.num_pages > 1 %} -<div class="row"> +<div class="row" style="margin-bottom: -1.25em;"> <div class="small-12 columns text-center"> <div class="pagination-centered"> <ul class="pagination"> |