figbert.com-website

[ACTIVE] the website and home of figbert on the clearnet
git clone git://git.figbert.com/figbert.com-website.git
Log | Files | Refs | README | LICENSE

commit 3caa305874fe667c3f254cd19a1d2c8474bacf7f
parent c70461b1f0ccc37b08120e63fc8f9092e0778ccc
Author: FIGBERT <figbert@figbert.com>
Date:   Tue, 19 Dec 2023 23:19:52 -0800

Centralize site Atom feed

Diffstat:
Mconfig.toml | 2+-
Mcontent/posts/_index.md | 1-
Mcontent/projects/_index.md | 1-
Mcontent/reading/_index.md | 1-
Mcontent/reading/list/world-behind-the-world.md | 1-
Mcontent/reading/now/carbon-almanac.md | 1-
Mcontent/reading/now/dune.md | 1-
Mcontent/reading/now/hypermedia-systems.md | 1-
Mcontent/reading/now/subtle-art-of-not-giving-a-fuck.md | 1-
Mtemplates/index.html | 4+---
10 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/config.toml b/config.toml @@ -4,7 +4,7 @@ description = "figbert.com is the website and home of FIGBERT on the clearnet. I author = "FIGBERT" default_language = "en" -generate_feed = false +generate_feed = true minify_html = true [markdown] diff --git a/content/posts/_index.md b/content/posts/_index.md @@ -3,5 +3,4 @@ title = "Posts" page_template = "article.html" sort_by = "date" insert_anchor_links = "left" -generate_feed = true +++ diff --git a/content/projects/_index.md b/content/projects/_index.md @@ -3,5 +3,4 @@ title = "Projects" page_template = "article.html" sort_by = "weight" insert_anchor_links = "left" -generate_feed = true +++ diff --git a/content/reading/_index.md b/content/reading/_index.md @@ -4,5 +4,4 @@ template = "reading.html" page_template = "book.html" sort_by = "date" insert_anchor_links = "left" -generate_feed = true +++ diff --git a/content/reading/list/world-behind-the-world.md b/content/reading/list/world-behind-the-world.md @@ -1,6 +1,5 @@ +++ title = "World Behind the World" -date = 2023-11-03 weight = 0 [extra] book = "The World Behind the World" diff --git a/content/reading/now/carbon-almanac.md b/content/reading/now/carbon-almanac.md @@ -1,6 +1,5 @@ +++ title = "Carbon Almanac" -date = 2023-08-25 weight = 3 [extra] book = "Carbon Almanac" diff --git a/content/reading/now/dune.md b/content/reading/now/dune.md @@ -1,6 +1,5 @@ +++ title = "Dune" -date = 2023-11-03 weight = 0 [extra] book = "Dune" diff --git a/content/reading/now/hypermedia-systems.md b/content/reading/now/hypermedia-systems.md @@ -1,6 +1,5 @@ +++ title = "Hypermedia Systems" -date = 2023-12-19 weight = 2 [extra] book = "Hypermedia Systems" diff --git a/content/reading/now/subtle-art-of-not-giving-a-fuck.md b/content/reading/now/subtle-art-of-not-giving-a-fuck.md @@ -1,6 +1,5 @@ +++ title = "The Subtle Art of Not Giving a Fuck" -date = 2023-09-15 weight = 1 [extra] book = "The Subtle Art of Not Giving a Fuck" diff --git a/templates/index.html b/templates/index.html @@ -9,9 +9,7 @@ <link rel="stylesheet" href="{{ get_url(path="global.css") }}"> <link rel="me" href="https://fosstodon.org/@FIGBERT"> - <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="posts/atom.xml") }}" title="Posts :: {{ config.title }}"> - <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="projects/atom.xml") }}" title="Projects :: {{ config.title }}"> - <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="reading/atom.xml") }}" title="Reading :: {{ config.title }}"> + <link type="application/atom+xml" rel="alternate" href="{{ get_url(path="atom.xml", trailing_slash=false) }}" title="{{ config.title }}"> <meta name="description" content="{% if page.description %}{{ page.description | safe }}{% else %}{{ config.description }}{% endif %}"> <meta property="og:title" content="{% if page.title %}{{ page.title | safe }} :: {% endif %}{{ config.title }}">