fix sitemap/feed links

This commit is contained in:
2025-07-26 15:32:40 -04:00
parent 6ae7f473de
commit 8b09fbf22c
3 changed files with 6 additions and 6 deletions

View File

@@ -1,16 +1,16 @@
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="https://example.com/feed.xml" rel="self" type="application/rss+xml" />
<atom:link href="https://monotab.silentsilas.com/feed.xml" rel="self" type="application/rss+xml" />
<title>monotab</title>
<link>https://example.com</link>
<link>https://monotab.silentsilas.com</link>
<description>My beautiful website</description>
<language>en-us</language>
<generator>Tableau v0.26.0</generator>
<item>
<title>Test Post: Getting Started with Elixir</title>
<link>https://example.com/2024-01-15-test-post</link>
<link>https://monotab.silentsilas.com/2024-01-15-test-post</link>
<pubDate>Mon, 15 Jan 2024 00:00:00 UTC</pubDate>
<guid>https://example.com/2024-01-15-test-post</guid>
<guid>https://monotab.silentsilas.com/2024-01-15-test-post</guid>
<description><![CDATA[ <h1><a inert href="#getting-started-with-elixir" aria-hidden="true" class="anchor" id="getting-started-with-elixir"></a>Getting Started with Elixir</h1>
<p>Elixir is a dynamic, functional language designed for building scalable and maintainable applications. It leverages the Erlang VM, known for running low-latency, distributed, and fault-tolerant systems.</p>
<h2><a inert href="#key-features" aria-hidden="true" class="anchor" id="key-features"></a>Key Features</h2>

View File

@@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"><url><loc>https://example.com/posts</loc></url><url><loc>https://example.com/</loc></url><url><loc>https://example.com/about</loc></url><url><lastmod>2024-01-15T00:00:00Z</lastmod><loc>https://example.com/2024-01-15-test-post</loc></url></urlset>
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"><url><loc>https://monotab.silentsilas.com/posts</loc></url><url><loc>https://monotab.silentsilas.com/</loc></url><url><loc>https://monotab.silentsilas.com/about</loc></url><url><lastmod>2024-01-15T00:00:00Z</lastmod><loc>https://monotab.silentsilas.com/2024-01-15-test-post</loc></url></urlset>

View File

@@ -1,5 +1,5 @@
import Config
config :tableau, :config, url: "https://example.com"
config :tableau, :config, url: "https://monotab.silentsilas.com"
config :tableau, Tableau.PostExtension, future: false, dir: ["_posts"]
config :tableau, Tableau.PageExtension, dir: ["_pages"]