this repo has no description

split up about this one and about this site

0xda157 609f93fe af832232

+62 -27
+2
config.toml
··· 40 40 41 41 nav = [ 42 42 { url = "/", name = "home" }, 43 + { url = "/this-one", name = "this-one" }, 44 + { url = "/this-site", name = "this-site" }, 43 45 { url = "/links", name = "links" }, 44 46 { url = "/projects", name = "projects" }, 45 47 { url = "/tools", name = "tools" },
+5 -25
content/_index.md
··· 7 7 # hiiii! :3 8 8 9 9 this is daisy's website! she's working on expaning it, in the mean time 10 - checkout her [projects](@/projects/index.md) and [tools it uses](@/tools/index.md). 11 - 12 - ## about this one {#this-one} 13 - 14 - this one is refered to as daisy in speach, and goes by `da157/0xda157/893271` 15 - (pronounced daisy) online[^1]. 16 - its uuid identifier is `da157dc4-31c7-4c6a-a168-e5aea24aba5c`. 17 - 18 - [^1]: it was previously known by the alias awwpotato online, but this is now 19 - deprecated. do not refer to this one as awwpotato. 20 - 21 - this one uses she/her or it/its pronouns (with no preference). `$READER` should 22 - refered to it in either the 2nd or 3rd person, this one likes a mix but using 23 - only way is perfectly fine. in some spaces it may choose to only use she/her 24 - pronouns and speak in the first person to prevent confusion/avoid explaining to 25 - people or if it feels unsafe. 26 - 27 - ## about this site {#this-site} 10 + checkout out 28 11 29 - it is built using [zola](https://getzola.org), with html templates written in 30 - [tera](https://keats.github.io/tera) and sass for the styling. this website uses 31 - no javascript or wasm at time of writting. once pushed to the `main` branch 32 - a [forgejo action](https://code.forgejo.org/actions) runs which builds the website 33 - using [nix](https://nixos.org) ([which builds this site using zola](https://codeberg.org/da157/website/src/commit/9f03fdf0a20c7df8f1922ebd2c61f89641e075e8/package.nix)) 34 - and pushes the result to the `pages` branch, where [codeberg pages](https://codeberg.page) 35 - looks for files to host. 12 + - [about this one](@/this-one/index.md) 13 + - [about this site](@/this-site/index.md) 14 + - [projects](@/projects/index.md) 15 + - [tools it uses](@/tools/index.md) 36 16 37 17 ## badges 38 18
+42
content/this-one/index.md
··· 1 + +++ 2 + title = "this one" 3 + +++ 4 + 5 + it is referred to as daisy, and goes by `da157/0xda157/893271` (pronounced daisy) 6 + online[^1]. its uuid identifier is `da157dc4-31c7-4c6a-a168-e5aea24aba5c`. 7 + 8 + [^1]: it was previously known by the alias awwpotato online, but this is now 9 + deprecated. do not refer to this one as awwpotato. 10 + 11 + this one uses she/her or it/its pronouns (with no preference). `$READER` should 12 + referred to it in either the 2nd or 3rd person, this one likes a mix but using 13 + only way is perfectly fine. in some spaces it may choose to only use she/her 14 + pronouns and speak in the first person to prevent confusion/avoid explaining to 15 + people or if it feels unsafe. 16 + 17 + (the below lists are not comprehensive) 18 + 19 + ### likes 20 + 21 + - fweinds :3 22 + - `YYYY-MM-DD` date format 23 + - digital 24-hour clocks 24 + - unix-like operating systems 25 + - functional programming 26 + - errors as values 27 + - modal editors 28 + - e2e encryption 29 + - iced drinks (especially an iced oatmilk latte) 30 + 31 + ### dislikes 32 + 33 + - yaml 34 + - hot drinks (most of the time) 35 + - none vegetarian food 36 + - wysiwyg text editing (google docs, microsoft word, etc) 37 + - canvas lms 38 + - centralized social media 39 + - restrictions on access to the internet and usage of e2e encryption 40 + - election 41 + - the matrix protocol 42 + - inconsistent food texture
+11
content/this-site/index.md
··· 1 + +++ 2 + title = "this site" 3 + +++ 4 + 5 + it is built using [zola](https://getzola.org), with html templates written in 6 + [tera](https://keats.github.io/tera) and sass for the styling. this website uses 7 + no javascript or wasm at time of writting. once pushed to the `main` branch 8 + a [forgejo action](https://code.forgejo.org/actions) runs which builds the website 9 + using [nix](https://nixos.org) ([which builds this site using zola](https://codeberg.org/da157/website/src/commit/9f03fdf0a20c7df8f1922ebd2c61f89641e075e8/package.nix)) 10 + and pushes the result to the `pages` branch, where [codeberg pages](https://codeberg.page) 11 + looks for files to host.
+2 -2
templates/partials/nav.html
··· 1 1 <nav> 2 - <div class="nav-section"> 2 + <div class="nav-section nav-links"> 3 3 {%- for link in config.extra.nav -%} 4 4 <a href="{{ link.url }}">{{ link.name }}</a> 5 5 {%- endfor -%} 6 6 </div> 7 - <div class="nav-section"> 7 + <div class="nav-section nav-dollcode"> 8 8 <span class="dollcode">▖▖▘▘▌▘▌▌▘▘▘▌▌</span> 9 9 </div> 10 10 </nav>