My personal blog hauleth.dev
blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: update Zola and fix caret placement in blockquotes

+13 -9
+1 -1
config.toml
··· 8 8 9 9 theme = "zerm" 10 10 11 - generate_feed = true 11 + generate_feeds = true 12 12 minify_html = true 13 13 14 14 taxonomies = [
+7 -7
flake.lock
··· 5 5 "systems": "systems" 6 6 }, 7 7 "locked": { 8 - "lastModified": 1705309234, 9 - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", 8 + "lastModified": 1710146030, 9 + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", 10 10 "owner": "numtide", 11 11 "repo": "flake-utils", 12 - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", 12 + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", 13 13 "type": "github" 14 14 }, 15 15 "original": { ··· 20 20 }, 21 21 "nixpkgs": { 22 22 "locked": { 23 - "lastModified": 1704842529, 24 - "narHash": "sha256-OTeQA+F8d/Evad33JMfuXC89VMetQbsU4qcaePchGr4=", 25 - "path": "/nix/store/g16z4fs1mrbkxc4x6wm8xbrh13nc7aw4-source", 26 - "rev": "eabe8d3eface69f5bb16c18f8662a702f50c20d5", 23 + "lastModified": 1725194671, 24 + "narHash": "sha256-tLGCFEFTB5TaOKkpfw3iYT9dnk4awTP/q4w+ROpMfuw=", 25 + "path": "/nix/store/9qq0zf30wi74pz66rr05zmxq0nv17q1p-source", 26 + "rev": "b833ff01a0d694b910daca6e2ff4a3f26dee478c", 27 27 "type": "path" 28 28 }, 29 29 "original": {
+3
netlify.toml
··· 2 2 command = "zola build" 3 3 publish = "public/" 4 4 5 + [build.environment] 6 + ZOLA_VERSION = "0.19.2" 7 + 5 8 [context.deploy-preview] 6 9 command = "zola build --drafts --base-url $DEPLOY_PRIME_URL" 7 10
+1
sass/_main.scss
··· 167 167 display: block; 168 168 position: absolute; 169 169 left: -25px; 170 + top: .1em; 170 171 color: var(--accent); 171 172 } 172 173 }
+1 -1
templates/index.html
··· 5 5 6 6 {% block rss %} 7 7 {%- if config.generate_feed -%} 8 - <link rel="alternate" type="application/atom+xml" title="{{ config.title }} Feed" href="{{ get_url(path=config.feed_filename) | safe}}"> 8 + <link rel="alternate" type="application/atom+xml" title="{{ config.title }} Feed" href="{{ get_url(path="atom.xml", trailing_slash=false) }}"> 9 9 {%- endif -%} 10 10 {% endblock rss %} 11 11