diff --git a/.gitignore b/.gitignore index d04640d..ab69d47 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -site/public/ +public/ .idea .DS_Store \ No newline at end of file diff --git a/config.toml b/config.toml index 15f60c0..6f48ed2 100644 --- a/config.toml +++ b/config.toml @@ -29,9 +29,14 @@ feed_filenames = ["rss.xml"] #output_dir #preserve_dotfiles_in_output [link_checker] -# freedesktop.org returns 418 to bots but works fine in browsers +# freedesktop.org returns 418 to bots but works fine in browsers. +# YouTube aggressively rate-limits (429) Zola's link checker once a page +# links to more than a couple of videos, even though the links work fine +# in a browser - skip it rather than have that fail CI. skip_prefixes = [ "https://www.freedesktop.org/", + "https://www.youtube.com/", + "https://youtu.be/", ] #slugify #search @@ -56,7 +61,6 @@ juice_logo_path = "logo.png" juice_extra_menu = [ { title = "About", link = "/about", external = false }, { title = "Docs", link = "https://bootc-dev.github.io/bootc/", external = true }, - { title = "News", link = "/news", external = false }, { title = "Blog", link = "/blog", external = false }, { title = "GitHub", link = "https://github.com/bootc-dev/bootc", external = true }, ] diff --git a/content/news/2025-07-11-community-meeting.md b/content/blog/2025-07-11-community-meeting.md similarity index 97% rename from content/news/2025-07-11-community-meeting.md rename to content/blog/2025-07-11-community-meeting.md index edf0c2f..ef47086 100644 --- a/content/news/2025-07-11-community-meeting.md +++ b/content/blog/2025-07-11-community-meeting.md @@ -2,6 +2,7 @@ title = "Bootc Community Meeting Notes - 11 July 2025" date = 2025-07-11 slug = "2025-july-11-community-meeting" +aliases = ["/news/2025-july-11-community-meeting/"] +++ ### Attendees: diff --git a/content/news/2025-07-18-community-meeting.md b/content/blog/2025-07-18-community-meeting.md similarity index 97% rename from content/news/2025-07-18-community-meeting.md rename to content/blog/2025-07-18-community-meeting.md index c0d53ca..5e24ac4 100644 --- a/content/news/2025-07-18-community-meeting.md +++ b/content/blog/2025-07-18-community-meeting.md @@ -2,6 +2,7 @@ title = "Bootc Community Meeting Notes - 18 July 2025" date = 2025-07-18 slug = "2025-july-18-community-meeting" +aliases = ["/news/2025-july-18-community-meeting/"] +++ ### Attendees: diff --git a/content/blog/_index.md b/content/blog/_index.md index 69e0cc5..1e8fd92 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -4,4 +4,5 @@ weight = 8 sort_by = "date" template = "blog.html" page_template = "blog-page.html" +aliases = ["/news/"] +++ diff --git a/content/news/_index.md b/content/news/_index.md deleted file mode 100644 index 729f563..0000000 --- a/content/news/_index.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "News" -weight = 8 -sort_by = "date" -template = "news.html" -page_template = "news-page.html" -+++ diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..99c785a --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,9 @@ +{% extends "juice/templates/blog.html" %} + +{# The theme's default sidebar just repeats the same post list shown in the + main content above as an "Archive" - drop it instead of showing every + post twice on the same page. #} +{% block sidebar %} +
+{% endblock sidebar %} diff --git a/templates/index.html b/templates/index.html index f9b9adc..dcf374c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -45,6 +45,27 @@