Compare commits
No commits in common. "main" and "feat/workflow" have entirely different histories.
main
...
feat/workf
4 changed files with 7 additions and 15 deletions
|
@ -6,7 +6,7 @@ export default {
|
||||||
locale: "en_EN",
|
locale: "en_EN",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
author: "Devin Haska",
|
author: "Devin Haska",
|
||||||
repoUrl: "https://git.wonderfulfrog.com/wonderfulfrog/wonderfulfrog.com",
|
repoUrl: "https://github.com/wonderfulfrog/wonderfulfrog.com",
|
||||||
email: "devin@wonderfulfrog.com",
|
email: "devin@wonderfulfrog.com",
|
||||||
signal: {
|
signal: {
|
||||||
name: "wonderfulfrog.64",
|
name: "wonderfulfrog.64",
|
||||||
|
|
|
@ -1,16 +1,16 @@
|
||||||
{% macro feed(meta, items, buildTime, feedPath, feedTitle, filterTag) %}
|
{% macro feed(meta, items, buildTime, feedPath, feedTitle, filterTag) %}
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title><![CDATA[{% if feedTitle %}{{ feedTitle }} • {% endif %}{{ meta.siteName }}]]></title>
|
<title>![CDATA[{% if feedTitle %}{{ feedTitle }} • {% endif %}{{ meta.siteName }}]]</title>
|
||||||
<link>{{ meta.url }}</link>
|
<link>{{ meta.url }}</link>
|
||||||
<atom:link href="{{ meta.url }}{{ feedPath }}" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ meta.url }}{{ feedPath }}" rel="self" type="application/rss+xml" />
|
||||||
<description><![CDATA[{{ meta.siteDescription }}]]></description>
|
<description>![CDATA[{{ meta.siteDescription }}]]</description>
|
||||||
<language>en-ca</language>
|
<language>en-ca</language>
|
||||||
<pubDate>{{ buildTime | formatAsUTCString }}</pubDate>
|
<pubDate>{{ buildTime | formatAsUTCString }}</pubDate>
|
||||||
<lastBuildDate>{{ buildTime | formatAsUTCString }}</lastBuildDate>
|
<lastBuildDate>{{ buildTime | formatAsUTCString }}</lastBuildDate>
|
||||||
{% for item in items | reverse %}
|
{% for item in items | reverse %}
|
||||||
<item>
|
<item>
|
||||||
<title><![CDATA[{{ item.data.title | safe }}]]></title>
|
<title>![CDATA[{{ item.data.title }}]]</title>
|
||||||
<guid>{{ meta.url }}{{ item.url }}</guid>
|
<guid>{{ meta.url }}{{ item.url }}</guid>
|
||||||
<pubDate>{{ item.date | formatAsUTCString }}</pubDate>
|
<pubDate>{{ item.date | formatAsUTCString }}</pubDate>
|
||||||
<link>{{ meta.url }}{{ item.url }}</link>
|
<link>{{ meta.url }}{{ item.url }}</link>
|
||||||
|
@ -18,9 +18,9 @@
|
||||||
<category>{{ tag }}</category>
|
<category>{{ tag }}</category>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% if item.content %}
|
{% if item.content %}
|
||||||
<description><![CDATA[{{ item.content | convertRelativeLinks(meta.url) | safe }}]]></description>
|
<description>![CDATA[{{ item.content | convertRelativeLinks(meta.url) | escape }}]]</description>
|
||||||
{% elseif item.data.excerpt %}
|
{% elseif item.data.excerpt %}
|
||||||
<description><![CDATA[{{ item.excerpt | safe }}]]></description>
|
<description>![CDATA[{{ item.excerpt }}]]</description>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</item>
|
</item>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -10,12 +10,6 @@ All the changes that are fit to read!
|
||||||
|
|
||||||
If preferred, the [commit log is available here][commits].
|
If preferred, the [commit log is available here][commits].
|
||||||
|
|
||||||
## April 15th, 2025
|
|
||||||
|
|
||||||
- Fix issue with `CDATA` inside the RSS feeds
|
|
||||||
- Update Colophon page
|
|
||||||
- Convert development and deployment pipeline to use [Forgejo](https://forgejo.org/) and [Forgejo Runner](https://code.forgejo.org/forgejo/runner)!
|
|
||||||
|
|
||||||
## April 4th, 2025
|
## April 4th, 2025
|
||||||
|
|
||||||
- Updated the RSS generation scripts. I'm sorry (and in advance) for screwing with your RSS reader.
|
- Updated the RSS generation scripts. I'm sorry (and in advance) for screwing with your RSS reader.
|
||||||
|
|
|
@ -26,9 +26,7 @@ A minimal amount of [PostCSS][postcss] is used as a developer convenience, othwi
|
||||||
|
|
||||||
Responsive images are generated by [eleventy-img][eleventyimg].
|
Responsive images are generated by [eleventy-img][eleventyimg].
|
||||||
|
|
||||||
The site (and its accompanying media assets are hosted on [Bunny.net](https://bunny.net).
|
The site (and its accompanying media assets are hosted on [Bunny.net][https://bunny.net].
|
||||||
|
|
||||||
Source control is managed through a [self-hosted instance](https://git.wonderfulfrog.com) of [Forgejo](https://forgejo.org/).
|
|
||||||
|
|
||||||
Date formatting uses [dayjs][dayjs].
|
Date formatting uses [dayjs][dayjs].
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue