diff --git a/config.toml b/config.toml index 28a856e..5cd0894 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,9 @@ # The URL the site will be built for base_url = "https://dandellion.xyz" +title = "Daniel Olsen" +description = "Daniel Olsen's blog" + generate_feed = true # Whether to automatically compile all Sass files in the sass directory diff --git a/content/unordered.md b/content/unordered.md index e9cd79d..b562434 100644 --- a/content/unordered.md +++ b/content/unordered.md @@ -71,7 +71,7 @@ We first remove from \\(a_n\\) from \\(u\\): Then we do just the same thing as in we did to find \\(a\\), but this time we change the base similarly to how we did it when we encoded, we're just dividing instead of multiplying. -NB: $a_u$ the "unordered" "\\(a\\)" is what's being used here, NOT the original \\(a\\). +NB: \\(a_u\\) the "unordered" "\\(a\\)" is what's being used here, NOT the original \\(a\\). {% katex(block=true) %} \begin{alignedat}{2} diff --git a/default.nix b/default.nix deleted file mode 100644 index 2279c57..0000000 --- a/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -with import (import ./nix/sources.nix {}).nixpkgs {}; -let - even = pkgs.fetchFromGitHub { - owner = "getzola"; - repo = "even"; - rev = "fc64c3a64c6f00951cb8d411a2dc5e9444717b7d"; - sha256 = "0cjzs2dvna6sa98qjr1wzyw8z7xaw4f61izglq7z882myck94yl3"; - }; -in -stdenv.mkDerivation { - name = "dandellion-xyz"; - version = "2021-03-01"; - nativeBuildInputs = [ pkgs.zola ]; - -# src = pkgs.fetchFromGitHub { -# owner = "dali99"; -# repo = "dandellion-xyz"; -# rev = "1bcb64c6208ad448dcbedba3cd372735196535db"; -# sha256 = lib.fakeSha256; -# }; - - src = ./.; - - buildPhase = '' - mkdir themes - ln -s ${even} themes/even - zola build - ''; - - installPhase = '' - mkdir -p $out - mv public/* $out/ - ''; - -}