1
0
mirror of https://github.com/elisspace/blog-test.git synced 2026-08-29 15:43:52 +00:00

palette play and adding created/updated dates

This commit is contained in:
Eli
2023-09-14 17:08:23 -04:00
committed by GitHub
parent c822e322f9
commit fd16690b1c
4 changed files with 21 additions and 16 deletions

View File

@@ -7,7 +7,8 @@ layout: layouts/base.njk
<h1>{{ title }}</h1>
<ul class="post-metadata">
<li><time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time></li>
<li>Created: <time datetime="{{ page.created | htmlDateString }}">{{ page.created | readableDate }}</time></li>
<li>Updated: <time datetime="{{ page.updated | htmlDateString }}">{{ page.updated | readableDate }}</time></li>
{%- for tag in tags | filterTagList %}
{%- set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
<li><a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a>{%- if not loop.last %}, {% endif %}</li>

View File

@@ -2,6 +2,8 @@
title: cTHUDH is this thing on
description: an exercise in seeking balance
date: 2023-09-12
created: 2023-09-12
updated: 2023-09-12
tags:
- steelman
---

View File

@@ -1,7 +1,9 @@
---
title: This is my second post with a much longer title.
description: This is a post on My Blog about leveraging agile frameworks.
date: 2018-07-04
date: 2023-09-13
created: 2023-09-13
updated: 2023-09-13
tags:
- number 2
---

View File

@@ -6,32 +6,32 @@
/* Theme colors */
:root {
--color-gray-20: #A5A5A4;
--color-gray-50: #555655;
--color-gray-90: #798B82;
--color-gray-20: #96C291;
--color-gray-50: #588a52;
--color-gray-90: #31672b;
--background-color: #D1D1D1;
--background-color: #FFDBAA;
--text-color: var(--color-gray-90);
--text-color-link: #D1D1D1;
--text-color-link-active: #7C7686;
--text-color-link-visited: #C5B1AB;
--text-color-link: #FFDBAA;
--text-color-link-active: #FFB7B7;
--text-color-link-visited: #598155;
--syntax-tab-size: 2;
}
@media (prefers-color-scheme: dark) {
:root {
--color-gray-20: #89d68f;
--color-gray-50: #c7a9c3;
--color-gray-90: #798B82;
--color-gray-20: #84A7A1;
--color-gray-50: #516763;
--color-gray-90: #2a3533;
/* --text-color is assigned to --color-gray-_ above */
--text-color-link: #D1D1D1;
--text-color-link-active: #7C7686;
--text-color-link-visited: #C5B1AB;
--text-color-link: #2E8A99;
--text-color-link-active: #77d0de;
--text-color-link-visited: #84A7A1;
--background-color: #D1D1D1;
--background-color: #0E2954;
}
}