Anna Aurora's personal website's source code.
Anna Aurora's website contains her the her Linux journey, her software recommendations, her blog, her artwork, links to her online accounts which includes ways to contact her and one of her games.
The compiled site can be found at https://annaaurora.eu of course or by compiling it yourself.
The compilation tools are defined by the nativeBuildInputs
on line 27 of flake.nix
.
To start a shell with all the compilation tools do
nix develop
and after that do
zola serve
to start a development webserver of the website. Note that all the stuff the the compilation does like the lossy artwork images and music is missing on the website served by Zola. To have all the stuff and the compilation tools follow Compiling and then run the command again.
You could also do other stuff with the compilation tools I guess like testing out which audio format takes up the least space for my songs with FFmpeg.
nix build --verbose ".?submodules=1"
In short, the above command runs all the shell commands in the buildPhase
on line 35 of flake.nix
with the compilation tools installed and the inputs
on line 4 of flake.nix
downloaded. The compiled website is then in result
.
In short, the Zola static website generator compiles the Markdown, Tera templates and Sass to HTML and CSS. Then some images and audio is generated and the site is polished.
If you have something that you think should be on this website, found any security issues or whatever else please open an issue, contact me or open a Pull Request.
©️ 2022 Anna Aurora Neugebauer
By default everything in this repository is licensed under the CC BY-SA 4.0. Here is human-readable summary of the license.
However, if a file has a comment in it with a license statement or if a folder has a license file in it then the default license is overwritten for the respective files or folders.