From 6d91d2f42e8a2ae2350c67357e9004664bacd307 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 11 Mar 2023 21:41:32 -0800 Subject: [PATCH] styling fixes --- src/index.html | 2 +- src/tagList.md | 12 +++++------- src/tags.md | 2 +- tailwind.config.js | 3 +++ 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/index.html b/src/index.html index f2280557..63f02f9a 100644 --- a/src/index.html +++ b/src/index.html @@ -1,12 +1,12 @@ --- layout: default title: Blog -templateEngineOverride: liquid,md pagination: data: collections.posts size: 10 reverse: true alias: posts +templateEngineOverride: liquid,md --- {% for post in pagination.items %} {% if post.data.published %} diff --git a/src/tagList.md b/src/tagList.md index d4d5308e..c7a3f31d 100644 --- a/src/tagList.md +++ b/src/tagList.md @@ -7,11 +7,12 @@ pagination: permalink: /tags/{{ tag }}/ eleventyComputed: title: '{{ tag }}' +templateEngineOverride: liquid,md --- {% for post in collections[tag] %} -
+

-
- {{ post.date | date: "%m.%d.%Y" }} -
-

{{ post.data.post_excerpt }} -

-
+
+ {{ post.date | date: "%m.%d.%Y" }} + Read more →
diff --git a/src/tags.md b/src/tags.md index 0db677ac..97c2dcd4 100644 --- a/src/tags.md +++ b/src/tags.md @@ -6,7 +6,7 @@ title: Tags {% for tag in collections.tagList %} - diff --git a/tailwind.config.js b/tailwind.config.js index c2319570..4d2e093b 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -53,7 +53,10 @@ module.exports = { border: `1px solid ${theme('colors.gray.700')}`, }, code: { + color: `${theme('colors.gray.50')} !important`, backgroundColor: theme('colors.gray.900'), + borderRadius: '0.25rem', + padding: '0.25rem', }, }, },