1
0
mirror of https://gitlab.com/Anson-Projects/zine.git synced 2025-06-15 13:16:39 +00:00

Add rss feed to head of page

This commit is contained in:
Anson 2024-11-12 19:30:19 -07:00
parent 65998c7fa7
commit 919e290a26

View File

@ -100,6 +100,7 @@ fn generate_header() -> Markup {
li { a href="#" data-theme-switcher="auto" { "Auto" }}
li { a href="#" data-theme-switcher="light" { "Light" }}
li { a href="#" data-theme-switcher="dark" { "Dark" }}
}
}
}
@ -172,6 +173,8 @@ pub fn generate_head() -> Markup {
meta property="og:description" content="Blogroll of RSS feeds in the format of a magazine for Anson Biggs";
meta property="og:url" content="https://zine.ansonbiggs.com";
meta property="og:type" content="website";
link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/feed.xml";
}
}
}