commit 5b223a2e2a9554a0ce74d2a8b439465ff982e910
parent afc1c772cee47ac74c9ed8a4a4a4f77db6c973c5
Author: Andrew Laack <andrew@laack.co>
Date: Sun, 28 Sep 2025 15:01:55 -0500
Fixed regression
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/posts/site/feed.xml b/posts/site/feed.xml
@@ -7,7 +7,7 @@
<language>en-us</language>
<managingEditor>andrew@laack.co</managingEditor>
<webMaster>andrew@laack.co</webMaster>
-<lastBuildDate>Sun, 28 Sep 2025 14:49:10 -0500</lastBuildDate>
+<lastBuildDate>Sun, 28 Sep 2025 15:01:36 -0500</lastBuildDate>
<atom:link href='https://blog.laack.co/feed.xml' rel='self' type='application/rss+xml'/>
<item>
<title><![CDATA[The Sustainability of YouTube]]></title>
@@ -148,7 +148,7 @@ href="https://github.com/yt-dlp/yt-dlp">https://github.com/yt-dlp/yt-dlp</a></p>
href="http://git.laack.co/blog/log.html">http://git.laack.co/blog/log.html</a></p>
<p>[9] - <a
href="https://cloud.google.com/storage/pricing#multi-regions">https://cloud.google.com/storage/pricing#multi-regions</a></p>]]></description>
-<pubDate></pubDate>
+<pubDate>2025/9/28</pubDate>
<guid>https://blog.laack.co/the-sustainability-of-youtube.html</guid>
</item>
</channel>
diff --git a/posts/site/index.html b/posts/site/index.html
@@ -10,7 +10,7 @@
<h1>Blog Posts</h1>
<p><a href='feed.xml'>RSS Feed</a></p>
<ol>
-<li><a href='the-sustainability-of-youtube.html'>the-sustainability-of-youtube</a> - <em></em></li>
+<li><a href='the-sustainability-of-youtube.html'>the-sustainability-of-youtube</a> - <em>2025/9/28</em></li>
</ol>
</body>
</html>
diff --git a/scripts/convert.sh b/scripts/convert.sh
@@ -42,7 +42,7 @@ for FILE in posts/entries/*.md; do
BASENAME="$(basename "$FILE" .md)"
pandoc "$FILE" -o "posts/site/$BASENAME.html" -s --css=style.css
-
+ DATE_LINE=$(grep -m1 '^## Date:' "$FILE")
DATE=${DATE_LINE#'## Date: '}
posts_with_dates["$FILE"]="$DATE"