diff --git a/assets/style/style.css b/assets/style/style.css index 6466acc..d8dceaa 100644 --- a/assets/style/style.css +++ b/assets/style/style.css @@ -79,6 +79,27 @@ body { margin-top: 30px; } +.footer-link-items { + display: flex; + gap: 15px; +} + +footer { + display: flex; + gap: 10px; + flex-direction: column; + align-items: center; + justify-content: center; + background-color: var(--waveBlue1); + height: 100px; + margin-top: auto; + width: 100vw; +} + +footer a, footer a:visited { + color: var(--crystalBlue); +} + nav { display: flex; flex-direction: row; diff --git a/assets/templates/article.html b/assets/templates/article.html index d79c4e9..a3bf6e0 100644 --- a/assets/templates/article.html +++ b/assets/templates/article.html @@ -28,5 +28,6 @@
{{ article_content }} + {% include "footer.html" %} diff --git a/assets/templates/articles.html b/assets/templates/articles.html index ee11ab6..69e63ec 100644 --- a/assets/templates/articles.html +++ b/assets/templates/articles.html @@ -25,5 +25,6 @@ {% endfor %} + {% include "footer.html" %} diff --git a/assets/templates/footer.html b/assets/templates/footer.html index e69de29..ba856dd 100644 --- a/assets/templates/footer.html +++ b/assets/templates/footer.html @@ -0,0 +1,7 @@ + diff --git a/assets/templates/tag-articles.html b/assets/templates/tag-articles.html index 7fa83c0..16c2b3f 100644 --- a/assets/templates/tag-articles.html +++ b/assets/templates/tag-articles.html @@ -26,5 +26,6 @@ {% endfor %} + {% include "footer.html" %} diff --git a/assets/templates/tags.html b/assets/templates/tags.html index 0be87c5..ae795f1 100644 --- a/assets/templates/tags.html +++ b/assets/templates/tags.html @@ -17,5 +17,6 @@ {% endfor -%} + {% include "footer.html" %}