diff options
Diffstat (limited to 'libpathod')
-rw-r--r-- | libpathod/static/pathod.css | 6 | ||||
-rw-r--r-- | libpathod/templates/layout.html | 6 | ||||
-rw-r--r-- | libpathod/version.py | 2 |
3 files changed, 10 insertions, 4 deletions
diff --git a/libpathod/static/pathod.css b/libpathod/static/pathod.css index d5ea150b..8b23b4d5 100644 --- a/libpathod/static/pathod.css +++ b/libpathod/static/pathod.css @@ -48,3 +48,9 @@ section { .header { font-size: 1.5em; } + +.page-header { + margin-top: 10px; + + +} diff --git a/libpathod/templates/layout.html b/libpathod/templates/layout.html index 3c0c477b..5278e5aa 100644 --- a/libpathod/templates/layout.html +++ b/libpathod/templates/layout.html @@ -51,11 +51,11 @@ </div> <div class="container"> - {% block content %} - {% endblock %} + {% block content %} + {% endblock %} <hr> <footer> - <span>© Aldo Cortesi 2012</span> + <span>© Aldo Cortesi 2015</span> <span class="pull-right">[served with pathod]</span> </footer> </div> diff --git a/libpathod/version.py b/libpathod/version.py index 5f7675e2..82ab72f7 100644 --- a/libpathod/version.py +++ b/libpathod/version.py @@ -1,4 +1,4 @@ -IVERSION = (0, 11, 1) +IVERSION = (0, 12, 0) VERSION = ".".join(str(i) for i in IVERSION) MINORVERSION = ".".join(str(i) for i in IVERSION[:2]) NAME = "pathod" |