diff options
author | François Kooman <fkooman@tuxed.net> | 2017-02-08 23:17:07 +0100 |
---|---|---|
committer | François Kooman <fkooman@tuxed.net> | 2017-02-08 23:17:07 +0100 |
commit | 18aad3f91e69d4760154181a5a48eac91b0c7c83 (patch) | |
tree | 91df1bf54edefa2767268bb64611063e9dee0a6e /views | |
parent | 2319aabd5e8ed1cb6f26f66743f078e0d2c29bd5 (diff) | |
download | www.tuxed.net-18aad3f91e69d4760154181a5a48eac91b0c7c83.zip www.tuxed.net-18aad3f91e69d4760154181a5a48eac91b0c7c83.tar.gz www.tuxed.net-18aad3f91e69d4760154181a5a48eac91b0c7c83.tar.xz |
update site
Diffstat (limited to 'views')
-rw-r--r-- | views/header.twig | 12 | ||||
-rw-r--r-- | views/page.twig | 3 | ||||
-rw-r--r-- | views/post.twig | 3 |
3 files changed, 7 insertions, 11 deletions
diff --git a/views/header.twig b/views/header.twig index a44056e..fbcbbf7 100644 --- a/views/header.twig +++ b/views/header.twig @@ -9,13 +9,10 @@ </head> <body> -<h1>{{ blogTitle|e }}</h1> +<div class="header"> + <h1>{{ blogTitle|e }}</h1> -<p> - <em>{{ blogDescription|e }}</em> -</p> - -<ul class="pages"> + <ul class="pages"> {% if 'index.html' == activePage %} <li class="active"><a href="{{ toRoot }}index.html">Blog</a></li> {% else %} @@ -29,4 +26,5 @@ <li><a href="{{ toRoot }}{{ p.fileName }}">{{ p.title }}</a></li> {% endif %} {% endfor %} -</ul> + </ul> +</div> diff --git a/views/page.twig b/views/page.twig index bdba2f2..f2f9518 100644 --- a/views/page.twig +++ b/views/page.twig @@ -6,8 +6,7 @@ {{ pageContent.htmlContent|raw }} + <p class="center"><small><a href="{{ toRoot}}index.html">Return to Index</a></small></p> </div> <!-- /content --> -<p><small><a href="{{ toRoot }}index.html">Return to Index</a></small></p> - {% include 'footer.twig' %} diff --git a/views/post.twig b/views/post.twig index 3cb0ef5..0a92af3 100644 --- a/views/post.twig +++ b/views/post.twig @@ -20,8 +20,7 @@ </p> {% endif %} + <p class="center"><small><a href="{{ toRoot}}index.html">Return to Index</a></small></p> </div> <!-- /content --> -<p><small><a href="{{ toRoot}}index.html">Return to Index</a></small></p> - {% include 'footer.twig' %} |