From b76a08af8e1218a386fa65d3aaf5826a4ffcaeca Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Mon, 25 Nov 2024 16:32:27 +0000 Subject: [PATCH] Update footer --- _includes/layouts/base.njk | 29 ++++++++++++++++++++---- content/img/feed/rss-white.svg | 27 ++++++++++++++++++++++ content/img/feed/rss.svg | 27 ++++++++++++++++++++++ content/img/github/github-mark-white.svg | 1 + content/img/github/github-mark.svg | 1 + content/img/linkedin/linkedin-white.svg | 1 + content/img/linkedin/linkedin.svg | 1 + eleventy.config.js | 3 ++- public/css/index.css | 12 ++++++++++ 9 files changed, 97 insertions(+), 5 deletions(-) create mode 100644 content/img/feed/rss-white.svg create mode 100644 content/img/feed/rss.svg create mode 100644 content/img/github/github-mark-white.svg create mode 100644 content/img/github/github-mark.svg create mode 100644 content/img/linkedin/linkedin-white.svg create mode 100644 content/img/linkedin/linkedin.svg diff --git a/_includes/layouts/base.njk b/_includes/layouts/base.njk index b2a1a23..bdda83b 100644 --- a/_includes/layouts/base.njk +++ b/_includes/layouts/base.njk @@ -71,12 +71,33 @@ + - \ No newline at end of file + diff --git a/content/img/feed/rss-white.svg b/content/img/feed/rss-white.svg new file mode 100644 index 0000000..af83c12 --- /dev/null +++ b/content/img/feed/rss-white.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/content/img/feed/rss.svg b/content/img/feed/rss.svg new file mode 100644 index 0000000..8875325 --- /dev/null +++ b/content/img/feed/rss.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/content/img/github/github-mark-white.svg b/content/img/github/github-mark-white.svg new file mode 100644 index 0000000..d5e6491 --- /dev/null +++ b/content/img/github/github-mark-white.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/content/img/github/github-mark.svg b/content/img/github/github-mark.svg new file mode 100644 index 0000000..37fa923 --- /dev/null +++ b/content/img/github/github-mark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/content/img/linkedin/linkedin-white.svg b/content/img/linkedin/linkedin-white.svg new file mode 100644 index 0000000..e913d6f --- /dev/null +++ b/content/img/linkedin/linkedin-white.svg @@ -0,0 +1 @@ + diff --git a/content/img/linkedin/linkedin.svg b/content/img/linkedin/linkedin.svg new file mode 100644 index 0000000..c663429 --- /dev/null +++ b/content/img/linkedin/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/eleventy.config.js b/eleventy.config.js index 3a9f8c8..89b4417 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -25,7 +25,8 @@ export default async function (eleventyConfig) { .addPassthroughCopy({ './public/': '/' }) - .addPassthroughCopy('./content/blog/**/images/*'); + .addPassthroughCopy('./content/blog/**/images/*') + .addPassthroughCopy("./content/img/**/*"); // Run Eleventy when these files change: // https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets diff --git a/public/css/index.css b/public/css/index.css index 046ebf5..1a0cc6e 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -312,3 +312,15 @@ img[height] { img[width][height] { height: auto; } + +.footer-links { + display: flex; + justify-content: center; + margin-top: 1rem; + height: 2rem; + column-gap: 1rem; + + img { + height: 2rem; + } +}