diff options
Diffstat (limited to 'templates/partials')
| -rw-r--r-- | templates/partials/footer.html | 4 | ||||
| -rw-r--r-- | templates/partials/header.html | 5 | ||||
| -rw-r--r-- | templates/partials/nav.html | 5 |
3 files changed, 13 insertions, 1 deletions
diff --git a/templates/partials/footer.html b/templates/partials/footer.html index 472d9ea..b9db931 100644 --- a/templates/partials/footer.html +++ b/templates/partials/footer.html @@ -1,4 +1,6 @@ <footer> <hr class="divider" style="border-top: 2px solid #bbb;"> -<p>Code under AGPL, content under CC by SA.</p> +<p>Code under AGPL, content under CC by SA. <br> +Last updated on <time>%T</time></p> + </footer> diff --git a/templates/partials/header.html b/templates/partials/header.html index 3400a2b..8f49975 100644 --- a/templates/partials/header.html +++ b/templates/partials/header.html @@ -1,5 +1,6 @@ <header> +<div id="left-header"> <!-- if "title" is set in config.toml, display site name --> {% if config.title %} <div class="header-item"> @@ -12,5 +13,9 @@ {% include "partials/nav.html" %} </nav> +<div id="right-header"> + <div id="image-gradient"> + </div> +</div> </header> diff --git a/templates/partials/nav.html b/templates/partials/nav.html index f1f7d9b..b9c4cd7 100644 --- a/templates/partials/nav.html +++ b/templates/partials/nav.html @@ -2,6 +2,11 @@ {% for item in config.extra.navbar_items %} <nav class="header-item"> <a class="nav-item" href="{{ get_url(path=item.url) }}">{{ item.name }}</a> + + <span style="color: white">{{ item.divider }}</span> </nav> + {% endfor %} {% endif %} + +</div> |
