- Implement flexible theme switching via site.conf (site_theme, site_theme_css_file). - Ensure correct copying of theme static assets, with theme assets overriding root assets. - Resolve CSS linking issues by checking file existence after static copy and using correct paths for Pandoc. - Refactor path construction to prevent duplication when using absolute/relative output paths. - Create comprehensive how-it-works.md detailing system architecture, theme creation, and overall workflow. - Clarify design philosophy: qsgen3 remains design-agnostic, only linking main theme CSS automatically.
22 lines
739 B
XML
22 lines
739 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>My Awesome Site</title>
|
|
<link>http://localhost:8000</link>
|
|
<description>A brief description of my site</description>
|
|
<language>en-us</language>
|
|
<lastBuildDate></lastBuildDate>
|
|
<atom:link href="http://localhost:8000/rss.xml" rel="self" type="application/rss+xml" />
|
|
|
|
<item>
|
|
<title>Hello, World!</title>
|
|
<link>http://localhost:8000/posts/hello-world.html</link>
|
|
<pubDate></pubDate>
|
|
<guid isPermaLink="true">http://localhost:8000/posts/hello-world.html</guid>
|
|
<description><![CDATA[My first post using the qsgen3 static site
|
|
generator.]]></description>
|
|
</item>
|
|
|
|
</channel>
|
|
</rss>
|