diff --git a/.eleventy.js b/.eleventy.js
index dcfb05c..0e25f89 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -25,7 +25,10 @@ export default function (eleventyConfig) {
// Filters
eleventyConfig.addFilter("formatDate", (dateObj) => {
- return DateTime.fromJSDate(dateObj).toFormat("dd LLL yyyy, HH:mm ZZZZ");
+ return DateTime.fromJSDate(dateObj).toFormat("yyyy-MM-dd");
+ });
+ eleventyConfig.addFilter("formatDateRel", (dateObj) => {
+ return DateTime.fromJSDate(dateObj).toRelative();
});
eleventyConfig.addFilter("mdinline", (content) => {
return md.renderInline(content);
diff --git a/scss/pages/_about.scss b/scss/pages/_about.scss
index 6cfefe6..577892f 100644
--- a/scss/pages/_about.scss
+++ b/scss/pages/_about.scss
@@ -52,17 +52,6 @@
". bio" auto
/ auto 1fr;
- .idcard__picture {
- padding: 50px;
- background: url("../img/about-profile.png");
- background-size: cover;
- background-position: center;
-
- @include media.breakpoint(small) {
- padding: 75px;
- }
- }
-
.idcard__bio {
grid-area: bio;
display: grid;
diff --git a/src/_layouts/about.njk b/src/_layouts/about.njk
index dd3e28d..f213aca 100644
--- a/src/_layouts/about.njk
+++ b/src/_layouts/about.njk
@@ -6,7 +6,9 @@ layout: base.njk