Set title and description

This commit is contained in:
2021-03-01 20:58:39 +01:00
parent 30475c441c
commit 65eb7f9fcf
3 changed files with 4 additions and 36 deletions
+3
View File
@@ -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
+1 -1
View File
@@ -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}
-35
View File
@@ -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/
'';
}