diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-02-08 11:31:25 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-02-08 11:31:25 +0100 |
commit | 58fecb83da4bf3a0a9a962c4f677005c30b09452 (patch) | |
tree | d8e8b9a20a5d28134cc92a1e571e6e34da36df62 /templates/partials/shared | |
parent | dccdd30e7429831450b286c0c4dd065bf1d5b385 (diff) | |
download | garagehq.deuxfleurs.fr-58fecb83da4bf3a0a9a962c4f677005c30b09452.tar.gz garagehq.deuxfleurs.fr-58fecb83da4bf3a0a9a962c4f677005c30b09452.zip |
Fix bogus HTMLfixfixfix
Diffstat (limited to 'templates/partials/shared')
-rw-r--r-- | templates/partials/shared/footer.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/partials/shared/footer.html b/templates/partials/shared/footer.html index 469ef3a..c6a9bbc 100644 --- a/templates/partials/shared/footer.html +++ b/templates/partials/shared/footer.html @@ -1,12 +1,11 @@ <footer class="py-4 bg-garage-orange bg-opacity-20"> <div class="content has-text-centered flex flex-col items-center justify-center"> - <p> - {{ macros:: social_links( social_config=config.extra.social) }} - </p> + {{ macros:: social_links( social_config=config.extra.social) }} + <p class="tracking-tighter md:tracking-normal text-sm md:text-base text-gray-600 px-8 md:px-0 py-2"> Built with <a href="https://www.getzola.org" target="_blank" class="font-semibold hover:text-garage-orange">Zola</a>, powered by <a href="{{config.base_url}}" class="font-semibold hover:text-garage-orange">Garage</a>, hosted by <a href="https://deuxfleurs.fr" target="_blank" class="font-semibold hover:text-garage-orange">Deuxfleurs</a> </p> </div> -</footer>
\ No newline at end of file +</footer> |