diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-04 19:55:33 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-04 20:01:11 +0100 |
commit | 7bf172af8d52f9d5174bf9493a0f20ca56e1b387 (patch) | |
tree | 80dfcc0dcbc35bcbd492dd26a3f30df4fc0b30f9 | |
parent | feat(src): Improve index.html and add a style.css (diff) | |
download | b-peetz.de-7bf172af8d52f9d5174bf9493a0f20ca56e1b387.zip |
refactor(src/writings): Rename from `dead-trees`
These are severed as PDFs, thus calling them dead-tree things is just wrong because that's a reference to actual paper.
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 10 | ||||
-rw-r--r-- | src/index.html | 2 | ||||
-rw-r--r-- | src/writings/index.html (renamed from src/dead-trees/index.html) | 2 |
3 files changed, 8 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix index 950835d..20a964b 100644 --- a/flake.nix +++ b/flake.nix @@ -124,13 +124,15 @@ nativeBuildInputs = []; buildPhase = '' - install -D ${essay.outputs.packages."${system}".default}/philosophy/kant_and_free_software.pdf ./dead-trees/philosophy/kant_and_free_software.pdf + install -D ${essay.outputs.packages."${system}".default}/philosophy/kant_and_free_software.pdf ./writings/philosophy/kant_and_free_software.pdf # NOTE: This link is for backward compatibility, as I have given out links with that url <2024-07-13> - ln --symbolic --relative ./dead-trees/philosophy/kant_and_free_software.pdf ./dead-trees/kant_and_free_software.pdf + ln --symbolic --relative ./writings/philosophy/kant_and_free_software.pdf ./dead-trees/kant_and_free_software.pdf + ln --symbolic --relative ./writings/philosophy/kant_and_free_software.pdf ./dead-trees/philosophy/kant_and_free_software.pdf - install -D ${facharbeit.outputs.packages."${system}".default}/chemistry/facharbeit.pdf ./dead-trees/chemistry/facharbeit.pdf + install -D ${facharbeit.outputs.packages."${system}".default}/chemistry/facharbeit.pdf ./writings/chemistry/facharbeit.pdf # NOTE: This link is for backward compatibility, as I have given out links with that url <2024-07-13> - ln --symbolic --relative ./dead-trees/chemistry/facharbeit.pdf ./dead-trees/raman_spectrometer.pdf + ln --symbolic --relative ./writings/chemistry/facharbeit.pdf ./dead-trees/raman_spectrometer.pdf + ln --symbolic --relative ./writings/chemistry/facharbeit.pdf ./dead-trees/chemistry/facharbeit.pdf install -D ${essens_analyse.outputs.packages."${system}".default}/chemistry/essens_analyse.pdf ./dead-trees/chemistry/essens_analyse.pdf ''; diff --git a/src/index.html b/src/index.html index a2cd076..63f1039 100644 --- a/src/index.html +++ b/src/index.html @@ -8,6 +8,6 @@ </head> <body> <h1>Hi!</h1> - <p>For a list of my dead-tree (i.e. paper) projects look <a href="./dead-trees/index.html">here</a></p> + <p>For a list of my written things look <a href="./writings/index.html">here</a></p> </body> </html> diff --git a/src/dead-trees/index.html b/src/writings/index.html index 0e34505..e055be2 100644 --- a/src/dead-trees/index.html +++ b/src/writings/index.html @@ -1,6 +1,6 @@ <html> <body> - <h1>My paper like things, provided in the portable document format</h1> + <h1>My paper like things, provided in the portable document format (pdf)</h1> <ul> <li><a href="./philosophy/kant_and_free_software.pdf">My essay on free software and Kantian ethics</a></li> <li><a href="./chemistry/facharbeit.pdf">My 'Facharbeit' on Raman Spektrometrie</a></li> |