diff --git a/config.toml b/config.toml index 1a54659..f65b2e0 100644 --- a/config.toml +++ b/config.toml @@ -8,18 +8,16 @@ theme = "hermit_zola" # Whether to automatically compile all Sass files in the sass directory compile_sass = true -# Whether to do syntax highlighting -# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola -highlight_code = true - # Whether to build a search index to be used later on by a JavaScript library build_search_index = false -generate_feed = true +generate_feeds = true feed_limit = 250 [markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true highlight_theme = "charcoal" diff --git a/content/bible_journal/_index.md b/content/bible_journal/_index.md index 0cec437..b191058 100644 --- a/content/bible_journal/_index.md +++ b/content/bible_journal/_index.md @@ -2,7 +2,7 @@ title = "Bible Journal" sort_by = "date" paginate_by = 250 -generate_feed = true +generate_feeds = true +++ As a method of accountability, a way to spark conversation, and hopefully a diff --git a/flake.lock b/flake.lock index 4a0eb85..8966cbc 100644 --- a/flake.lock +++ b/flake.lock @@ -1,12 +1,15 @@ { "nodes": { "flake-utils": { + "inputs": { + "systems": "systems" + }, "locked": { - "lastModified": 1659877975, - "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=", + "lastModified": 1731533236, + "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", "owner": "numtide", "repo": "flake-utils", - "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0", + "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", "type": "github" }, "original": { @@ -18,31 +21,31 @@ "hermit-zola": { "flake": false, "locked": { - "lastModified": 1649343104, - "narHash": "sha256-tiry4rMOnduQ2JtnpgxRqBsMLICr7JuxaMlONGfwSpA=", - "owner": "VersBinarii", + "lastModified": 1750874243, + "narHash": "sha256-AZhjZEQF7EqTtnffdQ3RRBGllHPxZhRVoOLVUUf/Pjc=", + "owner": "IslandUsurper", "repo": "hermit_zola", - "rev": "36009d83123a83ca2a06af36bbc01a6d4bd10ae6", + "rev": "7e651881f7c8d987000e478e7bd0cc31b8316f44", "type": "github" }, "original": { - "owner": "VersBinarii", + "owner": "IslandUsurper", "repo": "hermit_zola", "type": "github" } }, "nixpkgs": { "locked": { - "lastModified": 1665763903, - "narHash": "sha256-znGWY4x688cZ3Ii01qLnhl+mSKpQ9iCufGxfdV6oBOc=", + "lastModified": 1750622754, + "narHash": "sha256-kMhs+YzV4vPGfuTpD3mwzibWUE6jotw5Al2wczI0Pv8=", "owner": "nixos", "repo": "nixpkgs", - "rev": "78a37aa630faa41944060a966607d4f1128ea94b", + "rev": "c7ab75210cb8cb16ddd8f290755d9558edde7ee1", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-22.05", + "ref": "nixos-25.05", "repo": "nixpkgs", "type": "github" } @@ -53,6 +56,21 @@ "hermit-zola": "hermit-zola", "nixpkgs": "nixpkgs" } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 1feba0f..8575ca0 100644 --- a/flake.nix +++ b/flake.nix @@ -1,9 +1,9 @@ { description = "Annotated Annals: A blog"; - inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05"; + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05"; inputs.flake-utils.url = "github:numtide/flake-utils"; - inputs.hermit-zola = { url = "github:VersBinarii/hermit_zola"; flake = false; }; + inputs.hermit-zola = { url = "github:IslandUsurper/hermit_zola"; flake = false; }; outputs = { self, nixpkgs, flake-utils, hermit-zola }: flake-utils.lib.eachDefaultSystem (system: diff --git a/templates/index.html b/templates/index.html index 1d203da..c10eab8 100644 --- a/templates/index.html +++ b/templates/index.html @@ -27,8 +27,8 @@ {% endif %} {% block feed %} - {% if config.generate_feed %} - + {% if config.generate_feeds %} + {% endif %} {% endblock feed %} @@ -59,8 +59,8 @@