+{{ end }}
Mastodon | Contact Me | RSS Feed
diff --git a/theme.toml b/theme.toml
index c9ce5fe..78d0ed0 100644
--- a/theme.toml
+++ b/theme.toml
@@ -12,4 +12,4 @@ min_version = "0.41.0"
[author]
name = "RogueFoam"
- homepage = ""
\ No newline at end of file
+ homepage = ""
From 36110a0c55ff5f22e22564fac24c7641edd238d4 Mon Sep 17 00:00:00 2001
From: fbievan
Date: Mon, 20 May 2024 14:50:59 -0500
Subject: [PATCH 08/20] Updated README
Did the Following
- Removed Necessary Documentation that can be referred to at the orginal project
- Credited the Authors of the numerous projects used
---
README.md | 51 ++++++++++-----------------------------------------
1 file changed, 10 insertions(+), 41 deletions(-)
diff --git a/README.md b/README.md
index b7800f6..c7a9a7f 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ Readable is a theme for the static-site generator [Hugo](https://gohugo.io/) usi
Shoutout to [Benjamin Hollon](https://benjaminhollon.com/) for his amazing work building this CSS framework and making it so simple to use.
-Want to check out a demo? (coming soon)
+**This is a fork of the project [hugo-theme-readable](https://github.com/cjtheham/hugo-theme-readable)**

@@ -12,58 +12,27 @@ Want to check out a demo? (coming soon)
To add this theme to an existing Hugo site, start by adding this repo as a submodule in the site's themes folder.
-`git submodule add https://github.com/cjtheham/hugo-theme-readable themes/readable`
+`git submodule add https://git.fbievan.live/fbievan/hugo-theme-readable themes/readable`
Then, update your config file to be using the new theme. For example, if you are using config.toml, the line should become:
`theme = 'readable'`
-If you don't have an existing site, feel free to use the provided [starter template](https://github.com/cjtheham/hugo-starter-readable) to quickly get your website online.
-
For more information on starting a Hugo website and using custom themes, refer to the [Hugo documentation](https://gohugo.io/documentation/).
## Usage
Freedom to Write has provided some awesome guides on writing HTML that works automatically with the formatting of Readable. For a complete HTML page guide on writing custom pages, see [Overall Structure](https://codeberg.org/Freedom-to-Write/readable.css/wiki/Overall-Structure). For some neat tips that may make life easier working with this style sheet, read [Quick Tips](https://codeberg.org/Freedom-to-Write/readable.css/wiki/Quick-Tips).
-## Shortcodes
-### aside
+## The rest
+As mentioned, This is a fork of [hugo-theme-readable](https://github.com/cjtheham/hugo-theme-readable), and will continue to cherry-pick commits from the upstream. I also commit to pushing certain things I think work with the upstream project, to the upstream.
-You can use the `aside` shortcode to signify content that is slightly off-topic in regard to the rest of the post.
+This is very much a opinonized theme for my site, and you can use it for yours, I however ask that you credit me as I credit Benjamin, and CJ for the work done on this project.
-Here's how it compares to a blockquote:
+Without Benjamin Hollon or C.J this theme wouldn't exist.
-```text
-> This is a blockquote.
->
-> This is a default **markdown** element and supports formatting inside it.
-
-{{< aside >}}
-This is an aside element.
-
-You can use **markdown** formatting inside it.
-{{ aside >}}
-```
-
-The above code generates the following output:
-
-
-
-### video
-
-You can use the `video` shortcode to embed a video player in your post.
-
-```text
-{{< video source="https://test-videos.co.uk/vids/bigbuckbunny/mp4/av1/1080/Big_Buck_Bunny_1080_10s_5MB.mp4" type="video/mp4" caption="Of course it's Big Buck Bunny!" >}}
-```
-
-
-
-Sources can be remote or static content from your website. You can find the supported file types [here](https://www.w3schools.com/html/html5_video.asp#table1).
-
-## Notes
-
-- Benjamin loves when new sites and projects pop up using the readable.css framework!
- - If you've built a complete site using this theme, submit an issue to the [original repo](https://codeberg.org/Freedom-to-Write/readable.css) with the URL of your site to be featured in the project's README.
- - Projects like this and other non-website uses of the framework, such as adapting it to other static site generators, can be featured on the page [Unofficial Related Projects (that are awesome)](https://codeberg.org/Freedom-to-Write/readable.css/wiki/Unofficial-Related-Projects-%28that-are-awesome%29). Go mention [@freedomtowrite@fosstodon.org](https://fosstodon.org/@freedomtowrite) to be featured there!
+Projects used:
+- [hugo](https://gohugo.io/) created by [Bep](https://bep.is/en/)
+- [Readable.css](https://codeberg.org/Freedom-to-Write/readable.css) created by [Benjamin Hollon](https://benjaminhollon.com/)
+- [Hugo Readable Theme](https://github.com/cjtheham/hugo-theme-readable) created by [C.J](https://github.com/cjtheham)
\ No newline at end of file
From 295d83761813a6e6f68d9620dacbad45f74e1725 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 22 May 2024 12:25:02 -0500
Subject: [PATCH 09/20] Make Light Theme display correctly
---
static/css/homepage.css | 26 ++++++++++++++++++++------
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/static/css/homepage.css b/static/css/homepage.css
index 6560fe8..13fb174 100644
--- a/static/css/homepage.css
+++ b/static/css/homepage.css
@@ -1,3 +1,21 @@
+html, html[data-theme="light"] {
+ --background-color: snow;
+ --color: #000;
+}
+
+html[data-theme="dark"] {
+ --background-color: #1f272d;
+ --color: #fff;
+ --tcolor: pink;
+}
+@media (prefers-color-scheme: dark) {
+ html {
+ --background-color: #222830;
+ --color: #fff;
+ --hcolor: #e976d9;
+ --tcolor: pink;
+ }
+}
.articles {
padding: 5px;
border: var(--line-width) solid;
@@ -19,14 +37,10 @@
text-align: left;
margin-top: 10px;
padding-top: 0px;
- color: #e976d9
- }
- a {
- text-decoration: none;
+ color: var(--hcolor);
}
.summary {
padding-left: 1.5rem;
- color: #f1f3f7;
margin-top: 0.1rem;
}
.metadata {
@@ -37,5 +51,5 @@
}
.metadata a {
text-decoration: underline;
- color: pink;
+ color: var(--tcolor);
}
From d5a64c55fa6ec6c2c180cacc6bb617caa97eead6 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 22 May 2024 16:26:14 -0500
Subject: [PATCH 10/20] Merge in changes
---
layouts/_default/rss.xml | 72 ++++++++++++++++++++++++++++++++++++++++
static/rss.xsl | 46 +++++++++++++++++++++++++
2 files changed, 118 insertions(+)
create mode 100644 layouts/_default/rss.xml
create mode 100644 static/rss.xsl
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml
new file mode 100644
index 0000000..0e0e51c
--- /dev/null
+++ b/layouts/_default/rss.xml
@@ -0,0 +1,72 @@
+{{- /* Deprecate site.Author.email in favor of site.Params.author.email */}}
+{{- $authorEmail := "" }}
+{{- with site.Params.author }}
+ {{- if reflect.IsMap . }}
+ {{- with .email }}
+ {{- $authorEmail = . }}
+ {{- end }}
+ {{- end }}
+{{- else }}
+ {{- with site.Author.email }}
+ {{- $authorEmail = . }}
+ {{- warnf "The author key in site configuration is deprecated. Use params.author.email instead." }}
+ {{- end }}
+{{- end }}
+
+{{- /* Deprecate site.Author.name in favor of site.Params.author.name */}}
+{{- $authorName := "" }}
+{{- with site.Params.author }}
+ {{- if reflect.IsMap . }}
+ {{- with .name }}
+ {{- $authorName = . }}
+ {{- end }}
+ {{- else }}
+ {{- $authorName = . }}
+ {{- end }}
+{{- else }}
+ {{- with site.Author.name }}
+ {{- $authorName = . }}
+ {{- warnf "The author key in site configuration is deprecated. Use params.author.name instead." }}
+ {{- end }}
+{{- end }}
+
+{{- $pctx := . }}
+{{- if .IsHome }}{{ $pctx = .Site }}{{ end }}
+{{- $pages := slice }}
+{{- if or $.IsHome $.IsSection }}
+{{- $pages = $pctx.RegularPages }}
+{{- else }}
+{{- $pages = $pctx.Pages }}
+{{- end }}
+{{- $limit := .Site.Config.Services.RSS.Limit }}
+{{- if ge $limit 1 }}
+{{- $pages = $pages | first $limit }}
+{{- end }}
+{{- printf "" | safeHTML }}
+{{- printf "" | safeHTML -}}
+
+
+ {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ .Site.Title }}{{ end }}
+ {{ .Permalink }}
+ Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ .Site.Title }}
+ Hugo
+ {{ site.Language.LanguageCode }}{{ with $authorEmail }}
+ {{.}}{{ with $authorName }} ({{ . }}){{ end }}{{ end }}{{ with $authorEmail }}
+ {{ . }}{{ with $authorName }} ({{ . }}){{ end }}{{ end }}{{ with .Site.Copyright }}
+ {{ . }}{{ end }}{{ if not .Date.IsZero }}
+ {{ (index $pages.ByLastmod.Reverse 0).Lastmod.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }}
+ {{- with .OutputFormats.Get "RSS" }}
+ {{ printf "" .Permalink .MediaType | safeHTML }}
+ {{- end }}
+ {{- range $pages }}
+
+ {{ .Title }}
+ {{ .Permalink }}
+ {{ .PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}
+ {{- with $authorEmail }}{{ . }}{{ with $authorName }} ({{ . }}){{ end }}{{ end }}
+ {{ .Permalink }}
+ {{ printf "" | safeHTML }}
+
+ {{- end }}
+
+
diff --git a/static/rss.xsl b/static/rss.xsl
new file mode 100644
index 0000000..97ba4cf
--- /dev/null
+++ b/static/rss.xsl
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+ Feed
+
+
+
+
+
+
+
+
+
+{{ end }}
Mastodon | Contact Me | RSS Feed
From d6c39b9b51e935ee7f02f97bb6f0d42d72dba0f2 Mon Sep 17 00:00:00 2001
From: benjaminhollon
Date: Tue, 18 Jun 2024 21:47:27 +0000
Subject: [PATCH 14/20] Update README to reflect move to Codeberg
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index b7800f6..e9ea59a 100644
--- a/README.md
+++ b/README.md
@@ -12,13 +12,13 @@ Want to check out a demo? (coming soon)
To add this theme to an existing Hugo site, start by adding this repo as a submodule in the site's themes folder.
-`git submodule add https://github.com/cjtheham/hugo-theme-readable themes/readable`
+`git submodule add https://codeberg.org/Freedom-to-Write/hugo-theme-readable themes/readable`
Then, update your config file to be using the new theme. For example, if you are using config.toml, the line should become:
`theme = 'readable'`
-If you don't have an existing site, feel free to use the provided [starter template](https://github.com/cjtheham/hugo-starter-readable) to quickly get your website online.
+If you don't have an existing site, feel free to use the provided [starter template](https://codeberg.org/cjtheham/hugo-starter-readable) to quickly get your website online.
For more information on starting a Hugo website and using custom themes, refer to the [Hugo documentation](https://gohugo.io/documentation/).
From 5365462844891d880eb10850bc79309b82fe8832 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Tue, 18 Jun 2024 19:20:28 -0500
Subject: [PATCH 15/20] Fix Starter template link
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index e9ea59a..e174471 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Then, update your config file to be using the new theme. For example, if you are
`theme = 'readable'`
-If you don't have an existing site, feel free to use the provided [starter template](https://codeberg.org/cjtheham/hugo-starter-readable) to quickly get your website online.
+If you don't have an existing site, feel free to use the provided [starter template](https://codeberg.org/Freedom-to-Write/hugo-starter-readable) to quickly get your website online.
For more information on starting a Hugo website and using custom themes, refer to the [Hugo documentation](https://gohugo.io/documentation/).
From 5038c515e54f5d0627626af1b4de488be4d33071 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 19 Jun 2024 13:53:40 -0500
Subject: [PATCH 16/20] Fix Links that mentioend github + remove .github
---
.github/scripts/update-readable-css.sh | 49 -----------------------
.github/workflows/update-readable-css.yml | 42 -------------------
2 files changed, 91 deletions(-)
delete mode 100755 .github/scripts/update-readable-css.sh
delete mode 100644 .github/workflows/update-readable-css.yml
diff --git a/.github/scripts/update-readable-css.sh b/.github/scripts/update-readable-css.sh
deleted file mode 100755
index 4efb067..0000000
--- a/.github/scripts/update-readable-css.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-set -o errexit
-set -o pipefail
-set -o nounset
-
-# Query the codeberg.org API (see
-# https://codeberg.org/api/swagger#/repository/repoListReleases
-# ) and use jq to get the tag name of the
-# latest release (i.e. the first element of the
-# array in the JSON output, that is not a
-# prerelease).
-# The '-r' option will give us "raw" output,
-# i.e. without surrounding double-quotes.
-# We use 'map' and 'select' in combination,
-# because jq won't return a list otherwise.
-# Only using 'select' returns just the matching
-# elements, which is not a valid json that we
-# can process further.
-TAG_VERSION=$(curl -s \
- -H 'accept: application/json' \
- https://codeberg.org/api/v1/repos/Freedom-to-Write/readable.css/releases \
- | jq -r '.|map(select(.prerelease==false))[0].tag_name')
-
-echo "Latest tag: ${TAG_VERSION}"
-
-# Get the current version.
-# The '-o' option will only output the match grep found.
-# We look for readable.min.css and a set of three numbers seperated by dots,
-# i.e. a semantic version. readable.min.css is used to make sure that we match
-# the right numbers in the file.
-# We use sed to get rid of the readable.min.css prefix.
-CURRENT_VERSION=$(grep -o \
- 'readable.min.css?v=v[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+' \
- layouts/partials/head.html \
- | sed 's/readable.min.css?v=//')
-echo "Current version: ${CURRENT_VERSION}"
-
-if [[ $TAG_VERSION == $CURRENT_VERSION ]]
-then
- echo "Nothing to do. The current version is already up to date."
-else
- curl -s "https://codeberg.org/Freedom-to-Write/readable.css/raw/tag/${TAG_VERSION}/readable.css" > static/css/readable.css
- curl -s "https://codeberg.org/Freedom-to-Write/readable.css/raw/tag/${TAG_VERSION}/readable.min.css" > static/css/readable.min.css
- sed -i "s/readable.min.css?v=${CURRENT_VERSION}/readable.min.css?v=${TAG_VERSION}/" layouts/partials/head.html
-fi
-
-# Add the latest tag version to the workflow environment, so we can access
-# it in later steps.
-echo "READABLE_CSS_TAG=${TAG_VERSION}" >> "$GITHUB_ENV"
diff --git a/.github/workflows/update-readable-css.yml b/.github/workflows/update-readable-css.yml
deleted file mode 100644
index cab3bf0..0000000
--- a/.github/workflows/update-readable-css.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-name: update-readable-css
-
-on:
- schedule:
- # Every day at 3:28.
- - cron: '28 3 * * *'
-
-jobs:
- update-readable-css:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: Download CSS files for latest tag
- run: .github/scripts/update-readable-css.sh
- - name: Create pull request if files have changed
- # https://github.com/marketplace/actions/create-pull-request
- uses: peter-evans/create-pull-request@v5
- with:
- # First line is the commit subject as always. The rest goes
- # into the body.
- commit-message: |
- Update readable.css to ${{ env.READABLE_CSS_TAG }}
-
- See the changelog here:
-
- https://codeberg.org/Freedom-to-Write/readable.css/src/tag/${{ env.READABLE_CSS_TAG }}/CHANGELOG.md
- branch: update-readable-css
- delete-branch: true
- # Use 'GitHub' both times.
- # This is already the default for committer, but the author defaults
- # to the user who triggered the workflow run, which is the owner of
- # the repository.
- # We use the same value for the author to indicate that the
- # commit was created by a bot.
- committer: GitHub
- author: GitHub
- title: Update readable.css to ${{ env.READABLE_CSS_TAG }}
- body: |
- See the changelog here:
-
- https://codeberg.org/Freedom-to-Write/readable.css/src/tag/${{ env.READABLE_CSS_TAG }}/CHANGELOG.md
- labels: update-readable-css
From e6bb246caba97ef0762a602bbc26496de8d4d657 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 19 Jun 2024 13:54:24 -0500
Subject: [PATCH 17/20] Fix Links that mentioned github
---
README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index c7a9a7f..010fb78 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@ Readable is a theme for the static-site generator [Hugo](https://gohugo.io/) usi
Shoutout to [Benjamin Hollon](https://benjaminhollon.com/) for his amazing work building this CSS framework and making it so simple to use.
-**This is a fork of the project [hugo-theme-readable](https://github.com/cjtheham/hugo-theme-readable)**
-
+**This is a fork of the project [hugo-theme-readable](https://codeberg.org/Freedom-to-Write/hugo-theme-readable)**
+https://codeberg.org/Freedom-to-Write/hugo-theme-readable

## Installation
@@ -26,7 +26,7 @@ Freedom to Write has provided some awesome guides on writing HTML that works aut
## The rest
-As mentioned, This is a fork of [hugo-theme-readable](https://github.com/cjtheham/hugo-theme-readable), and will continue to cherry-pick commits from the upstream. I also commit to pushing certain things I think work with the upstream project, to the upstream.
+As mentioned, This is a fork of [hugo-theme-readable](https://codeberg.org/Freedom-to-Write/hugo-theme-readable), and will continue to cherry-pick commits from the upstream. I also commit to pushing certain things I think work with the upstream project, to the upstream.
This is very much a opinonized theme for my site, and you can use it for yours, I however ask that you credit me as I credit Benjamin, and CJ for the work done on this project.
@@ -35,4 +35,4 @@ Without Benjamin Hollon or C.J this theme wouldn't exist.
Projects used:
- [hugo](https://gohugo.io/) created by [Bep](https://bep.is/en/)
- [Readable.css](https://codeberg.org/Freedom-to-Write/readable.css) created by [Benjamin Hollon](https://benjaminhollon.com/)
-- [Hugo Readable Theme](https://github.com/cjtheham/hugo-theme-readable) created by [C.J](https://github.com/cjtheham)
\ No newline at end of file
+- [Hugo Readable Theme](https://codeberg.org/Freedom-to-Write/hugo-theme-readable) created by [C.J](https://github.com/cjtheham)
From 7fbbdd1c38bb80efcf98d04a41bcfcf53838ec2a Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 19 Jun 2024 14:01:47 -0500
Subject: [PATCH 18/20] Remove all the links that mention github in theme.toml
+ Fix Documentation
---
docs/development.md | 4 ++--
theme.toml | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/development.md b/docs/development.md
index 4a71c4f..eda393c 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -2,7 +2,7 @@
## Adding your fork as an additional Git remote to a hugo-theme-readable Git submodule
-The easiest way to test your changes is with an existing Hugo website that already uses this theme. You can use your own or checkout the [starter template](https://github.com/cjtheham/hugo-starter-readable).
+The easiest way to test your changes is with an existing Hugo website that already uses this theme. You can use your own or checkout the [starter template](https://codeberg.org/Freedom-to-Write/hugo-starter-readable).
The following steps show you how to add your fork as an additional Git remote to the checked out Git submodule.
@@ -16,7 +16,7 @@ git submodule update
cd themes/readable/
# Add your fork as the remote 'fork'.
-git remote add fork git@github.com:/hugo-theme-readable.git
+git remote add fork git@codeberg.org:/hugo-theme-readable.git
# Create a new branch.
git checkout -b my-change
diff --git a/theme.toml b/theme.toml
index c9ce5fe..a971b5c 100644
--- a/theme.toml
+++ b/theme.toml
@@ -3,13 +3,13 @@
name = "Readable"
license = "Unlicense"
-licenselink = "https://github.com/cjtheham/hugo-theme-readable/blob/main/LICENSE"
+licenselink = "https://codeberg.org/Freedom-to-Write/hugo-theme-readable/src/branch/main/LICENSE"
description = "A theme using Freedom to Write's Readable.css"
-homepage = "https://github.com/cjtheham/hugo-theme-readable"
+homepage = "https://codeberg.org/Freedom-to-Write/hugo-theme-readable"
tags = []
features = []
min_version = "0.41.0"
[author]
name = "RogueFoam"
- homepage = ""
\ No newline at end of file
+ homepage = ""
From b066138b0a89c35a1241bd2512454525e3541650 Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 19 Jun 2024 14:01:47 -0500
Subject: [PATCH 19/20] Remove all the links that mention github in theme.toml
+ Fix Documentation
---
docs/development.md | 4 ++--
theme.toml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/development.md b/docs/development.md
index 4a71c4f..eda393c 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -2,7 +2,7 @@
## Adding your fork as an additional Git remote to a hugo-theme-readable Git submodule
-The easiest way to test your changes is with an existing Hugo website that already uses this theme. You can use your own or checkout the [starter template](https://github.com/cjtheham/hugo-starter-readable).
+The easiest way to test your changes is with an existing Hugo website that already uses this theme. You can use your own or checkout the [starter template](https://codeberg.org/Freedom-to-Write/hugo-starter-readable).
The following steps show you how to add your fork as an additional Git remote to the checked out Git submodule.
@@ -16,7 +16,7 @@ git submodule update
cd themes/readable/
# Add your fork as the remote 'fork'.
-git remote add fork git@github.com:/hugo-theme-readable.git
+git remote add fork git@codeberg.org:/hugo-theme-readable.git
# Create a new branch.
git checkout -b my-change
diff --git a/theme.toml b/theme.toml
index 78d0ed0..a971b5c 100644
--- a/theme.toml
+++ b/theme.toml
@@ -3,9 +3,9 @@
name = "Readable"
license = "Unlicense"
-licenselink = "https://github.com/cjtheham/hugo-theme-readable/blob/main/LICENSE"
+licenselink = "https://codeberg.org/Freedom-to-Write/hugo-theme-readable/src/branch/main/LICENSE"
description = "A theme using Freedom to Write's Readable.css"
-homepage = "https://github.com/cjtheham/hugo-theme-readable"
+homepage = "https://codeberg.org/Freedom-to-Write/hugo-theme-readable"
tags = []
features = []
min_version = "0.41.0"
From 643076dccefcc459bf3d601bc4473c7b08983b0b Mon Sep 17 00:00:00 2001
From: "Evan G."
Date: Wed, 13 Aug 2025 15:40:05 -0500
Subject: [PATCH 20/20] Fixup the Theme a lil
---
layouts/index.html | 6 +++---
static/css/homepage.css | 3 +++
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/layouts/index.html b/layouts/index.html
index b5b27ad..aa901fc 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,5 @@
{{ define "main" }}
-{{ partial "metadata.html" . }}
-
@@ -10,7 +8,9 @@