diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-25 16:03:17 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-25 16:03:17 +0200 |
commit | 2403a9a3599c4b77d33fb6de5f438e53e19412ff (patch) | |
tree | 52d97db8fffc0938df04e7263e9bd600f68f90fc /code/src/atom.rs | |
parent | 9d60efd6be9cfdaff2d2191dac18ccfd9cae8b7f (diff) | |
download | metamuffin-blog-2403a9a3599c4b77d33fb6de5f438e53e19412ff.tar metamuffin-blog-2403a9a3599c4b77d33fb6de5f438e53e19412ff.tar.bz2 metamuffin-blog-2403a9a3599c4b77d33fb6de5f438e53e19412ff.tar.zst |
update BLOG_BASE
Diffstat (limited to 'code/src/atom.rs')
-rw-r--r-- | code/src/atom.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/src/atom.rs b/code/src/atom.rs index 0b3b5ba..7912b97 100644 --- a/code/src/atom.rs +++ b/code/src/atom.rs @@ -27,7 +27,7 @@ pub fn generate_atom(args: &Args) -> String { r#" <entry> <title>{title}</title> - <link href="https://{BLOG_BASE}/{canonical_name}.html" /> + <link href="{BLOG_BASE}/{canonical_name}.html" /> <id>tag:metamuffin.org,{date},{title}</id> <published>{datetime}</published> <summary>N/A</summary> @@ -45,8 +45,8 @@ pub fn generate_atom(args: &Args) -> String { <feed xmlns="http://www.w3.org/2005/Atom"> <title>metamuffin's blog</title> <subtitle>where they post pointless stuff</subtitle> - <link href="https://{BLOG_BASE}/feed.atom" rel="self" /> - <link href="https://{BLOG_BASE}/" /> + <link href="{BLOG_BASE}/feed.atom" rel="self" /> + <link href="{BLOG_BASE}/" /> <id>urn:uuid:3cf2b704-3d94-4f1f-b194-42798ab5b47c</id> <updated>{}</updated> <author> |