1
0
mirror of https://gitlab.com/Anson-Projects/zine.git synced 2025-07-27 00:31:23 +00:00

Clean up some language, bump dependencies, and add new blogs

This commit is contained in:
2024-11-02 20:27:05 -06:00
parent 7af1de7ef6
commit caa0100e26
4 changed files with 70 additions and 83 deletions

View File

@@ -72,7 +72,7 @@ fn generate_footer() -> Markup {
" - "
a href=("/feed.xml") target="_blank" rel="noopener noreferrer" { "RSS Feed" }
" - "
a href="https://gitlab.com/MisterBiggs/zine" { "Source Code" }
a href="https://gitlab.com/Anson-Projects/zine" { "Source Code" }
" - "
"Page generated at: " em data-tooltip="Automatic builds daily 8AM Mountain Time" { (formatted_utc) " UTC" }
}
@@ -86,7 +86,7 @@ fn generate_header() -> Markup {
header {
nav {
ul {
li { h1 { "Anson's Blogroll Zine" }}
li { h1 { "The Biggs Brief" }}
}
ul {
li { button data-target="about" onclick="toggleModal(event)" { "About" } }
@@ -130,10 +130,10 @@ fn about_modal(entries: Vec<utilities::Post>) -> Markup {
p { strong { "About" }}
}
p {
"When looking for a RSS reader I came across "
a href="https://news.russellsaw.io/" {"news.russellsaw.io"}
" I thought the idea of building my own personalised newspaper was cool. \
So, I decided to build a clone using my own subscribed RSS feeds."
"I couldn't find a RSS reader that I liked so I decided to build my own."
"I thought it would be neat if it was public and formatted kind of like a magazine or a newspaper, so here we are."
"This is a feed of all the feeds that I want to keep up with. I try to keep it independant and keep out things like"
"enigneering blogs that are just advertisements, but its all up to my discretion."
}
p {
"This page updates daily at 8:11ish AM Mountain Time. The following blogs are"
@@ -146,7 +146,7 @@ fn about_modal(entries: Vec<utilities::Post>) -> Markup {
}
p {
"For the full list of feeds that are followed see the raw list "
a href="https://gitlab.com/MisterBiggs/zine/-/blob/master/feeds.txt" { "here." }
a href="https://gitlab.com/Anson-Projects/zine/-/blob/master/feeds.txt" { "here." }
}
}
}
@@ -156,10 +156,10 @@ fn about_modal(entries: Vec<utilities::Post>) -> Markup {
pub fn generate_head() -> Markup {
html! {
head {
title { "Anson's Zine | Public RSS Feed" }
title { "Biggs Brief | Public RSS Feed" }
meta charset="utf-8";
meta name="viewport" content="width=device-width, initial-scale=1";
meta name="description" content="Blogroll zine of RSS feeds for Anson"
meta name="description" content="Blogroll of RSS feeds in the format of a magazine for Anson Biggs"
link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png";
link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png";
link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png";
@@ -168,9 +168,9 @@ pub fn generate_head() -> Markup {
link rel="stylesheet" href="style.css";
// Open Graph meta tags
meta property="og:title" content="Anson's Zine | Public RSS Feed";
meta property="og:description" content="Blogroll zine of RSS feeds for Anson";
meta property="og:url" content="https://blogroll.ansonbiggs.com";
meta property="og:title" content="Biggs Brief | Public RSS Feed";
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";
}
}