From 99283e731ab369ac0baa41e841dac3e48737a8ce Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 13 Sep 2024 19:32:17 -0700 Subject: [PATCH] fix: footer update note wrapping + indentation --- package-lock.json | 16 ++++++++-------- package.json | 2 +- src/includes/main.liquid | 6 ++++-- src/includes/partials/header.liquid | 4 ++-- src/includes/partials/home/posts.liquid | 22 +++++++++++----------- 5 files changed, 26 insertions(+), 24 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8a653adf..c34aacdc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.8.2", + "version": "24.8.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.8.2", + "version": "24.8.3", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", @@ -684,9 +684,9 @@ "peer": true }, "node_modules/@types/node": { - "version": "22.5.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.4.tgz", - "integrity": "sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==", + "version": "22.5.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.5.tgz", + "integrity": "sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==", "dev": true, "license": "MIT", "dependencies": { @@ -1743,9 +1743,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.21", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.21.tgz", - "integrity": "sha512-+rBAerCpQvFSPyAO677i5gJuWGO2WFsoujENdcMzsrpP7Ebcc3pmpERgU8CV4fFF10a5haP4ivnFQ/AmLICBVg==", + "version": "1.5.23", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.23.tgz", + "integrity": "sha512-mBhODedOXg4v5QWwl21DjM5amzjmI1zw9EPrPK/5Wx7C8jt33bpZNrC7OhHUG3pxRtbLpr3W2dXT+Ph1SsfRZA==", "dev": true, "license": "ISC" }, diff --git a/package.json b/package.json index 7c2786a9..b83b7175 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.8.2", + "version": "24.8.3", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/includes/main.liquid b/src/includes/main.liquid index ae4f62be..472cffe2 100644 --- a/src/includes/main.liquid +++ b/src/includes/main.liquid @@ -9,6 +9,8 @@ layout: base {%- endif -%} {%- endcapture -%}
-
{{ content }}
- {% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %} +
+ {{ content }} + {% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %} +
\ No newline at end of file diff --git a/src/includes/partials/header.liquid b/src/includes/partials/header.liquid index e75c7343..32399376 100644 --- a/src/includes/partials/header.liquid +++ b/src/includes/partials/header.liquid @@ -1,9 +1,9 @@

{%- if page.url != '/' -%} - {{ globals.site_name }} + {{ globals.site_name }} {%- else -%} - {{ globals.site_name }} + {{ globals.site_name }} {%- endif -%}

{% render "partials/nav/menu.liquid", page:page, nav:nav %} diff --git a/src/includes/partials/home/posts.liquid b/src/includes/partials/home/posts.liquid index 780aa374..c1918036 100644 --- a/src/includes/partials/home/posts.liquid +++ b/src/includes/partials/home/posts.liquid @@ -7,17 +7,17 @@ {%- for post in posts -%} -
- - -

{{ post.title }}

-
- - - {{ post.description | normalize_whitespace | markdown | truncatewords: 50 }} -
+
+ + +

{{ post.title }}

+
+ + + {{ post.description | normalize_whitespace | markdown | truncatewords: 50 }} +
{%- endfor -%} {%- if postType != 'featured' -%} View all posts {% tablericon "arrow-right" "View all posts" %}