diff --git a/src/static/bootstrap/icons-1.5.0.zip b/src/static/bootstrap/icons-1.5.0.zip new file mode 100644 index 0000000..3923813 Binary files /dev/null and b/src/static/bootstrap/icons-1.5.0.zip differ diff --git a/src/static/img/github.svg b/src/static/img/github.svg new file mode 100644 index 0000000..cf5dba9 --- /dev/null +++ b/src/static/img/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/static/main.scss b/src/static/main.scss index 5ff2859..b6bcd4b 100644 --- a/src/static/main.scss +++ b/src/static/main.scss @@ -97,3 +97,4 @@ $font-family-base: 'Poppins', sans-serif; @import './bootstrap/scss/bootstrap.scss'; @import './scss/_home.scss'; +@import './scss/_footer.scss'; diff --git a/src/static/scss/_footer.scss b/src/static/scss/_footer.scss new file mode 100644 index 0000000..cf51f4b --- /dev/null +++ b/src/static/scss/_footer.scss @@ -0,0 +1,18 @@ +#footer { + ul { + margin: 0; + } + a { + text-decoration: none; + color: white; + letter-spacing: 0.75px; + } + + .github { + color: black; + } + + a:hover{ + opacity: 0.8; + } +} diff --git a/src/templates/base.html b/src/templates/base.html index 8c0e1c8..f307ab8 100644 --- a/src/templates/base.html +++ b/src/templates/base.html @@ -31,9 +31,10 @@ {% block header %} {% endblock %} {% block content %} CONTENT {% endblock %} {% block after_content %}{% endblock %} +{% block footer %} {% endblock footer %} {% block extra_script %}{% endblock %} - \ No newline at end of file + diff --git a/src/templates/components/footer/_links.html b/src/templates/components/footer/_links.html new file mode 100644 index 0000000..0b60a76 --- /dev/null +++ b/src/templates/components/footer/_links.html @@ -0,0 +1,20 @@ + + + {% include "./github-logo.html" %} + + + diff --git a/src/templates/components/footer/footer.html b/src/templates/components/footer/footer.html new file mode 100644 index 0000000..7a617f4 --- /dev/null +++ b/src/templates/components/footer/footer.html @@ -0,0 +1,5 @@ + diff --git a/src/templates/components/footer/github-logo.html b/src/templates/components/footer/github-logo.html new file mode 100644 index 0000000..9d34a58 --- /dev/null +++ b/src/templates/components/footer/github-logo.html @@ -0,0 +1,4 @@ + + + + diff --git a/src/templates/home.html b/src/templates/home.html index da1c9c8..4483b2d 100644 --- a/src/templates/home.html +++ b/src/templates/home.html @@ -13,3 +13,7 @@ {% endblock content %} +{% block footer %} + {% include "components/footer/footer.html" %} +{% endblock footer %} +