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; + } +}