more fix still

feat/cli
dozens 2022-03-04 16:01:03 -07:00
parent ff13f80838
commit ceaf59ada0
3 changed files with 13 additions and 6 deletions

12
dist/feed.xml vendored
View File

@ -1,12 +1,12 @@
<rss version="2.0"><channel><title>gamelog</title>
<link>http://tilde.town/~dozens/gamelog/index.html</link><description>all the games i play</description><atom:link rel="self" type="application/rss+xml" href="http://tilde.town/~dozens/gamelog/feed.xml"/>
<item>
<title>Dungeons & Dragons - Storm King's Thunder</title>
<title>Dungeons and Dragons - Storm King's Thunder</title>
<link>http://tilde.town/~dozens/gamelog/index.html</link>
<pubDate>2021-05-02</pubDate>
<description>
<![CDATA[
My original long running D&D campaign with my original gaming group. Calling it 'on hiatus' is generous. It's dead in the water. We haven't played in a year. But I just can't let it go.
My original long running DandD campaign with my original gaming group. Calling it 'on hiatus' is generous. It's dead in the water. We haven't played in a year. But I just can't let it go.
]]>
</description>
</item>
@ -224,7 +224,7 @@ See more at <https://tibbiusgames.itch.io/2-bit>
</description>
</item>
<item>
<title>D&D 5e - Zigs and Dragons</title>
<title>DandD 5e - Zigs and Dragons</title>
<link>http://tilde.town/~dozens/gamelog/index.html</link>
<pubDate>2022-02-16</pubDate>
<description>
@ -256,7 +256,7 @@ See more at <https://tibbiusgames.itch.io/2-bit>
</description>
</item>
<item>
<title>D&D - Quiet Midwinter</title>
<title>DandD - Quiet Midwinter</title>
<link>http://tilde.town/~dozens/gamelog/index.html</link>
<pubDate>Wed, 29 Dec 2021 12:27:52 -0700</pubDate>
<description>
@ -304,13 +304,13 @@ I don't know, i'd run it again. I imagine i'll feel more prepared the second tim
</description>
</item>
<item>
<title>D&D - Strixhaven</title>
<title>DandD - Strixhaven</title>
<link>http://tilde.town/~dozens/gamelog/index.html</link>
<pubDate>Tue, 22 Feb 2022 09:28:11 -0700</pubDate>
<description>
<![CDATA[
Strixhaven happen!
Background: my pathfinder group agreed to disband and reform as something else. Seems we were a little burned out on the game and needed a change. (I for one have complained to anybody who will listen about how much I hate Pathfinder!) So we decided to try something a little lighter and light-hearted and we went back to 5e D&D and agreed to try *Strixhaven: Curriculum of Chaos*. Former DM gets to play, I get to DM, and we finally had our first session.
Background: my pathfinder group agreed to disband and reform as something else. Seems we were a little burned out on the game and needed a change. (I for one have complained to anybody who will listen about how much I hate Pathfinder!) So we decided to try something a little lighter and light-hearted and we went back to 5e DandD and agreed to try *Strixhaven: Curriculum of Chaos*. Former DM gets to play, I get to DM, and we finally had our first session.
Chierce showed up having not made a character and decided to just lurk quietly and watch, which was both totally okay but also kind of weird.
Our planned cadence is ~1.5 hrs twice a week. We'll see if we stick to it.
We got one third of the way through the first 3-part session. We might get through the next two parts next sesh.

View File

@ -42,6 +42,7 @@ feed:
echo "<link>http://tilde.town/~dozens/gamelog/index.html</link><description>all the games i play</description><atom:link rel=\"self\" type=\"application/rss+xml\" href=\"http://tilde.town/~dozens/gamelog/feed.xml\"/>" >> dist/feed.xml
recsel {{database}} | recfmt -f templates/feed.template >> dist/feed.xml
echo '</channel></rss>' >> dist/feed.xml
sed -i '' 's/&/and/g' dist/feed.xml
# copy to blog
export:

View File

@ -0,0 +1,6 @@
function Meta(m)
if m.date == nil then
m.date = os.date("%B %e, %Y")
return m
end
end