fix: timestamp for programmatically updated + now pages

This commit is contained in:
Cory Dransfeldt 2024-07-15 15:46:52 -07:00
parent b50a4670d2
commit 16eb58fe0f
No known key found for this signature in database
4 changed files with 15 additions and 8 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.7.0", "version": "20.7.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.7.0", "version": "20.7.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",
@ -1176,9 +1176,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/electron-to-chromium": { "node_modules/electron-to-chromium": {
"version": "1.4.827", "version": "1.4.828",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.827.tgz", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.828.tgz",
"integrity": "sha512-VY+J0e4SFcNfQy19MEoMdaIcZLmDCprqvBtkii1WTCTQHpRvf5N8+3kTYCgL/PcntvwQvmMJWTuDPsq+IlhWKQ==", "integrity": "sha512-QOIJiWpQJDHAVO4P58pwb133Cwee0nbvy/MV1CwzZVGpkH1RX33N3vsaWRCpR6bF63AAq366neZrRTu7Qlsbbw==",
"dev": true, "dev": true,
"license": "ISC" "license": "ISC"
}, },

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "20.7.0", "version": "20.7.1",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,7 +1,14 @@
--- ---
layout: base layout: base
--- ---
{%- capture updateTime -%}
{% if updated == "now" %}
{{ 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{% elsif page.updated %}
{{ page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{% endif %}
{%- endcapture -%}
<div class="main-wrapper"> <div class="main-wrapper">
<main>{{ content }}</main> <main>{{ content }}</main>
{% render "partials/footer.liquid", page:page, nav:nav, updated:page.updated %} {% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %}
</div> </div>

View file

@ -1,6 +1,6 @@
<footer{% unless updated %} style="margin-top:var(--sizing-3xl)"{% endunless %}> <footer{% unless updated %} style="margin-top:var(--sizing-3xl)"{% endunless %}>
{% if updated %} {% if updated %}
<p class="explainer text-small text-centered"><em>This page was last updated on {{ updated | date: "%B %-d, %-I:%M%p", "America/Los_Angeles" }}.</em></p> <p class="explainer text-small text-centered"><em>This page was last updated on {{ updated | strip }}.</em></p>
{% endif %} {% endif %}
<nav aria-label="Social icons" class="social flex-centered justify-centered text-centered"> <nav aria-label="Social icons" class="social flex-centered justify-centered text-centered">
{% for link in nav.footer_icons %} {% for link in nav.footer_icons %}