From 934c391a92ba7fe63653a78fec5ae586fb530f5f Mon Sep 17 00:00:00 2001 From: Fiscal Velvet Poet Date: Tue, 9 Jan 2024 14:19:49 +1000 Subject: [PATCH] Migrated to Reciproka Kolectiva resolves #3 --- LICENSE | 2 +- README.rst | 10 +++++----- posts/1902-05-01-mutual-aid.rst | 2 +- site.hs | 10 +++++----- skeleton-web.nix | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/LICENSE b/LICENSE index 5087214..d1b275c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ ANARCHIST LICENSE Version 1.0, 1 May, 2021 -Copyright © 2024 JFDI Collective +Copyright © 2024 Reciproka Kolectiva This is Anarchist software, released for free use by individuals and organizations that do not operate by capitalist principles. diff --git a/README.rst b/README.rst index 6841913..3b4763b 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,10 @@ -JFDIC Web -========= +Hakyll Skeleton +=============== -Website configuration for the `JFDI Collective`_. +Hakyll skeleton configuration for `Reciproka Kolectiva`_. The canonical home for this repo is -https://source.jfdic.org/jfdic/jfdic-web +https://reciproka.dev/reciproka/hakyll-skeleton .. _NixOps: https://nixos.org/nixops -.. _JFDI Collective: https://jfdic.org/ +.. _Reciproka Kolectiva: https://reciproka.co/ diff --git a/posts/1902-05-01-mutual-aid.rst b/posts/1902-05-01-mutual-aid.rst index 92aa259..4027dff 100644 --- a/posts/1902-05-01-mutual-aid.rst +++ b/posts/1902-05-01-mutual-aid.rst @@ -1,7 +1,7 @@ --- title: "Mutual Aid: A Factor Of Evolution" author: Pyotr Kropotkin -tags: jfdi +tags: reciproka --- Each time, however, that an attempt to return to this old principle was made, diff --git a/site.hs b/site.hs index 1427ec1..cb2bb83 100644 --- a/site.hs +++ b/site.hs @@ -121,8 +121,8 @@ feedConfig = FeedConfiguration { feedTitle = "Skeleton Site" , feedDescription = "you should set this feed description" , feedAuthorName = "set this name" - , feedAuthorEmail = "collective@jfdic.org" - , feedRoot = "https://skeleton.jfdic.org" + , feedAuthorEmail = "kolectiva@reciproka.co" + , feedRoot = "https://skeleton.reciproka.co" } -------------------------------------------------------------------------------- @@ -131,15 +131,15 @@ siteCtx :: Context String siteCtx = baseCtx `mappend` constField "site_description" "Skeleton Site" `mappend` - constField "site-url" "https://skeleton.jfdic.org" `mappend` + constField "site-url" "https://skeleton.reciproka.co" `mappend` constField "tagline" "you should set this tag line" `mappend` constField "site-title" "Skeleton Site" `mappend` constField "copy-year" "2024" `mappend` - constField "github-repo" "https://source.jfdic.org/jfdic/hakyll-skeleton" `mappend` + constField "github-repo" "https://reciproka.dev/reciproka/hakyll-skeleton" `mappend` defaultContext baseCtx = - constField "baseurl" "https://skeleton.jfdic.org" + constField "baseurl" "https://skeleton.reciproka.co" -------------------------------------------------------------------------------- diff --git a/skeleton-web.nix b/skeleton-web.nix index ec5fd02..5d6b33a 100644 --- a/skeleton-web.nix +++ b/skeleton-web.nix @@ -1,6 +1,6 @@ { mkDerivation, base, hakyll, stdenv }: mkDerivation { - pname = "jfdic-web"; + pname = "skeleton-web"; version = "0.1.0.0"; src = ./.; isLibrary = false;