diff options
author | HombreLaser <buran@silosneeded.com> | 2024-07-13 12:55:43 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-07-13 12:55:43 -0600 |
commit | 7c3e5b3c0eaa4e22ba7e6ddaa7a58675aacfa993 (patch) | |
tree | 1ce5523849dc5b719fad0d5010f8cc4653d41235 /_includes | |
parent | 3236babeee45ac203090732b247408b5c66cc82c (diff) |
Add footer, improve page style
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/banner.liquid | 4 | ||||
-rw-r--r-- | _includes/footer.liquid | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/_includes/banner.liquid b/_includes/banner.liquid index ccaea99..64a5346 100644 --- a/_includes/banner.liquid +++ b/_includes/banner.liquid @@ -1,9 +1,9 @@ <section class="hero is-small third-color"> - <div class="hero-body banner"> + <div class="hero-body has-background-primary"> {% if site.lang != "es" %} <a class="title banner" href="/{{ site.lang }}">{{ site.title }}</a> {% else %} <a class="title banner" href="/">{{ site.title }}</a> {% endif %} - </div> + </div> </section> diff --git a/_includes/footer.liquid b/_includes/footer.liquid new file mode 100644 index 0000000..6eae99f --- /dev/null +++ b/_includes/footer.liquid @@ -0,0 +1,8 @@ +<footer class="footer has-background-primary"> + <div class="has-text-centered"> + <p class="footer-content"> + <b>{{ site.title }}</b> {{ site.data[site.active_lang].strings.global.under }} + <a class="footer-url" href="https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en">CC BY-NC-ND</a> + </p> + </div> +</footer> |