this repo has no description

init

awwpotato b72ec1f4

+2574
+3
.domains
··· 1 + awwpotato.xyz 2 + website.awwpotato.codeberg.page 3 + pages.website.awwpotato.codeberg.page
+10
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + end_of_line = lf 5 + insert_final_newline = true 6 + indent_style = space 7 + indent_size = 4 8 + 9 + [*.{css,nix}] 10 + indent_size = 2
+35
.forgejo/workflows/build.yml
··· 1 + name: Build Site 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + build: 10 + runs-on: codeberg-tiny 11 + steps: 12 + - uses: https://github.com/actions/checkout@v4 13 + with: 14 + submodules: recursive 15 + - name: Install Zola 16 + uses: https://github.com/taiki-e/install-action@v2 17 + with: 18 + tool: zola@0.20.0 19 + - name: Build 20 + run: zola build 21 + - name: Checkout branch 22 + run: | 23 + git fetch 24 + git checkout pages 25 + - name: Remove old files 26 + run: | 27 + ls -A | grep -v "public\|\.domains\|\.git.*" | xargs rm -rf 28 + mv -u public/* ./ 29 + - name: Commit Results 30 + run: | 31 + git config user.email ${{ secrets.MAIL }} 32 + git config user.name "Forgejo Actions" 33 + git add . 34 + git commit -m "Build Action ${{ env.GITHUB_SHA }}" 35 + git push origin pages
+1
.gitignore
··· 1 + public
+3
.gitmodules
··· 1 + [submodule "anemone"] 2 + path = themes/anemone 3 + url = https://github.com/Speyll/anemone
+428
LICENSE
··· 1 + Attribution-ShareAlike 4.0 International 2 + 3 + ======================================================================= 4 + 5 + Creative Commons Corporation ("Creative Commons") is not a law firm and 6 + does not provide legal services or legal advice. Distribution of 7 + Creative Commons public licenses does not create a lawyer-client or 8 + other relationship. Creative Commons makes its licenses and related 9 + information available on an "as-is" basis. Creative Commons gives no 10 + warranties regarding its licenses, any material licensed under their 11 + terms and conditions, or any related information. Creative Commons 12 + disclaims all liability for damages resulting from their use to the 13 + fullest extent possible. 14 + 15 + Using Creative Commons Public Licenses 16 + 17 + Creative Commons public licenses provide a standard set of terms and 18 + conditions that creators and other rights holders may use to share 19 + original works of authorship and other material subject to copyright 20 + and certain other rights specified in the public license below. The 21 + following considerations are for informational purposes only, are not 22 + exhaustive, and do not form part of our licenses. 23 + 24 + Considerations for licensors: Our public licenses are 25 + intended for use by those authorized to give the public 26 + permission to use material in ways otherwise restricted by 27 + copyright and certain other rights. Our licenses are 28 + irrevocable. Licensors should read and understand the terms 29 + and conditions of the license they choose before applying it. 30 + Licensors should also secure all rights necessary before 31 + applying our licenses so that the public can reuse the 32 + material as expected. Licensors should clearly mark any 33 + material not subject to the license. This includes other CC- 34 + licensed material, or material used under an exception or 35 + limitation to copyright. More considerations for licensors: 36 + wiki.creativecommons.org/Considerations_for_licensors 37 + 38 + Considerations for the public: By using one of our public 39 + licenses, a licensor grants the public permission to use the 40 + licensed material under specified terms and conditions. If 41 + the licensor's permission is not necessary for any reason--for 42 + example, because of any applicable exception or limitation to 43 + copyright--then that use is not regulated by the license. Our 44 + licenses grant only permissions under copyright and certain 45 + other rights that a licensor has authority to grant. Use of 46 + the licensed material may still be restricted for other 47 + reasons, including because others have copyright or other 48 + rights in the material. A licensor may make special requests, 49 + such as asking that all changes be marked or described. 50 + Although not required by our licenses, you are encouraged to 51 + respect those requests where reasonable. More considerations 52 + for the public: 53 + wiki.creativecommons.org/Considerations_for_licensees 54 + 55 + ======================================================================= 56 + 57 + Creative Commons Attribution-ShareAlike 4.0 International Public 58 + License 59 + 60 + By exercising the Licensed Rights (defined below), You accept and agree 61 + to be bound by the terms and conditions of this Creative Commons 62 + Attribution-ShareAlike 4.0 International Public License ("Public 63 + License"). To the extent this Public License may be interpreted as a 64 + contract, You are granted the Licensed Rights in consideration of Your 65 + acceptance of these terms and conditions, and the Licensor grants You 66 + such rights in consideration of benefits the Licensor receives from 67 + making the Licensed Material available under these terms and 68 + conditions. 69 + 70 + 71 + Section 1 -- Definitions. 72 + 73 + a. Adapted Material means material subject to Copyright and Similar 74 + Rights that is derived from or based upon the Licensed Material 75 + and in which the Licensed Material is translated, altered, 76 + arranged, transformed, or otherwise modified in a manner requiring 77 + permission under the Copyright and Similar Rights held by the 78 + Licensor. For purposes of this Public License, where the Licensed 79 + Material is a musical work, performance, or sound recording, 80 + Adapted Material is always produced where the Licensed Material is 81 + synched in timed relation with a moving image. 82 + 83 + b. Adapter's License means the license You apply to Your Copyright 84 + and Similar Rights in Your contributions to Adapted Material in 85 + accordance with the terms and conditions of this Public License. 86 + 87 + c. BY-SA Compatible License means a license listed at 88 + creativecommons.org/compatiblelicenses, approved by Creative 89 + Commons as essentially the equivalent of this Public License. 90 + 91 + d. Copyright and Similar Rights means copyright and/or similar rights 92 + closely related to copyright including, without limitation, 93 + performance, broadcast, sound recording, and Sui Generis Database 94 + Rights, without regard to how the rights are labeled or 95 + categorized. For purposes of this Public License, the rights 96 + specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 + Rights. 98 + 99 + e. Effective Technological Measures means those measures that, in the 100 + absence of proper authority, may not be circumvented under laws 101 + fulfilling obligations under Article 11 of the WIPO Copyright 102 + Treaty adopted on December 20, 1996, and/or similar international 103 + agreements. 104 + 105 + f. Exceptions and Limitations means fair use, fair dealing, and/or 106 + any other exception or limitation to Copyright and Similar Rights 107 + that applies to Your use of the Licensed Material. 108 + 109 + g. License Elements means the license attributes listed in the name 110 + of a Creative Commons Public License. The License Elements of this 111 + Public License are Attribution and ShareAlike. 112 + 113 + h. Licensed Material means the artistic or literary work, database, 114 + or other material to which the Licensor applied this Public 115 + License. 116 + 117 + i. Licensed Rights means the rights granted to You subject to the 118 + terms and conditions of this Public License, which are limited to 119 + all Copyright and Similar Rights that apply to Your use of the 120 + Licensed Material and that the Licensor has authority to license. 121 + 122 + j. Licensor means the individual(s) or entity(ies) granting rights 123 + under this Public License. 124 + 125 + k. Share means to provide material to the public by any means or 126 + process that requires permission under the Licensed Rights, such 127 + as reproduction, public display, public performance, distribution, 128 + dissemination, communication, or importation, and to make material 129 + available to the public including in ways that members of the 130 + public may access the material from a place and at a time 131 + individually chosen by them. 132 + 133 + l. Sui Generis Database Rights means rights other than copyright 134 + resulting from Directive 96/9/EC of the European Parliament and of 135 + the Council of 11 March 1996 on the legal protection of databases, 136 + as amended and/or succeeded, as well as other essentially 137 + equivalent rights anywhere in the world. 138 + 139 + m. You means the individual or entity exercising the Licensed Rights 140 + under this Public License. Your has a corresponding meaning. 141 + 142 + 143 + Section 2 -- Scope. 144 + 145 + a. License grant. 146 + 147 + 1. Subject to the terms and conditions of this Public License, 148 + the Licensor hereby grants You a worldwide, royalty-free, 149 + non-sublicensable, non-exclusive, irrevocable license to 150 + exercise the Licensed Rights in the Licensed Material to: 151 + 152 + a. reproduce and Share the Licensed Material, in whole or 153 + in part; and 154 + 155 + b. produce, reproduce, and Share Adapted Material. 156 + 157 + 2. Exceptions and Limitations. For the avoidance of doubt, where 158 + Exceptions and Limitations apply to Your use, this Public 159 + License does not apply, and You do not need to comply with 160 + its terms and conditions. 161 + 162 + 3. Term. The term of this Public License is specified in Section 163 + 6(a). 164 + 165 + 4. Media and formats; technical modifications allowed. The 166 + Licensor authorizes You to exercise the Licensed Rights in 167 + all media and formats whether now known or hereafter created, 168 + and to make technical modifications necessary to do so. The 169 + Licensor waives and/or agrees not to assert any right or 170 + authority to forbid You from making technical modifications 171 + necessary to exercise the Licensed Rights, including 172 + technical modifications necessary to circumvent Effective 173 + Technological Measures. For purposes of this Public License, 174 + simply making modifications authorized by this Section 2(a) 175 + (4) never produces Adapted Material. 176 + 177 + 5. Downstream recipients. 178 + 179 + a. Offer from the Licensor -- Licensed Material. Every 180 + recipient of the Licensed Material automatically 181 + receives an offer from the Licensor to exercise the 182 + Licensed Rights under the terms and conditions of this 183 + Public License. 184 + 185 + b. Additional offer from the Licensor -- Adapted Material. 186 + Every recipient of Adapted Material from You 187 + automatically receives an offer from the Licensor to 188 + exercise the Licensed Rights in the Adapted Material 189 + under the conditions of the Adapter's License You apply. 190 + 191 + c. No downstream restrictions. You may not offer or impose 192 + any additional or different terms or conditions on, or 193 + apply any Effective Technological Measures to, the 194 + Licensed Material if doing so restricts exercise of the 195 + Licensed Rights by any recipient of the Licensed 196 + Material. 197 + 198 + 6. No endorsement. Nothing in this Public License constitutes or 199 + may be construed as permission to assert or imply that You 200 + are, or that Your use of the Licensed Material is, connected 201 + with, or sponsored, endorsed, or granted official status by, 202 + the Licensor or others designated to receive attribution as 203 + provided in Section 3(a)(1)(A)(i). 204 + 205 + b. Other rights. 206 + 207 + 1. Moral rights, such as the right of integrity, are not 208 + licensed under this Public License, nor are publicity, 209 + privacy, and/or other similar personality rights; however, to 210 + the extent possible, the Licensor waives and/or agrees not to 211 + assert any such rights held by the Licensor to the limited 212 + extent necessary to allow You to exercise the Licensed 213 + Rights, but not otherwise. 214 + 215 + 2. Patent and trademark rights are not licensed under this 216 + Public License. 217 + 218 + 3. To the extent possible, the Licensor waives any right to 219 + collect royalties from You for the exercise of the Licensed 220 + Rights, whether directly or through a collecting society 221 + under any voluntary or waivable statutory or compulsory 222 + licensing scheme. In all other cases the Licensor expressly 223 + reserves any right to collect such royalties. 224 + 225 + 226 + Section 3 -- License Conditions. 227 + 228 + Your exercise of the Licensed Rights is expressly made subject to the 229 + following conditions. 230 + 231 + a. Attribution. 232 + 233 + 1. If You Share the Licensed Material (including in modified 234 + form), You must: 235 + 236 + a. retain the following if it is supplied by the Licensor 237 + with the Licensed Material: 238 + 239 + i. identification of the creator(s) of the Licensed 240 + Material and any others designated to receive 241 + attribution, in any reasonable manner requested by 242 + the Licensor (including by pseudonym if 243 + designated); 244 + 245 + ii. a copyright notice; 246 + 247 + iii. a notice that refers to this Public License; 248 + 249 + iv. a notice that refers to the disclaimer of 250 + warranties; 251 + 252 + v. a URI or hyperlink to the Licensed Material to the 253 + extent reasonably practicable; 254 + 255 + b. indicate if You modified the Licensed Material and 256 + retain an indication of any previous modifications; and 257 + 258 + c. indicate the Licensed Material is licensed under this 259 + Public License, and include the text of, or the URI or 260 + hyperlink to, this Public License. 261 + 262 + 2. You may satisfy the conditions in Section 3(a)(1) in any 263 + reasonable manner based on the medium, means, and context in 264 + which You Share the Licensed Material. For example, it may be 265 + reasonable to satisfy the conditions by providing a URI or 266 + hyperlink to a resource that includes the required 267 + information. 268 + 269 + 3. If requested by the Licensor, You must remove any of the 270 + information required by Section 3(a)(1)(A) to the extent 271 + reasonably practicable. 272 + 273 + b. ShareAlike. 274 + 275 + In addition to the conditions in Section 3(a), if You Share 276 + Adapted Material You produce, the following conditions also apply. 277 + 278 + 1. The Adapter's License You apply must be a Creative Commons 279 + license with the same License Elements, this version or 280 + later, or a BY-SA Compatible License. 281 + 282 + 2. You must include the text of, or the URI or hyperlink to, the 283 + Adapter's License You apply. You may satisfy this condition 284 + in any reasonable manner based on the medium, means, and 285 + context in which You Share Adapted Material. 286 + 287 + 3. You may not offer or impose any additional or different terms 288 + or conditions on, or apply any Effective Technological 289 + Measures to, Adapted Material that restrict exercise of the 290 + rights granted under the Adapter's License You apply. 291 + 292 + 293 + Section 4 -- Sui Generis Database Rights. 294 + 295 + Where the Licensed Rights include Sui Generis Database Rights that 296 + apply to Your use of the Licensed Material: 297 + 298 + a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 + to extract, reuse, reproduce, and Share all or a substantial 300 + portion of the contents of the database; 301 + 302 + b. if You include all or a substantial portion of the database 303 + contents in a database in which You have Sui Generis Database 304 + Rights, then the database in which You have Sui Generis Database 305 + Rights (but not its individual contents) is Adapted Material, 306 + including for purposes of Section 3(b); and 307 + 308 + c. You must comply with the conditions in Section 3(a) if You Share 309 + all or a substantial portion of the contents of the database. 310 + 311 + For the avoidance of doubt, this Section 4 supplements and does not 312 + replace Your obligations under this Public License where the Licensed 313 + Rights include other Copyright and Similar Rights. 314 + 315 + 316 + Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 + 318 + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 + 329 + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 + 339 + c. The disclaimer of warranties and limitation of liability provided 340 + above shall be interpreted in a manner that, to the extent 341 + possible, most closely approximates an absolute disclaimer and 342 + waiver of all liability. 343 + 344 + 345 + Section 6 -- Term and Termination. 346 + 347 + a. This Public License applies for the term of the Copyright and 348 + Similar Rights licensed here. However, if You fail to comply with 349 + this Public License, then Your rights under this Public License 350 + terminate automatically. 351 + 352 + b. Where Your right to use the Licensed Material has terminated under 353 + Section 6(a), it reinstates: 354 + 355 + 1. automatically as of the date the violation is cured, provided 356 + it is cured within 30 days of Your discovery of the 357 + violation; or 358 + 359 + 2. upon express reinstatement by the Licensor. 360 + 361 + For the avoidance of doubt, this Section 6(b) does not affect any 362 + right the Licensor may have to seek remedies for Your violations 363 + of this Public License. 364 + 365 + c. For the avoidance of doubt, the Licensor may also offer the 366 + Licensed Material under separate terms or conditions or stop 367 + distributing the Licensed Material at any time; however, doing so 368 + will not terminate this Public License. 369 + 370 + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 + License. 372 + 373 + 374 + Section 7 -- Other Terms and Conditions. 375 + 376 + a. The Licensor shall not be bound by any additional or different 377 + terms or conditions communicated by You unless expressly agreed. 378 + 379 + b. Any arrangements, understandings, or agreements regarding the 380 + Licensed Material not stated herein are separate from and 381 + independent of the terms and conditions of this Public License. 382 + 383 + 384 + Section 8 -- Interpretation. 385 + 386 + a. For the avoidance of doubt, this Public License does not, and 387 + shall not be interpreted to, reduce, limit, restrict, or impose 388 + conditions on any use of the Licensed Material that could lawfully 389 + be made without permission under this Public License. 390 + 391 + b. To the extent possible, if any provision of this Public License is 392 + deemed unenforceable, it shall be automatically reformed to the 393 + minimum extent necessary to make it enforceable. If the provision 394 + cannot be reformed, it shall be severed from this Public License 395 + without affecting the enforceability of the remaining terms and 396 + conditions. 397 + 398 + c. No term or condition of this Public License will be waived and no 399 + failure to comply consented to unless expressly agreed to by the 400 + Licensor. 401 + 402 + d. Nothing in this Public License constitutes or may be interpreted 403 + as a limitation upon, or waiver of, any privileges and immunities 404 + that apply to the Licensor or You, including from the legal 405 + processes of any jurisdiction or authority. 406 + 407 + 408 + ======================================================================= 409 + 410 + Creative Commons is not a party to its public 411 + licenses. Notwithstanding, Creative Commons may elect to apply one of 412 + its public licenses to material it publishes and in those instances 413 + will be considered the “Licensor.” The text of the Creative Commons 414 + public licenses is dedicated to the public domain under the CC0 Public 415 + Domain Dedication. Except for the limited purpose of indicating that 416 + material is shared under a Creative Commons public license or as 417 + otherwise permitted by the Creative Commons policies published at 418 + creativecommons.org/policies, Creative Commons does not authorize the 419 + use of the trademark "Creative Commons" or any other trademark or logo 420 + of Creative Commons without its prior written consent including, 421 + without limitation, in connection with any unauthorized modifications 422 + to any of its public licenses or any other arrangements, 423 + understandings, or agreements concerning use of licensed material. For 424 + the avoidance of doubt, this paragraph does not form part of the 425 + public licenses. 426 + 427 + Creative Commons may be contacted at creativecommons.org. 428 +
+38
config.toml
··· 1 + title = "awwpotato" 2 + base_url = "https://awwpotato.xyz" 3 + 4 + default_language = "en" 5 + 6 + compile_sass = true 7 + minify_html = true 8 + generate_feeds = true 9 + build_search_index = true 10 + feed_filenames = ["rss.xml", "atom.xml"] 11 + 12 + theme = "anemone" 13 + taxonomies = [{ name = "tags", feed = true }] 14 + 15 + [markdown] 16 + highlight_code = true 17 + highlight_theme = "material-dark" 18 + 19 + smart_punctuation = true 20 + bottom_footnotes = true 21 + 22 + [search] 23 + index_format = "elasticlunr_json" 24 + 25 + [extra] 26 + author = "awwpotato" 27 + favicon = "favicon.png" 28 + 29 + list_pages = false 30 + twitter_card = false 31 + enable_search = true 32 + 33 + header_nav = [ 34 + { url = "/", name_en = "/home/" }, 35 + { url = "/projects", name_en = "/projects/" }, 36 + { url = "/thingies", name_en = "/thingies/" }, 37 + { url = "/blog", name_en ="/blog/" }, 38 + ]
+26
content/_index.md
··· 1 + +++ 2 + title = "Home" 3 + +++ 4 + 5 + # Hiiii! :3 6 + 7 + I'm awwpotato, she/her (Daisy IRL), I'll be working on expanding this website. 8 + In the meantime checkout my [Projects](/projects) and [Thingies I Use](/thingies). 9 + 10 + ## About me 11 + 12 + Currently I'm on my school's first robotics team doing webdev. I've gone deep 13 + down the Linux rabbit hole, and have been thinking about self hosting some stuff. 14 + 15 + ### Likes 16 + - Linux and BSD 17 + - Open hardware/software 18 + - Decentralized stuff 19 + - Project that can be self-hosting 20 + - Me friends 21 + 22 + ### Dislikes 23 + - Homophobia, Transphobia, etc 24 + - Schoolwork 25 + - Centralized Social Media 26 + - Spyware
+3
content/blog/_index.md
··· 1 + +++ 2 + title = "Blog" 3 + +++
+7
content/blog/zola/index.md
··· 1 + +++ 2 + title = "Hello world from zola" 3 + description = "Switch this website to zola + duckquill" 4 + date = 2025-01-09 5 + +++ 6 + 7 + seems pretty good so far
+18
content/projects/index.md
··· 1 + +++ 2 + title = 'Projects' 3 + +++ 4 + 5 + ## Active 6 + - [potatofox](https://codeberg.org/awwpotato/PotatoFox) - firefox and sidebery css theme 7 + - [nix-config](https://codeberg.org/awwpotato/nix-config) - nixos and home manager configuration, has replaced my dotfiles for all of my machines 8 + - [nixvim](https://codeberg.org/awwpotato/nixvim) - my nixvim configuration 9 + - [website](https://codeberg.org/awwpotato/website) - Your here right now! 10 + 11 + ## Comp Sci 12 + I only work on these for a few weeks and then abandoned them 13 + - [word_frequencies](https://codeberg.org/awwpotato/word_frequencies) - analyzing the frequency of words in a piece of text and generating text based on that 14 + - [java-lists](https://codeberg.org/awwpotato/java-lists) - some diffrent lists implemented in java 15 + 16 + ## Archived 17 + - [minifox](https://codeberg.org/awwpotato/minifox) - minimal firefox css theme 18 + - [dotfiles](https://codeberg.org/awwpotato/dotfiles) - config files for my linux machines, replaced by nix-config
+18
content/thingies/index.md
··· 1 + +++ 2 + title = "Thingies I Use" 3 + +++ 4 + 5 + ## Software 6 + 7 + - [Librewolf](https://librewolf.net/) - Firefox fork with better defaults 8 + - [Libreboot](https://libreboot.org) - free/libre bios (no more spyware in your bios) 9 + - [Hyprland](https://hyprland.org/) - wayland tilling wm with fancy animations 10 + - [Nix](https://nixos.org) - declarative and reproducible stuff 11 + 12 + ## Hardware 13 + 14 + - [Framework 13](https://frame.work/products/laptop13-diy-intel-ultra-1) - repairable and upgradable laptop 15 + - [X1 Carbon gen 6](https://www.lenovo.com/us/en/p/laptops/thinkpad/thinkpadx1/thinkpad-x1-carbon-(6th-gen)/22tp2txx16g) - great second laptop, got mine for $120 16 + - [Thinkpad T480](https://www.lenovo.com/in/en/p/laptops/thinkpad/thinkpadt/thinkpad-t480/22tp2tt4800) - great _repairable_ second laptop, also around $120, [supported by libreboot](https://libreboot.org/docs/install/t480.html) 17 + - Random Office PC from 2017 - makes a great $50 server 18 +
+27
flake.lock
··· 1 + { 2 + "nodes": { 3 + "nixpkgs": { 4 + "locked": { 5 + "lastModified": 1751792365, 6 + "narHash": "sha256-J1kI6oAj25IG4EdVlg2hQz8NZTBNYvIS0l4wpr9KcUo=", 7 + "owner": "nixos", 8 + "repo": "nixpkgs", 9 + "rev": "1fd8bada0b6117e6c7eb54aad5813023eed37ccb", 10 + "type": "github" 11 + }, 12 + "original": { 13 + "owner": "nixos", 14 + "ref": "nixos-unstable", 15 + "repo": "nixpkgs", 16 + "type": "github" 17 + } 18 + }, 19 + "root": { 20 + "inputs": { 21 + "nixpkgs": "nixpkgs" 22 + } 23 + } 24 + }, 25 + "root": "root", 26 + "version": 7 27 + }
+28
flake.nix
··· 1 + { 2 + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 3 + 4 + outputs = 5 + { nixpkgs, ... }: 6 + let 7 + inherit (nixpkgs) lib; 8 + inherit (lib) genAttrs systems; 9 + forEachPkgs = f: genAttrs systems.flakeExposed (system: f nixpkgs.legacyPackages.${system}); 10 + in 11 + { 12 + packages = forEachPkgs (pkgs: { 13 + www = pkgs.stdenv.mkDerivation { 14 + pname = "awwpotatodotxyz"; 15 + version = "0"; 16 + 17 + src = ./.; 18 + 19 + nativeBuildInputs = [ pkgs.zola ]; 20 + 21 + buildPhase = '' 22 + zola build -o $out 23 + ''; 24 + dontInstall = true; 25 + }; 26 + }); 27 + }; 28 + }
static/apple-touch-icon.png

This is a binary file and will not be displayed.

static/badges/anything-but-chrome.gif

This is a binary file and will not be displayed.

static/badges/bring-back-the-headphone-jack.gif

This is a binary file and will not be displayed.

static/badges/duckduckgo.gif

This is a binary file and will not be displayed.

static/badges/right-to-repair.gif

This is a binary file and will not be displayed.

static/card.png

This is a binary file and will not be displayed.

static/favicon.png

This is a binary file and will not be displayed.

+46
templates/robots.txt
··· 1 + User-agent: * 2 + Allow: / 3 + 4 + User-agent: AI2Bot 5 + User-agent: Ai2Bot-Dolma 6 + User-agent: Amazonbot 7 + User-agent: anthropic-ai 8 + User-agent: Applebot-Extended 9 + User-agent: Bytespider 10 + User-agent: CCBot 11 + User-agent: ChatGPT-User 12 + User-agent: Claude-Web 13 + User-agent: ClaudeBot 14 + User-agent: cohere-ai 15 + User-agent: Diffbot 16 + User-agent: DuckAssistBot 17 + User-agent: FacebookBot 18 + User-agent: FriendlyCrawler 19 + User-agent: Google-Extended 20 + User-agent: GoogleOther 21 + User-agent: GoogleOther-Image 22 + User-agent: GoogleOther-Video 23 + User-agent: GPTBot 24 + User-agent: iaskspider/2.0 25 + User-agent: ICC-Crawler 26 + User-agent: ImagesiftBot 27 + User-agent: img2dataset 28 + User-agent: ISSCyberRiskCrawler 29 + User-agent: Kangaroo Bot 30 + User-agent: Meta-ExternalAgent 31 + User-agent: Meta-ExternalFetcher 32 + User-agent: OAI-SearchBot 33 + User-agent: omgili 34 + User-agent: omgilibot 35 + User-agent: PanguBot 36 + User-agent: PerplexityBot 37 + User-agent: PetalBot 38 + User-agent: Scrapy 39 + User-agent: Sidetrade indexer bot 40 + User-agent: Timpibot 41 + User-agent: VelenPublicWebCrawler 42 + User-agent: Webzio-Extended 43 + User-agent: YouBot 44 + User-agent: turnitinbot 45 + User-agent: Turnitin 46 + Disallow: /
+674
themes/anemone/LICENSE
··· 1 + GNU GENERAL PUBLIC LICENSE 2 + Version 3, 29 June 2007 3 + 4 + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> 5 + Everyone is permitted to copy and distribute verbatim copies 6 + of this license document, but changing it is not allowed. 7 + 8 + Preamble 9 + 10 + The GNU General Public License is a free, copyleft license for 11 + software and other kinds of works. 12 + 13 + The licenses for most software and other practical works are designed 14 + to take away your freedom to share and change the works. By contrast, 15 + the GNU General Public License is intended to guarantee your freedom to 16 + share and change all versions of a program--to make sure it remains free 17 + software for all its users. We, the Free Software Foundation, use the 18 + GNU General Public License for most of our software; it applies also to 19 + any other work released this way by its authors. You can apply it to 20 + your programs, too. 21 + 22 + When we speak of free software, we are referring to freedom, not 23 + price. Our General Public Licenses are designed to make sure that you 24 + have the freedom to distribute copies of free software (and charge for 25 + them if you wish), that you receive source code or can get it if you 26 + want it, that you can change the software or use pieces of it in new 27 + free programs, and that you know you can do these things. 28 + 29 + To protect your rights, we need to prevent others from denying you 30 + these rights or asking you to surrender the rights. Therefore, you have 31 + certain responsibilities if you distribute copies of the software, or if 32 + you modify it: responsibilities to respect the freedom of others. 33 + 34 + For example, if you distribute copies of such a program, whether 35 + gratis or for a fee, you must pass on to the recipients the same 36 + freedoms that you received. You must make sure that they, too, receive 37 + or can get the source code. And you must show them these terms so they 38 + know their rights. 39 + 40 + Developers that use the GNU GPL protect your rights with two steps: 41 + (1) assert copyright on the software, and (2) offer you this License 42 + giving you legal permission to copy, distribute and/or modify it. 43 + 44 + For the developers' and authors' protection, the GPL clearly explains 45 + that there is no warranty for this free software. For both users' and 46 + authors' sake, the GPL requires that modified versions be marked as 47 + changed, so that their problems will not be attributed erroneously to 48 + authors of previous versions. 49 + 50 + Some devices are designed to deny users access to install or run 51 + modified versions of the software inside them, although the manufacturer 52 + can do so. This is fundamentally incompatible with the aim of 53 + protecting users' freedom to change the software. The systematic 54 + pattern of such abuse occurs in the area of products for individuals to 55 + use, which is precisely where it is most unacceptable. Therefore, we 56 + have designed this version of the GPL to prohibit the practice for those 57 + products. If such problems arise substantially in other domains, we 58 + stand ready to extend this provision to those domains in future versions 59 + of the GPL, as needed to protect the freedom of users. 60 + 61 + Finally, every program is threatened constantly by software patents. 62 + States should not allow patents to restrict development and use of 63 + software on general-purpose computers, but in those that do, we wish to 64 + avoid the special danger that patents applied to a free program could 65 + make it effectively proprietary. To prevent this, the GPL assures that 66 + patents cannot be used to render the program non-free. 67 + 68 + The precise terms and conditions for copying, distribution and 69 + modification follow. 70 + 71 + TERMS AND CONDITIONS 72 + 73 + 0. Definitions. 74 + 75 + "This License" refers to version 3 of the GNU General Public License. 76 + 77 + "Copyright" also means copyright-like laws that apply to other kinds of 78 + works, such as semiconductor masks. 79 + 80 + "The Program" refers to any copyrightable work licensed under this 81 + License. Each licensee is addressed as "you". "Licensees" and 82 + "recipients" may be individuals or organizations. 83 + 84 + To "modify" a work means to copy from or adapt all or part of the work 85 + in a fashion requiring copyright permission, other than the making of an 86 + exact copy. The resulting work is called a "modified version" of the 87 + earlier work or a work "based on" the earlier work. 88 + 89 + A "covered work" means either the unmodified Program or a work based 90 + on the Program. 91 + 92 + To "propagate" a work means to do anything with it that, without 93 + permission, would make you directly or secondarily liable for 94 + infringement under applicable copyright law, except executing it on a 95 + computer or modifying a private copy. Propagation includes copying, 96 + distribution (with or without modification), making available to the 97 + public, and in some countries other activities as well. 98 + 99 + To "convey" a work means any kind of propagation that enables other 100 + parties to make or receive copies. Mere interaction with a user through 101 + a computer network, with no transfer of a copy, is not conveying. 102 + 103 + An interactive user interface displays "Appropriate Legal Notices" 104 + to the extent that it includes a convenient and prominently visible 105 + feature that (1) displays an appropriate copyright notice, and (2) 106 + tells the user that there is no warranty for the work (except to the 107 + extent that warranties are provided), that licensees may convey the 108 + work under this License, and how to view a copy of this License. If 109 + the interface presents a list of user commands or options, such as a 110 + menu, a prominent item in the list meets this criterion. 111 + 112 + 1. Source Code. 113 + 114 + The "source code" for a work means the preferred form of the work 115 + for making modifications to it. "Object code" means any non-source 116 + form of a work. 117 + 118 + A "Standard Interface" means an interface that either is an official 119 + standard defined by a recognized standards body, or, in the case of 120 + interfaces specified for a particular programming language, one that 121 + is widely used among developers working in that language. 122 + 123 + The "System Libraries" of an executable work include anything, other 124 + than the work as a whole, that (a) is included in the normal form of 125 + packaging a Major Component, but which is not part of that Major 126 + Component, and (b) serves only to enable use of the work with that 127 + Major Component, or to implement a Standard Interface for which an 128 + implementation is available to the public in source code form. A 129 + "Major Component", in this context, means a major essential component 130 + (kernel, window system, and so on) of the specific operating system 131 + (if any) on which the executable work runs, or a compiler used to 132 + produce the work, or an object code interpreter used to run it. 133 + 134 + The "Corresponding Source" for a work in object code form means all 135 + the source code needed to generate, install, and (for an executable 136 + work) run the object code and to modify the work, including scripts to 137 + control those activities. However, it does not include the work's 138 + System Libraries, or general-purpose tools or generally available free 139 + programs which are used unmodified in performing those activities but 140 + which are not part of the work. For example, Corresponding Source 141 + includes interface definition files associated with source files for 142 + the work, and the source code for shared libraries and dynamically 143 + linked subprograms that the work is specifically designed to require, 144 + such as by intimate data communication or control flow between those 145 + subprograms and other parts of the work. 146 + 147 + The Corresponding Source need not include anything that users 148 + can regenerate automatically from other parts of the Corresponding 149 + Source. 150 + 151 + The Corresponding Source for a work in source code form is that 152 + same work. 153 + 154 + 2. Basic Permissions. 155 + 156 + All rights granted under this License are granted for the term of 157 + copyright on the Program, and are irrevocable provided the stated 158 + conditions are met. This License explicitly affirms your unlimited 159 + permission to run the unmodified Program. The output from running a 160 + covered work is covered by this License only if the output, given its 161 + content, constitutes a covered work. This License acknowledges your 162 + rights of fair use or other equivalent, as provided by copyright law. 163 + 164 + You may make, run and propagate covered works that you do not 165 + convey, without conditions so long as your license otherwise remains 166 + in force. You may convey covered works to others for the sole purpose 167 + of having them make modifications exclusively for you, or provide you 168 + with facilities for running those works, provided that you comply with 169 + the terms of this License in conveying all material for which you do 170 + not control copyright. Those thus making or running the covered works 171 + for you must do so exclusively on your behalf, under your direction 172 + and control, on terms that prohibit them from making any copies of 173 + your copyrighted material outside their relationship with you. 174 + 175 + Conveying under any other circumstances is permitted solely under 176 + the conditions stated below. Sublicensing is not allowed; section 10 177 + makes it unnecessary. 178 + 179 + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 + 181 + No covered work shall be deemed part of an effective technological 182 + measure under any applicable law fulfilling obligations under article 183 + 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 + similar laws prohibiting or restricting circumvention of such 185 + measures. 186 + 187 + When you convey a covered work, you waive any legal power to forbid 188 + circumvention of technological measures to the extent such circumvention 189 + is effected by exercising rights under this License with respect to 190 + the covered work, and you disclaim any intention to limit operation or 191 + modification of the work as a means of enforcing, against the work's 192 + users, your or third parties' legal rights to forbid circumvention of 193 + technological measures. 194 + 195 + 4. Conveying Verbatim Copies. 196 + 197 + You may convey verbatim copies of the Program's source code as you 198 + receive it, in any medium, provided that you conspicuously and 199 + appropriately publish on each copy an appropriate copyright notice; 200 + keep intact all notices stating that this License and any 201 + non-permissive terms added in accord with section 7 apply to the code; 202 + keep intact all notices of the absence of any warranty; and give all 203 + recipients a copy of this License along with the Program. 204 + 205 + You may charge any price or no price for each copy that you convey, 206 + and you may offer support or warranty protection for a fee. 207 + 208 + 5. Conveying Modified Source Versions. 209 + 210 + You may convey a work based on the Program, or the modifications to 211 + produce it from the Program, in the form of source code under the 212 + terms of section 4, provided that you also meet all of these conditions: 213 + 214 + a) The work must carry prominent notices stating that you modified 215 + it, and giving a relevant date. 216 + 217 + b) The work must carry prominent notices stating that it is 218 + released under this License and any conditions added under section 219 + 7. This requirement modifies the requirement in section 4 to 220 + "keep intact all notices". 221 + 222 + c) You must license the entire work, as a whole, under this 223 + License to anyone who comes into possession of a copy. This 224 + License will therefore apply, along with any applicable section 7 225 + additional terms, to the whole of the work, and all its parts, 226 + regardless of how they are packaged. This License gives no 227 + permission to license the work in any other way, but it does not 228 + invalidate such permission if you have separately received it. 229 + 230 + d) If the work has interactive user interfaces, each must display 231 + Appropriate Legal Notices; however, if the Program has interactive 232 + interfaces that do not display Appropriate Legal Notices, your 233 + work need not make them do so. 234 + 235 + A compilation of a covered work with other separate and independent 236 + works, which are not by their nature extensions of the covered work, 237 + and which are not combined with it such as to form a larger program, 238 + in or on a volume of a storage or distribution medium, is called an 239 + "aggregate" if the compilation and its resulting copyright are not 240 + used to limit the access or legal rights of the compilation's users 241 + beyond what the individual works permit. Inclusion of a covered work 242 + in an aggregate does not cause this License to apply to the other 243 + parts of the aggregate. 244 + 245 + 6. Conveying Non-Source Forms. 246 + 247 + You may convey a covered work in object code form under the terms 248 + of sections 4 and 5, provided that you also convey the 249 + machine-readable Corresponding Source under the terms of this License, 250 + in one of these ways: 251 + 252 + a) Convey the object code in, or embodied in, a physical product 253 + (including a physical distribution medium), accompanied by the 254 + Corresponding Source fixed on a durable physical medium 255 + customarily used for software interchange. 256 + 257 + b) Convey the object code in, or embodied in, a physical product 258 + (including a physical distribution medium), accompanied by a 259 + written offer, valid for at least three years and valid for as 260 + long as you offer spare parts or customer support for that product 261 + model, to give anyone who possesses the object code either (1) a 262 + copy of the Corresponding Source for all the software in the 263 + product that is covered by this License, on a durable physical 264 + medium customarily used for software interchange, for a price no 265 + more than your reasonable cost of physically performing this 266 + conveying of source, or (2) access to copy the 267 + Corresponding Source from a network server at no charge. 268 + 269 + c) Convey individual copies of the object code with a copy of the 270 + written offer to provide the Corresponding Source. This 271 + alternative is allowed only occasionally and noncommercially, and 272 + only if you received the object code with such an offer, in accord 273 + with subsection 6b. 274 + 275 + d) Convey the object code by offering access from a designated 276 + place (gratis or for a charge), and offer equivalent access to the 277 + Corresponding Source in the same way through the same place at no 278 + further charge. You need not require recipients to copy the 279 + Corresponding Source along with the object code. If the place to 280 + copy the object code is a network server, the Corresponding Source 281 + may be on a different server (operated by you or a third party) 282 + that supports equivalent copying facilities, provided you maintain 283 + clear directions next to the object code saying where to find the 284 + Corresponding Source. Regardless of what server hosts the 285 + Corresponding Source, you remain obligated to ensure that it is 286 + available for as long as needed to satisfy these requirements. 287 + 288 + e) Convey the object code using peer-to-peer transmission, provided 289 + you inform other peers where the object code and Corresponding 290 + Source of the work are being offered to the general public at no 291 + charge under subsection 6d. 292 + 293 + A separable portion of the object code, whose source code is excluded 294 + from the Corresponding Source as a System Library, need not be 295 + included in conveying the object code work. 296 + 297 + A "User Product" is either (1) a "consumer product", which means any 298 + tangible personal property which is normally used for personal, family, 299 + or household purposes, or (2) anything designed or sold for incorporation 300 + into a dwelling. In determining whether a product is a consumer product, 301 + doubtful cases shall be resolved in favor of coverage. For a particular 302 + product received by a particular user, "normally used" refers to a 303 + typical or common use of that class of product, regardless of the status 304 + of the particular user or of the way in which the particular user 305 + actually uses, or expects or is expected to use, the product. A product 306 + is a consumer product regardless of whether the product has substantial 307 + commercial, industrial or non-consumer uses, unless such uses represent 308 + the only significant mode of use of the product. 309 + 310 + "Installation Information" for a User Product means any methods, 311 + procedures, authorization keys, or other information required to install 312 + and execute modified versions of a covered work in that User Product from 313 + a modified version of its Corresponding Source. The information must 314 + suffice to ensure that the continued functioning of the modified object 315 + code is in no case prevented or interfered with solely because 316 + modification has been made. 317 + 318 + If you convey an object code work under this section in, or with, or 319 + specifically for use in, a User Product, and the conveying occurs as 320 + part of a transaction in which the right of possession and use of the 321 + User Product is transferred to the recipient in perpetuity or for a 322 + fixed term (regardless of how the transaction is characterized), the 323 + Corresponding Source conveyed under this section must be accompanied 324 + by the Installation Information. But this requirement does not apply 325 + if neither you nor any third party retains the ability to install 326 + modified object code on the User Product (for example, the work has 327 + been installed in ROM). 328 + 329 + The requirement to provide Installation Information does not include a 330 + requirement to continue to provide support service, warranty, or updates 331 + for a work that has been modified or installed by the recipient, or for 332 + the User Product in which it has been modified or installed. Access to a 333 + network may be denied when the modification itself materially and 334 + adversely affects the operation of the network or violates the rules and 335 + protocols for communication across the network. 336 + 337 + Corresponding Source conveyed, and Installation Information provided, 338 + in accord with this section must be in a format that is publicly 339 + documented (and with an implementation available to the public in 340 + source code form), and must require no special password or key for 341 + unpacking, reading or copying. 342 + 343 + 7. Additional Terms. 344 + 345 + "Additional permissions" are terms that supplement the terms of this 346 + License by making exceptions from one or more of its conditions. 347 + Additional permissions that are applicable to the entire Program shall 348 + be treated as though they were included in this License, to the extent 349 + that they are valid under applicable law. If additional permissions 350 + apply only to part of the Program, that part may be used separately 351 + under those permissions, but the entire Program remains governed by 352 + this License without regard to the additional permissions. 353 + 354 + When you convey a copy of a covered work, you may at your option 355 + remove any additional permissions from that copy, or from any part of 356 + it. (Additional permissions may be written to require their own 357 + removal in certain cases when you modify the work.) You may place 358 + additional permissions on material, added by you to a covered work, 359 + for which you have or can give appropriate copyright permission. 360 + 361 + Notwithstanding any other provision of this License, for material you 362 + add to a covered work, you may (if authorized by the copyright holders of 363 + that material) supplement the terms of this License with terms: 364 + 365 + a) Disclaiming warranty or limiting liability differently from the 366 + terms of sections 15 and 16 of this License; or 367 + 368 + b) Requiring preservation of specified reasonable legal notices or 369 + author attributions in that material or in the Appropriate Legal 370 + Notices displayed by works containing it; or 371 + 372 + c) Prohibiting misrepresentation of the origin of that material, or 373 + requiring that modified versions of such material be marked in 374 + reasonable ways as different from the original version; or 375 + 376 + d) Limiting the use for publicity purposes of names of licensors or 377 + authors of the material; or 378 + 379 + e) Declining to grant rights under trademark law for use of some 380 + trade names, trademarks, or service marks; or 381 + 382 + f) Requiring indemnification of licensors and authors of that 383 + material by anyone who conveys the material (or modified versions of 384 + it) with contractual assumptions of liability to the recipient, for 385 + any liability that these contractual assumptions directly impose on 386 + those licensors and authors. 387 + 388 + All other non-permissive additional terms are considered "further 389 + restrictions" within the meaning of section 10. If the Program as you 390 + received it, or any part of it, contains a notice stating that it is 391 + governed by this License along with a term that is a further 392 + restriction, you may remove that term. If a license document contains 393 + a further restriction but permits relicensing or conveying under this 394 + License, you may add to a covered work material governed by the terms 395 + of that license document, provided that the further restriction does 396 + not survive such relicensing or conveying. 397 + 398 + If you add terms to a covered work in accord with this section, you 399 + must place, in the relevant source files, a statement of the 400 + additional terms that apply to those files, or a notice indicating 401 + where to find the applicable terms. 402 + 403 + Additional terms, permissive or non-permissive, may be stated in the 404 + form of a separately written license, or stated as exceptions; 405 + the above requirements apply either way. 406 + 407 + 8. Termination. 408 + 409 + You may not propagate or modify a covered work except as expressly 410 + provided under this License. Any attempt otherwise to propagate or 411 + modify it is void, and will automatically terminate your rights under 412 + this License (including any patent licenses granted under the third 413 + paragraph of section 11). 414 + 415 + However, if you cease all violation of this License, then your 416 + license from a particular copyright holder is reinstated (a) 417 + provisionally, unless and until the copyright holder explicitly and 418 + finally terminates your license, and (b) permanently, if the copyright 419 + holder fails to notify you of the violation by some reasonable means 420 + prior to 60 days after the cessation. 421 + 422 + Moreover, your license from a particular copyright holder is 423 + reinstated permanently if the copyright holder notifies you of the 424 + violation by some reasonable means, this is the first time you have 425 + received notice of violation of this License (for any work) from that 426 + copyright holder, and you cure the violation prior to 30 days after 427 + your receipt of the notice. 428 + 429 + Termination of your rights under this section does not terminate the 430 + licenses of parties who have received copies or rights from you under 431 + this License. If your rights have been terminated and not permanently 432 + reinstated, you do not qualify to receive new licenses for the same 433 + material under section 10. 434 + 435 + 9. Acceptance Not Required for Having Copies. 436 + 437 + You are not required to accept this License in order to receive or 438 + run a copy of the Program. Ancillary propagation of a covered work 439 + occurring solely as a consequence of using peer-to-peer transmission 440 + to receive a copy likewise does not require acceptance. However, 441 + nothing other than this License grants you permission to propagate or 442 + modify any covered work. These actions infringe copyright if you do 443 + not accept this License. Therefore, by modifying or propagating a 444 + covered work, you indicate your acceptance of this License to do so. 445 + 446 + 10. Automatic Licensing of Downstream Recipients. 447 + 448 + Each time you convey a covered work, the recipient automatically 449 + receives a license from the original licensors, to run, modify and 450 + propagate that work, subject to this License. You are not responsible 451 + for enforcing compliance by third parties with this License. 452 + 453 + An "entity transaction" is a transaction transferring control of an 454 + organization, or substantially all assets of one, or subdividing an 455 + organization, or merging organizations. If propagation of a covered 456 + work results from an entity transaction, each party to that 457 + transaction who receives a copy of the work also receives whatever 458 + licenses to the work the party's predecessor in interest had or could 459 + give under the previous paragraph, plus a right to possession of the 460 + Corresponding Source of the work from the predecessor in interest, if 461 + the predecessor has it or can get it with reasonable efforts. 462 + 463 + You may not impose any further restrictions on the exercise of the 464 + rights granted or affirmed under this License. For example, you may 465 + not impose a license fee, royalty, or other charge for exercise of 466 + rights granted under this License, and you may not initiate litigation 467 + (including a cross-claim or counterclaim in a lawsuit) alleging that 468 + any patent claim is infringed by making, using, selling, offering for 469 + sale, or importing the Program or any portion of it. 470 + 471 + 11. Patents. 472 + 473 + A "contributor" is a copyright holder who authorizes use under this 474 + License of the Program or a work on which the Program is based. The 475 + work thus licensed is called the contributor's "contributor version". 476 + 477 + A contributor's "essential patent claims" are all patent claims 478 + owned or controlled by the contributor, whether already acquired or 479 + hereafter acquired, that would be infringed by some manner, permitted 480 + by this License, of making, using, or selling its contributor version, 481 + but do not include claims that would be infringed only as a 482 + consequence of further modification of the contributor version. For 483 + purposes of this definition, "control" includes the right to grant 484 + patent sublicenses in a manner consistent with the requirements of 485 + this License. 486 + 487 + Each contributor grants you a non-exclusive, worldwide, royalty-free 488 + patent license under the contributor's essential patent claims, to 489 + make, use, sell, offer for sale, import and otherwise run, modify and 490 + propagate the contents of its contributor version. 491 + 492 + In the following three paragraphs, a "patent license" is any express 493 + agreement or commitment, however denominated, not to enforce a patent 494 + (such as an express permission to practice a patent or covenant not to 495 + sue for patent infringement). To "grant" such a patent license to a 496 + party means to make such an agreement or commitment not to enforce a 497 + patent against the party. 498 + 499 + If you convey a covered work, knowingly relying on a patent license, 500 + and the Corresponding Source of the work is not available for anyone 501 + to copy, free of charge and under the terms of this License, through a 502 + publicly available network server or other readily accessible means, 503 + then you must either (1) cause the Corresponding Source to be so 504 + available, or (2) arrange to deprive yourself of the benefit of the 505 + patent license for this particular work, or (3) arrange, in a manner 506 + consistent with the requirements of this License, to extend the patent 507 + license to downstream recipients. "Knowingly relying" means you have 508 + actual knowledge that, but for the patent license, your conveying the 509 + covered work in a country, or your recipient's use of the covered work 510 + in a country, would infringe one or more identifiable patents in that 511 + country that you have reason to believe are valid. 512 + 513 + If, pursuant to or in connection with a single transaction or 514 + arrangement, you convey, or propagate by procuring conveyance of, a 515 + covered work, and grant a patent license to some of the parties 516 + receiving the covered work authorizing them to use, propagate, modify 517 + or convey a specific copy of the covered work, then the patent license 518 + you grant is automatically extended to all recipients of the covered 519 + work and works based on it. 520 + 521 + A patent license is "discriminatory" if it does not include within 522 + the scope of its coverage, prohibits the exercise of, or is 523 + conditioned on the non-exercise of one or more of the rights that are 524 + specifically granted under this License. You may not convey a covered 525 + work if you are a party to an arrangement with a third party that is 526 + in the business of distributing software, under which you make payment 527 + to the third party based on the extent of your activity of conveying 528 + the work, and under which the third party grants, to any of the 529 + parties who would receive the covered work from you, a discriminatory 530 + patent license (a) in connection with copies of the covered work 531 + conveyed by you (or copies made from those copies), or (b) primarily 532 + for and in connection with specific products or compilations that 533 + contain the covered work, unless you entered into that arrangement, 534 + or that patent license was granted, prior to 28 March 2007. 535 + 536 + Nothing in this License shall be construed as excluding or limiting 537 + any implied license or other defenses to infringement that may 538 + otherwise be available to you under applicable patent law. 539 + 540 + 12. No Surrender of Others' Freedom. 541 + 542 + If conditions are imposed on you (whether by court order, agreement or 543 + otherwise) that contradict the conditions of this License, they do not 544 + excuse you from the conditions of this License. If you cannot convey a 545 + covered work so as to satisfy simultaneously your obligations under this 546 + License and any other pertinent obligations, then as a consequence you may 547 + not convey it at all. For example, if you agree to terms that obligate you 548 + to collect a royalty for further conveying from those to whom you convey 549 + the Program, the only way you could satisfy both those terms and this 550 + License would be to refrain entirely from conveying the Program. 551 + 552 + 13. Use with the GNU Affero General Public License. 553 + 554 + Notwithstanding any other provision of this License, you have 555 + permission to link or combine any covered work with a work licensed 556 + under version 3 of the GNU Affero General Public License into a single 557 + combined work, and to convey the resulting work. The terms of this 558 + License will continue to apply to the part which is the covered work, 559 + but the special requirements of the GNU Affero General Public License, 560 + section 13, concerning interaction through a network will apply to the 561 + combination as such. 562 + 563 + 14. Revised Versions of this License. 564 + 565 + The Free Software Foundation may publish revised and/or new versions of 566 + the GNU General Public License from time to time. Such new versions will 567 + be similar in spirit to the present version, but may differ in detail to 568 + address new problems or concerns. 569 + 570 + Each version is given a distinguishing version number. If the 571 + Program specifies that a certain numbered version of the GNU General 572 + Public License "or any later version" applies to it, you have the 573 + option of following the terms and conditions either of that numbered 574 + version or of any later version published by the Free Software 575 + Foundation. If the Program does not specify a version number of the 576 + GNU General Public License, you may choose any version ever published 577 + by the Free Software Foundation. 578 + 579 + If the Program specifies that a proxy can decide which future 580 + versions of the GNU General Public License can be used, that proxy's 581 + public statement of acceptance of a version permanently authorizes you 582 + to choose that version for the Program. 583 + 584 + Later license versions may give you additional or different 585 + permissions. However, no additional obligations are imposed on any 586 + author or copyright holder as a result of your choosing to follow a 587 + later version. 588 + 589 + 15. Disclaimer of Warranty. 590 + 591 + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 + OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 + THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 + PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 + IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 + ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 + 600 + 16. Limitation of Liability. 601 + 602 + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 + THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 + GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 + USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 + DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 + PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 + EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 + SUCH DAMAGES. 611 + 612 + 17. Interpretation of Sections 15 and 16. 613 + 614 + If the disclaimer of warranty and limitation of liability provided 615 + above cannot be given local legal effect according to their terms, 616 + reviewing courts shall apply local law that most closely approximates 617 + an absolute waiver of all civil liability in connection with the 618 + Program, unless a warranty or assumption of liability accompanies a 619 + copy of the Program in return for a fee. 620 + 621 + END OF TERMS AND CONDITIONS 622 + 623 + How to Apply These Terms to Your New Programs 624 + 625 + If you develop a new program, and you want it to be of the greatest 626 + possible use to the public, the best way to achieve this is to make it 627 + free software which everyone can redistribute and change under these terms. 628 + 629 + To do so, attach the following notices to the program. It is safest 630 + to attach them to the start of each source file to most effectively 631 + state the exclusion of warranty; and each file should have at least 632 + the "copyright" line and a pointer to where the full notice is found. 633 + 634 + <one line to give the program's name and a brief idea of what it does.> 635 + Copyright (C) <year> <name of author> 636 + 637 + This program is free software: you can redistribute it and/or modify 638 + it under the terms of the GNU General Public License as published by 639 + the Free Software Foundation, either version 3 of the License, or 640 + (at your option) any later version. 641 + 642 + This program is distributed in the hope that it will be useful, 643 + but WITHOUT ANY WARRANTY; without even the implied warranty of 644 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 + GNU General Public License for more details. 646 + 647 + You should have received a copy of the GNU General Public License 648 + along with this program. If not, see <https://www.gnu.org/licenses/>. 649 + 650 + Also add information on how to contact you by electronic and paper mail. 651 + 652 + If the program does terminal interaction, make it output a short 653 + notice like this when it starts in an interactive mode: 654 + 655 + <program> Copyright (C) <year> <name of author> 656 + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 + This is free software, and you are welcome to redistribute it 658 + under certain conditions; type `show c' for details. 659 + 660 + The hypothetical commands `show w' and `show c' should show the appropriate 661 + parts of the General Public License. Of course, your program's commands 662 + might be different; for a GUI interface, you would use an "about box". 663 + 664 + You should also get your employer (if you work as a programmer) or school, 665 + if any, to sign a "copyright disclaimer" for the program, if necessary. 666 + For more information on this, and how to apply and follow the GNU GPL, see 667 + <https://www.gnu.org/licenses/>. 668 + 669 + The GNU General Public License does not permit incorporating your program 670 + into proprietary programs. If your program is a subroutine library, you 671 + may consider it more useful to permit linking proprietary applications with 672 + the library. If this is what you want to do, use the GNU Lesser General 673 + Public License instead of this License. But first, please read 674 + <https://www.gnu.org/licenses/why-not-lgpl.html>.
+139
themes/anemone/README.md
··· 1 + # anemone 2 + 3 + Introducing "anemone," a minimalist [Zola](https://www.getzola.org) theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas. 4 + 5 + You can browse the demo website [here](https://anemone.pages.dev/) 6 + I also use it on my own [website.](https://speyllsite.pages.dev/) 7 + 8 + Anemone is a versatile Zola theme that comes with both light and dark variants. You can easily switch between the light and dark themes to suit your preferences. 9 + 10 + ![Anemone Light and Dark Theme](screenshot.png) 11 + 12 + ## Installation 13 + 14 + To get started with Anemone, follow these simple steps: 15 + 16 + 1. Download the theme to your `themes` directory: 17 + 18 + ```bash 19 + cd themes 20 + git clone https://github.com/Speyll/anemone 21 + ``` 22 + 23 + 2. Enable Anemone in your `config.toml`: 24 + 25 + ```toml 26 + theme = "anemone" 27 + ``` 28 + 29 + ## Release Notes 30 + 31 + #### 2025-04-09 32 + 33 + This release introduces a **complete rewrite** of the project: simplified, improved, and optimized across the board. 34 + 35 + **If you are updating from an older release:** 36 + 1. Open your `config.toml` file and update it as needed (compare with the latest release for reference). 37 + 2. Remove the following line from `content/blog/_index.md`: 38 + ```toml 39 + page_template = "blog-page.html" 40 + ``` 41 + 42 + #### 2024-03-02 43 + This release brings several improvements and enhancements, focusing mainly on optimizing performance and user experience. Here's a summary of the key changes: 44 + 45 + - **suCSS Integration:** The core CSS now leverages the lightweight [suCSS framework](https://speyll.github.io/suCSS/) made by yours truly, providing better maintainability, robustness, and scalability. With suCSS, the theme should maintain consistent appearance across different browsers. 46 + 47 + - **Enhanced Theme Toggle:** The dark and light theme toggle has been revamped for more consistency. Now, the website respects the user's system-wide theme settings, ensuring a seamless experience. Additionally, the toggle retains the selected theme for future visits, offering improved usability. 48 + 49 + - **Smooth Transition and Sound Effect:** Enjoy a smoother transition between the dark and light mode accompanied by a subtle sound effect. Rest assured, the added sound effect incurs minimal performance overhead, with the file size being just 1kb. 50 + 51 + - **Class Names and Shortcodes Update:** Some class names and shortcodes have been modified for better organization and clarity. I apologize for any inconvenience this may cause. 52 + 53 + - **Slight change in Color Choice:** Some dark mode colors have been changed for the sake of readability, still using [veqev](https://github.com/Speyll/veqev). 54 + 55 + 56 + ## Options 57 + 58 + Anemone provides various options to customize your website: 59 + 60 + #### Default Taxonomies 61 + 62 + To use tags, add the following code to a page's metadata: 63 + 64 + ```toml 65 + [taxonomies] 66 + tags = ["tag1", "tag2"] 67 + ``` 68 + 69 + #### Pages List in Homepage 70 + 71 + Enable listing of pages in the homepage by adding the following code to `config.toml`: 72 + 73 + ```toml 74 + [extra] 75 + list_pages = true 76 + ``` 77 + 78 + #### Multilanguage 79 + 80 + The theme has a built-in feature that allows you to use multiple languages. For detailed instructions on how to use this feature, you can refer to the [Zola Multilingual documentation](https://www.getzola.org/documentation/content/multilingual/). This documentation provides additional information on how to make the most out of this multilingual capability. 81 + 82 + ```toml 83 + [languages.fr] 84 + weight = 2 85 + title = "anemone" 86 + languageName = "Français" 87 + languageCode = "fr" 88 + ``` 89 + #### Multilanguage-Ready Navigation Bar 90 + 91 + Customize the header navigation links with the following code in the `extra` section of `config.toml`: 92 + 93 + ```toml 94 + [extra] 95 + 96 + header_nav = [ 97 + { url = "/", name_en = "/home/", name_fr = "/accueil/" }, 98 + { url = "/about", name_en = "/about/", name_fr = "/concernant/" }, 99 + { url = "/journal", name_en = "/journal/", name_fr = "/journal/" }, 100 + { url = "/blog", name_en = "/blog/", name_fr = "/blog/" } 101 + ] 102 + ``` 103 + 104 + #### Add Table of Contents (TOC) to Pages 105 + 106 + In a page's frontmatter, set `extra.toc` to `true`: 107 + 108 + ```toml 109 + [extra] 110 + toc = true 111 + ``` 112 + 113 + #### Display Author Name in Blog Posts 114 + 115 + Customize the display of the author's name in your blog posts by toggling the `display_author` variable to either `true` or `false`: 116 + 117 + ```toml 118 + [extra] 119 + display_author = true 120 + ``` 121 + 122 + ### Webrings 123 + 124 + Add a webring with a shortcode: 125 + 126 + ```html 127 + {{ webring(prev="#", webring="#", webringName="Random Webring", next="#") }} 128 + ``` 129 + 130 + ### Extra Data 131 + 132 + - Set the `author` in both the main config and in pages metadata. 133 + - Similarly, set `favicon` in the main config, and it will be used as the site icon. 134 + - Set `footer_content_license` and `footer_content_license_link` if you wish to display content license information in the footer. 135 + 136 + 137 + ### License 138 + 139 + The Anemone theme is available as open source under the terms of the [MIT License](LICENSE).
+55
themes/anemone/config.toml
··· 1 + # General 2 + base_url = "https://anemone.pages.dev" 3 + compile_sass = false 4 + minify_html = true 5 + generate_feeds = true 6 + generate_sitemap = true 7 + 8 + # Taxonomies 9 + taxonomies = [ 10 + {name = "tags", feed = true, paginate_by = 10}, 11 + ] 12 + 13 + # Language 14 + default_language = "en" 15 + 16 + [languages.en] 17 + build_search_index = true 18 + title = "anemone" 19 + description = "A minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas." 20 + 21 + [languages.fr] 22 + build_search_index = true 23 + title = "anemone" 24 + description = "Un thème Zola minimaliste qui privilégie un CSS épuré et évite le JavaScript lourd. Profitez d'une expérience utilisateur fluide avec des temps de chargement ultra-rapides. Mettez votre contenu en valeur grâce à un design épuré et élégant qui améliore la lisibilité. Réactif et efficace, Anémone met en valeur vos idées." 25 + 26 + [markdown] 27 + render_emoji = true 28 + external_links_target_blank = true 29 + smart_punctuation = true 30 + highlight_code = false 31 + highlight_theme = "gruvbox-dark" 32 + 33 + [slugify] 34 + paths = "on" 35 + taxonomies = "on" 36 + anchors = "on" 37 + 38 + [link_checker] 39 + internal_level = "warn" 40 + 41 + # Extra 42 + [extra] 43 + author = "Speyll" 44 + favicon = "favicon.ico" 45 + list_pages = false 46 + twitter_card = true 47 + enable_search = true 48 + 49 + ## Navigation 50 + header_nav = [ 51 + { url = "/", name_en = "/home/", name_fr = "/accueil/" }, 52 + { url = "/about", name_en = "/about/", name_fr = "/concernant/" }, 53 + { url = "/journal", name_en = "/journal/", name_fr = "/journal/" }, 54 + { url = "/blog", name_en = "/blog/", name_fr = "/blog/" } 55 + ]
+47
themes/anemone/content/_index.fr.md
··· 1 + +++ 2 + +++ 3 + 4 + ## Aperçu 5 + 6 + Le thème anemone est conçu pour offrir une expérience quasi sans JavaScript, efficace et minimaliste pour votre site web. Adoptant la simplicité, le thème met l'accent sur le contenu et la lisibilité, garantissant une expérience utilisateur fluide sans distractions inutiles. 7 + 8 + > *"Bloc de citation inutile"* 9 + 10 + ## Articles de Blog 11 + 12 + Explorez nos articles de blog instructifs sur une variété de sujets : 13 + 14 + - 🥣 [Article de présentation](./blog/overview-post) 15 + - 🈚 [Tests de Langue](./blog/language-tests) 16 + - 🔥 [Titre Très Très Très Long et Contenu Très Très Très Court](./blog/very-very-very-long-title-and-very-very-very-short-content) 17 + - 📺 [Exemple d'Article avec Titres et TOC](./blog/post-example-with-headings-and-toc) 18 + 19 + ## Étiquettes 20 + 21 + Parcourez nos articles par étiquettes : 22 + 23 + - [exemple](./tags/example) 24 + 25 + ## Une Autre Liste 26 + 27 + Découvrez du contenu supplémentaire : 28 + 29 + - Avec des sous-éléments 30 + - Avec des sous-sous-éléments 31 + - [Exemple de Page](./about) 32 + - Cette liste correspond simplement au contenu de `content/_index.md`, les tests sont honteusement volés depuis [no style, please!](https://www.getzola.org/themes/no-style-please/) 33 + 34 + ## Présence en Ligne 35 + 36 + Restez connecté avec nous : 37 + 38 + - Email : [jgll6dij6@mozmail.com](mailto:jgll6dij6@mozmail.com) 39 + - Dépôts de Code : [Speyll@GitHub](https://github.com/Speyll) 40 + - @Speyll partout ailleurs. 41 + 42 + ## Anneaux Web 43 + 44 + Rejoignez nos anneaux web et explorez davantage : 45 + 46 + - 🈯 {{ webring(prev="#", webring="#", webringName="Anneau Aléatoire", next="#") }} 47 + - 🎶 {{ webring(prev="#", webring="#", webringName="Autre Anneau", next="#") }}
+48
themes/anemone/content/_index.md
··· 1 + +++ 2 + +++ 3 + 4 + ## Overview 5 + 6 + anemone theme is designed to provide a nearly no-JavaScript, efficient, and minimalist experience for your website. Embracing simplicity, the theme focuses on content and readability, ensuring a seamless user experience without unnecessary distractions. 7 + 8 + > *"Useless blockquote"* 9 + 10 + ## Blog Posts 11 + 12 + Explore our insightful blog posts on a variety of topics: 13 + 14 + - 🥣 [Overview Post](./blog/overview-post) 15 + - 🥣 [Overview Post But in French](./fr/blog/overview-post) 16 + - 🈚 [Language Tests](./blog/language-tests) 17 + - 🔥 [Very Very Very Long Title And Very Very Very Short Content](./blog/very-very-very-long-title-and-very-very-very-short-content) 18 + - 📺 [Post Example With Headings And TOC](./blog/post-example-with-headings-and-toc) 19 + 20 + ## Tags 21 + 22 + Browse our posts by tags: 23 + 24 + - [example](./tags/example) 25 + 26 + ## Another List 27 + 28 + Discover additional content: 29 + 30 + - With Subitems 31 + - With Subsubitems 32 + - [Example Page](./about) 33 + - this list is just the content of `content/_index.md`, the tests are shamelessly stolen from [no style, please!](https://www.getzola.org/themes/no-style-please/) 34 + 35 + ## Online Presence 36 + 37 + Stay connected with us: 38 + 39 + - Email: [jgll6dij6@mozmail.com](mailto:jgll6dij6@mozmail.com) 40 + - Code Repositories: [Speyll@GitHub](https://github.com/Speyll) 41 + - @Speyll anywhere else. 42 + 43 + ## Webrings 44 + 45 + Join our webrings and explore more: 46 + 47 + - 🈯 {{ webring(prev="#", webring="#", webringName="Random Webring", next="#") }} 48 + - 🎶 {{ webring(prev="#", webring="#", webringName="Another Webring", next="#") }}
+6
themes/anemone/content/about.md
··· 1 + +++ 2 + title = "About" 3 + +++ 4 + This is an about page, nothing more nothing less `forget about it`. 5 + 6 + {{ youtube(id="pS6zJ7IsJkM" class="center") }}
+80
themes/anemone/content/blog/2020-07-07-overview-post.fr.md
··· 1 + +++ 2 + title = "Article de Présentation" 3 + [extra] 4 + display_published = false 5 + +++ 6 + 7 + Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus. 8 + 9 + # Titre d'exemple 1 10 + ## Titre d'exemple 2 11 + ### Titre d'exemple 3 12 + #### Titre d'exemple 4 13 + ##### Titre d'exemple 5 14 + ###### Titre d'exemple 6 15 + 16 + Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod. 17 + 18 + ## Listes 19 + 20 + Non ordonnée : 21 + 22 + - Fusce non velit cursus ligula mattis convallis vel at metus[^2]. 23 + - Sed pharetra tellus massa, non elementum eros vulputate non. 24 + - Suspendisse potenti. 25 + 26 + Ordonnée : 27 + 28 + 1. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc. 29 + 2. Sed massa quam, auctor in eros quis, porttitor tincidunt orci. 30 + 3. Nulla convallis id sapien ornare viverra. 31 + 4. Nam a est eget ligula pellentesque posuere. 32 + 33 + ## Bloc de citation 34 + 35 + Voici un bloc de citation : 36 + 37 + > Suspendisse tempus dolor nec risus sodales posuere. Proin dui dui, mollis a consectetur molestie, lobortis vitae tellus. 38 + 39 + ## Code 40 + 41 + Maintenant un peu de code : 42 + 43 + ```js 44 + const ultimateTruth = 'ce thème est le meilleur !'; 45 + console.log(ultimateTruth); 46 + ``` 47 + 48 + Et voici du `code en ligne` ! 49 + 50 + ## Tableaux 51 + 52 + Maintenant un tableau : 53 + 54 + | Tables | Sont | Cool | 55 + | ------------- |:-------------:| -----:| 56 + | col 3 est | alignée à droite| $1600 | 57 + | col 2 est | centrée | $12 | 58 + | zèbre | est sympa | $1 | 59 + 60 + ## Images 61 + 62 + {{ img(id="https://uploads-ssl.webflow.com/5ff0b3326e5782a256714165/638b6f3a3d8d2e6bad1cb03b_Random22.1.jpg", alt="logo du thème") }} 63 + 64 + image aléatoire d'un chien[^4] 65 + 66 + ## Prise en charge multilingue 67 + - 🥣 [Ce site mais en français (seulement cette page et la page d'acceuil sont traduis)](/fr) 68 + 69 + ## Anneaux Web 70 + - 🈯 {{ webring(prev="#", webring="#", webringName="Anneau Aléatoire", next="#") }} 71 + 72 + --- 73 + 74 + [^1]: Ceci est une note de bas de page. Elle devrait être mise en évidence si vous cliquez sur le chiffre en exposant correspondant. 75 + 76 + [^2]: salut toi 77 + 78 + [^3]: ceci est une autre note de bas de page. 79 + 80 + [^4]: ceci est une note de bas de page très très longue pour tester si une note de bas de page très très longue pose problème ou non. J'espère vivement qu'il n'y a pas de problèmes, mais vous savez parfois les problèmes surgissent de nulle part.
+81
themes/anemone/content/blog/2020-07-07-overview-post.md
··· 1 + +++ 2 + title = "Overview Post" 3 + [extra] 4 + display_published = false 5 + toc = false 6 + +++ 7 + 8 + Lorem ipsum[^1] dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus. 9 + 10 + # Sample heading 1 11 + ## Sample heading 2 12 + ### Sample heading 3 13 + #### Sample heading 4 14 + ##### Sample heading 5 15 + ###### Sample heading 6 16 + 17 + Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Etiam id nisl ut lorem gravida euismod. 18 + 19 + ## Lists 20 + 21 + Unordered: 22 + 23 + - Fusce non velit cursus ligula mattis convallis vel at metus[^2]. 24 + - Sed pharetra tellus massa, non elementum eros vulputate non. 25 + - Suspendisse potenti. 26 + 27 + Ordered: 28 + 29 + 1. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc. 30 + 2. Sed massa quam, auctor in eros quis, porttitor tincidunt orci. 31 + 3. Nulla convallis id sapien ornare viverra. 32 + 4. Nam a est eget ligula pellentesque posuere. 33 + 34 + ## Blockquote 35 + 36 + The following is a blockquote: 37 + 38 + > Suspendisse tempus dolor nec risus sodales posuere. Proin dui dui, mollis a consectetur molestie, lobortis vitae tellus. 39 + 40 + ## Code 41 + 42 + Now some code: 43 + 44 + ```js 45 + const ultimateTruth = 'this theme is the best!'; 46 + console.log(ultimateTruth); 47 + ``` 48 + 49 + And here is some `inline code`! 50 + 51 + ## Tables 52 + 53 + Now a table: 54 + 55 + | Tables | Are | Cool | 56 + | ------------- |:-------------:| -----:| 57 + | col 3 is | right-aligned | $1600 | 58 + | col 2 is | centered | $12 | 59 + | zebra stripes | are neat | $1 | 60 + 61 + ## Images 62 + 63 + {{ img(id="https://uploads-ssl.webflow.com/5ff0b3326e5782a256714165/638b6f3a3d8d2e6bad1cb03b_Random22.1.jpg", alt="theme logo") }} 64 + 65 + random image of a dog[^4] 66 + 67 + ## Multilanguage support 68 + - 🥣 [This site but in french (only this page and the homepage is translated)](/fr) 69 + 70 + ## Webrings 71 + - 🈯 {{ webring(prev="#", webring="#", webringName="Random Webring", next="#") }} 72 + 73 + --- 74 + 75 + [^1]: this is a footnote. It should highlight if you click on the corresponding superscript number. 76 + 77 + [^2]: hey there 78 + 79 + [^3]: this is another footnote. 80 + 81 + [^4]: this is a very very long footnote to test if a very very long footnote brings some problems or not. I strongly hope that there are no problems but you know sometimes problems arise from nowhere.
+55
themes/anemone/content/blog/2020-07-08-language-tests.md
··· 1 + +++ 2 + title = "Language Tests" 3 + [taxonomies] 4 + tags = ["example"] 5 + [extra] 6 + display_published = true 7 + author = "Speyll" 8 + +++ 9 + 10 + Note: I took this test post from [moving](https://github.com/huangyz0918/moving), which is another Jekyll theme which is better that this one so I should not have linked it because now you will decide to use it instead of mine. 11 + 12 + ### 1. 日本語テスト 13 + 14 + This is a Japanese test post to show you how japanese is displayed. 15 + 16 + 私は昨日ついにその助力家というのの上よりするたなけれ。 17 + 最も今をお話団はちょうどこの前後なかろでくらいに困りがいるたをは帰着考えたなかって、そうにもするでうたらない。 18 + がたを知っないはずも同時に九月をいよいよたありた。 19 + 20 + もっと槙さんにぼんやり金少し説明にえた自分大した人私か影響にというお関係たうませないが、この次第も私か兄具合に使うて、槙さんののに当人のあなたにさぞご意味と行くて私個人が小尊敬を聴いように同時に同反抗に集っだうて、いよいよまず相当へあっうからいだ事をしでなけれ。 21 + 22 + > それでそれでもご時日をしはずはたったいやと突き抜けるますて、その元がは行ったてという獄を尽すていけですた。 23 + 24 + この中道具の日その学校はあなたごろがすまなりかとネルソンさんの考えるですん、辺の事実ないというご盲従ありたですと、爺さんのためが薬缶が結果までの箸の当時してならて、多少の十月にためからそういう上からとにかくしましないと触れべきものたで、ないうですと多少お人達したのでたた。 25 + 26 + From [すぐ使えるダミーテキスト - 日本語 Lorem ipsum.](http://lipsum.sugutsukaeru.jp/index.cgi) 27 + 28 + 29 + ### 2. 繁体中文测试 30 + 31 + This is a chinese test post to show you how chinese is displayed. 32 + 33 + 善我王上魚、產生資西員合兒臉趣論。畫衣生這著爸毛親可時,安程幾?合學作。觀經而作建。都非子作這!法如言子你關!手師也。 34 + 35 + 以也座論頭室業放。要車時地變此親不老高小是統習直麼調未,行年香一? 36 + 37 + 就竟在,是我童示讓利分和異種百路關母信過明驗有個歷洋中前合著區亮風值新底車有正結,進快保的行戰從:弟除文辦條國備當來際年每小腳識世可的的外的廣下歌洲保輪市果底天影;全氣具些回童但倒影發狀在示,數上學大法很,如要我……月品大供這起服滿老?應學傳者國:山式排只不之然清同關;細車是!停屋常間又,資畫領生,相們制在?公別的人寫教資夠。資再我我!只臉夫藝量不路政吃息緊回力之;兒足灣電空時局我怎初安。意今一子區首者微陸現際安除發連由子由而走學體區園我車當會,經時取頭,嚴了新科同?很夫營動通打,出和導一樂,查旅他。坐是收外子發物北看蘭戰坐車身做可來。道就學務。 38 + 39 + 國新故。 40 + 41 + > 工步他始能詩的,裝進分星海演意學值例道……於財型目古香亮自和這乎?化經溫詩。只賽嚴大一主價世哥受的沒有中年即病行金拉麼河。主小路了種就小為廣不? 42 + 43 + From [亂數假文產生器 - Chinese Lorem Ipsum.](http://www.richyli.com/tool/loremipsum/) 44 + 45 + 46 + 47 + ### 3. 简体中文测试 48 + 49 + 效育声去本义然空,各值太法心想,场强实地。 题铁习点儿表管少间千,只何政亲织文意部,千影画派证男须。 手反取长风治增非等直难群,连取及天他己事头级,影数弦适把气快目人。 专议以省通引而千个,格则口段度样水热马,地教少务改磨。 包思外心半院应她算斯,市外会快记路又火学,劳如肃它准众丧边。 50 + 51 + > 团算部住县单总边素格军所,合音府教看和广光采率位转,位用品根确针百。 证其标元角工方海接交他,论象切万世认一响义,治然身本风弦带题。 向我次路持加北,她不反心。 说总元军例市决,现始即算证养,规走还壳。 52 + 53 + 因林可相儿应满军,热影省条律因资再,整肃赤心将届。 局广写两量备验还,南教事争工民的,备进研上布。 素身电活非直,速这区交示从,百层达。 资量那毛什京身,白这快。 半打容三手开常价或,手严量般象式效,名可重芽门适。 来设什一我么,光界美么或,住身式准。 造酸改表委验众办地百养,商物战众本列听度名院,制压录丽快与千机内。 住需当四议决得命南然照按民置,当住命形金决否矿单外。 气象理离开新集增际,三划方工义很年关,拉许准孝口。 构片出干计由备美打养,持育总指承入无己。 54 + 55 + From [假文生成器, lorem ipsum Chinese](http://www.cancms.com/content/dummytext)
+10
themes/anemone/content/blog/2020-07-08-very-very-very-long-title-and-very-very-very-short-content.md
··· 1 + +++ 2 + title = "Very Very Very Long Title And Very Very Very Short Content" 3 + date = 2024-01-01 4 + 5 + [extra] 6 + display_published = true 7 + author = "Speyll" 8 + +++ 9 + 10 + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vel lacinia neque. Praesent nulla quam, ullamcorper in sollicitudin ac, molestie sed justo. Cras aliquam, sapien id consectetur accumsan, augue magna faucibus ex, ut ultricies turpis tortor vel ante. In at rutrum tellus. Nullam vestibulum metus eu purus malesuada, volutpat mattis leo facilisis.
+28
themes/anemone/content/blog/2020-07-09-post-example-with-headings-and-toc.md
··· 1 + +++ 2 + title = "Post Example With Headings And Toc" 3 + date = 2024-01-01 4 + draft = false 5 + [taxonomies] 6 + tags = ["example"] 7 + [extra] 8 + toc = true 9 + display_published = true 10 + author = "Speyll" 11 + +++ 12 + 13 + Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Nunc a egestas tortor, sed feugiat leo. 14 + 15 + Mauris viverra dictum ultricies. Vestibulum quis ipsum euismod, facilisis metus sed, varius ipsum. Donec scelerisque lacus libero, eu dignissim sem venenatis at. Nunc a egestas tortor, sed feugiat leo. Vestibulum porta tincidunt tellus, vitae ornare tortor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed nunc neque, tempor in iaculis non, faucibus et metus. Etiam id nisl ut lorem gravida euismod. 16 + 17 + ## [The start](#the-start) 18 + 19 + Fusce non velit cursus ligula mattis convallis vel at metus. Sed pharetra tellus massa, non elementum eros vulputate non. Suspendisse potenti. Quisque arcu felis, laoreet vel accumsan sit amet, fermentum at nunc. Sed massa quam, auctor in eros quis, porttitor tincidunt orci. Nulla convallis id sapien ornare viverra. Cras nec est lacinia ligula porta tincidunt. Nam a est eget ligula pellentesque posuere. Maecenas quis enim ac risus accumsan scelerisque. Aliquam vitae libero sapien. Etiam convallis, metus nec suscipit condimentum, quam massa congue velit, sit amet sollicitudin nisi tortor a lectus. Cras a arcu enim. Suspendisse hendrerit euismod est ac gravida. Donec vitae elit tristique, suscipit eros at, aliquam augue. In ac faucibus dui. Sed tempor lacus tristique elit sagittis, vitae tempor massa convallis. 20 + 21 + ## [The middle](#the-middle) 22 + 23 + Proin quis velit et eros auctor laoreet. Aenean eget nibh odio. Suspendisse mollis enim pretium, fermentum urna vitae, egestas purus. Donec convallis tincidunt purus, scelerisque fermentum eros sagittis vel. Aliquam ac aliquet risus, tempus iaculis est. Fusce molestie mauris non interdum hendrerit. Curabitur ullamcorper, eros vitae interdum volutpat, lacus magna lacinia turpis, at accumsan dui tortor vel lectus. Aenean risus massa, semper non lectus rutrum, facilisis imperdiet mi. Praesent sed quam quis purus auctor ornare et sed augue. Vestibulum non quam quis ligula luctus placerat sed sit amet erat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Fusce auctor, sem eu volutpat dignissim, turpis nibh malesuada arcu, in consequat elit mauris quis sem. Nam tristique sit amet enim vel accumsan. Sed id nibh commodo, dictum sem id, semper quam. 24 + 25 + ## [The end](#the-end) 26 + 27 + Donec ex lectus, tempus non lacinia quis, pretium non ipsum. Praesent est nunc, rutrum vel tellus eu, tristique laoreet purus. In rutrum orci sit amet ex ornare, sit amet finibus lacus laoreet. Etiam ac facilisis purus, eget porttitor odio. Suspendisse tempus dolor nec risus sodales posuere. Proin dui dui, mollis a consectetur molestie, lobortis vitae tellus. Vivamus at purus sed urna sollicitudin mattis. Mauris lacinia libero in lobortis pulvinar. Nullam sit amet condimentum justo. Donec orci justo, pharetra ut dolor non, interdum finibus orci. Proin vitae ante a dui sodales commodo ac id elit. Nunc vel accumsan nunc, sit amet congue nunc. Aliquam in lacinia velit. Integer lobortis luctus eros, in fermentum metus aliquet a. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. 28 +
+7
themes/anemone/content/blog/_index.md
··· 1 + +++ 2 + title = "All blog posts" 3 + paginate_by = 15 4 + sort_by = "date" 5 + +++ 6 + 7 + [🔖 List](/tags)
+29
themes/anemone/content/journal.md
··· 1 + +++ 2 + title = "Personal journal" 3 + date = 2019-10-05 4 + draft = false 5 + 6 + [extra] 7 + display_published = false 8 + +++ 9 + 10 + ## 2023-06-29 🔧 11 + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean dapibus dignissim nulla et ornare. Vestibulum porta, risus eu ultrices condimentum, quam ante mattis massa, eget laoreet neque nisl ullamcorper nibh. 12 + 13 + 14 + ## 2023-06-28 😊 15 + Etiam vulputate nibh in magna feugiat viverra. Donec ultricies sagittis justo vel facilisis. Nulla sollicitudin felis eu tortor consectetur, ac sodales odio faucibus. Vivamus id ultrices orci, ut luctus dolor. Sed sem nibh, semper in posuere eget, dictum eget dui. Praesent nunc dolor, lacinia at tortor eget, sollicitudin sagittis turpis. 16 + 17 + {{ img(id="https://uploads-ssl.webflow.com/5ff0b3326e5782a256714165/638b6f3a3d8d2e6bad1cb03b_Random22.1.jpg", alt="xfx6800xt", class="textCenter") }} 18 + 19 + ## 2022-11-30 💀 20 + Pellentesque iaculis diam leo, vel euismod libero finibus sed. Praesent ultrices libero nec lectus posuere euismod. Fusce lobortis elit dui. In non pulvinar ligula. Integer augue mauris, condimentum vitae ante sit amet, consectetur scelerisque lectus. Sed dignissim vitae magna et volutpat. Integer vel risus sagittis 21 + 22 + ## 2022-11-11 😐 23 + Vivamus molestie, ipsum id ullamcorper facilisis, velit neque elementum metus, quis lacinia ligula felis et metus. Quisque at condimentum tellus, id venenatis turpis. Integer accumsan metus non mauris vulputate pretium. 24 + 25 + ## 2022-10-29 🍿 26 + vel mollis varius. Aenean non bibendum dui, eget facilisis turpis. Cras eleifend mi vel leo malesuada, ac vestibulum est condimentum. Aenean accumsan felis elit, sed porttitor nulla volutpat nec. In leo purus, condimentum ut augue sed, imperdiet dapibus sapien. Proin id ullamcorper nisi. 27 + 28 + ## 2022-10-27 💢 29 + facilisis sapien, quis faucibus leo urna ut diam. Etiam eu dolor vestibulum, cursus odio at, aliquam nibh. Donec molestie metus non purus facilisis euismod. In interdum luctus libero, in mollis est tincidunt at. Nam congue, nibh nec tempus elementum, nunc sapien placerat felis, id dignissim sapien tellus a libero. Nunc at elementum tortor, eget scelerisque elit. Donec ultricies mi at accumsan semper. Pellentesque vehicula leo sed urna dapibus, quis feugiat arcu auctor.
themes/anemone/screenshot.png

This is a binary file and will not be displayed.

themes/anemone/static/click.ogg

This is a binary file and will not be displayed.

+125
themes/anemone/static/css/style.css
··· 1 + :root { 2 + --icon-size: 1.3rem; 3 + --icon-color: var(--text); 4 + } 5 + 6 + #nav-bar { 7 + padding: 0.625rem 0 0; 8 + display: flex; 9 + flex-wrap: wrap; 10 + gap: 0.25rem; 11 + justify-content: flex-end; 12 + align-items: center; 13 + } 14 + 15 + #footer-container { 16 + display: flex; 17 + flex-wrap: wrap; 18 + justify-content: space-between; 19 + align-items: center; 20 + } 21 + 22 + .accent-data { 23 + color: var(--accent); 24 + } 25 + 26 + .theme-transition { 27 + transition: color 0.3s ease, background-color 0.3s ease; 28 + } 29 + 30 + .tags-data { 31 + display: flex; 32 + flex-direction: column; 33 + flex-wrap: wrap; 34 + justify-content: flex-end; 35 + align-items: flex-start; 36 + align-content: flex-end 37 + } 38 + 39 + .title-list li { 40 + margin-bottom: .375rem; 41 + } 42 + 43 + /* icons settings */ 44 + .icon { 45 + width: var(--icon-size); 46 + height: var(--icon-size); 47 + display: inline-block; 48 + vertical-align: middle; 49 + color: var(--icon-color); 50 + fill: currentColor; 51 + transition: color 0.3s ease; 52 + cursor: pointer; 53 + } 54 + 55 + .icon:hover { 56 + --icon-color: var(--accent); 57 + } 58 + 59 + /* Theme toggle specific styles */ 60 + .theme-toggle { 61 + cursor: pointer; 62 + padding: 0; 63 + margin: 0; 64 + background: none; 65 + border: none; 66 + display: inline-flex; 67 + } 68 + 69 + .theme-toggle:hover .icon { 70 + --icon-color: var(--accent); 71 + } 72 + 73 + .theme-toggle:active { 74 + transform: scale(0.95); 75 + } 76 + 77 + /* footnotes */ 78 + .footnote-definition { 79 + margin: 0 0 0 .125rem; 80 + } 81 + 82 + .footnote-definition-label { 83 + color: var(--accent); 84 + } 85 + 86 + .footnote-definition p { 87 + display: inline; 88 + margin: .625rem 0 0 .625rem; 89 + } 90 + 91 + /* general classes */ 92 + /* Cleaned no-style class */ 93 + .no-style { 94 + all: unset; 95 + background: none !important; 96 + border: none !important; 97 + } 98 + 99 + .no-style:hover { 100 + background: transparent; 101 + color: inherit; 102 + } 103 + 104 + /* Modern float replacement */ 105 + .float-right { 106 + margin-inline-start: auto; 107 + } 108 + 109 + .float-left { 110 + margin-inline-end: auto; 111 + } 112 + 113 + .center { 114 + text-align: center; 115 + } 116 + 117 + .center img { 118 + display: block; 119 + margin: 1rem auto; 120 + } 121 + 122 + /* shortcodes css */ 123 + .webring { 124 + margin: .375rem; 125 + }
themes/anemone/static/favicon.ico

This is a binary file and will not be displayed.

+21
themes/anemone/static/icons.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg"> 2 + <symbol id="rss" viewBox="0 0 24 24"><rect x="0" y="0" fill="none" stroke="none" /> 3 + <path fill="currentColor" d="M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19 7.38 20 6.18 20C5 20 4 19 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1Z"/> 4 + </symbol> 5 + 6 + <symbol id="darkMode" viewBox="0 0 24 24"><rect x="0" y="0" fill="none" stroke="none" /> 7 + <path fill="currentColor" d="M12 21q-3.775 0-6.388-2.613T3 12q0-3.45 2.25-5.988T11 3.05q.625-.075.975.45t-.025 1.1q-.425.65-.638 1.375T11.1 7.5q0 2.25 1.575 3.825T16.5 12.9q.775 0 1.538-.225t1.362-.625q.525-.35 1.075-.037t.475.987q-.35 3.45-2.937 5.725T12 21Zm0-2q2.2 0 3.95-1.213t2.55-3.162q-.5.125-1 .2t-1 .075q-3.075 0-5.238-2.163T9.1 7.5q0-.5.075-1t.2-1q-1.95.8-3.163 2.55T5 12q0 2.9 2.05 4.95T12 19Zm-.25-6.75Z"/> 8 + </symbol> 9 + 10 + <symbol id="lightMode" viewBox="0 0 24 24"><rect x="0" y="0" fill="none" stroke="none" /> 11 + <path fill="currentColor" d="M12 15q1.25 0 2.125-.875T15 12q0-1.25-.875-2.125T12 9q-1.25 0-2.125.875T9 12q0 1.25.875 2.125T12 15Zm0 2q-2.075 0-3.538-1.463T7 12q0-2.075 1.463-3.538T12 7q2.075 0 3.538 1.463T17 12q0 2.075-1.463 3.538T12 17ZM2 13q-.425 0-.713-.288T1 12q0-.425.288-.713T2 11h2q.425 0 .713.288T5 12q0 .425-.288.713T4 13H2Zm18 0q-.425 0-.713-.288T19 12q0-.425.288-.713T20 11h2q.425 0 .713.288T23 12q0 .425-.288.713T22 13h-2Zm-8-8q-.425 0-.713-.288T11 4V2q0-.425.288-.713T12 1q.425 0 .713.288T13 2v2q0 .425-.288.713T12 5Zm0 18q-.425 0-.713-.288T11 22v-2q0-.425.288-.713T12 19q.425 0 .713.288T13 20v2q0 .425-.288.713T12 23ZM5.65 7.05L4.575 6q-.3-.275-.288-.7t.288-.725q.3-.3.725-.3t.7.3L7.05 5.65q.275.3.275.7t-.275.7q-.275.3-.687.288T5.65 7.05ZM18 19.425l-1.05-1.075q-.275-.3-.275-.713t.275-.687q.275-.3.688-.287t.712.287L19.425 18q.3.275.288.7t-.288.725q-.3.3-.725.3t-.7-.3ZM16.95 7.05q-.3-.275-.288-.687t.288-.713L18 4.575q.275-.3.7-.288t.725.288q.3.3.3.725t-.3.7L18.35 7.05q-.3.275-.7.275t-.7-.275ZM4.575 19.425q-.3-.3-.3-.725t.3-.7l1.075-1.05q.3-.275.712-.275t.688.275q.3.275.288.688t-.288.712L6 19.425q-.275.3-.7.288t-.725-.288ZM12 12Z"/> 12 + </symbol> 13 + 14 + <symbol id="chevronLeft" viewBox="0 0 24 24"><rect x="0" y="0" fill="none" stroke="none" /> 15 + <path fill="currentColor" d="M15.41 16.58L10.83 12l4.58-4.59L14 6l-6 6l6 6l1.41-1.42Z"/> 16 + </symbol> 17 + 18 + <symbol id="chevronRight" viewBox="0 0 24 24"><rect x="0" y="0" fill="none" stroke="none" /> 19 + <path fill="currentColor" d="M8.59 16.58L13.17 12L8.59 7.41L10 6l6 6l-6 6l-1.41-1.42Z"/> 20 + </symbol> 21 + </svg>
+73
themes/anemone/static/js/script.js
··· 1 + class ThemeManager { 2 + constructor() { 3 + this.toggle = document.getElementById('theme-toggle'); 4 + if (!this.toggle) return; 5 + 6 + this.icon = document.getElementById('theme-icon'); 7 + const { iconBase, iconDark, iconLight, soundSrc } = this.toggle.dataset; 8 + this.iconBase = iconBase; 9 + this.iconDark = iconDark; 10 + this.iconLight = iconLight; 11 + 12 + // Create audio element lazily only when needed 13 + this.sound = null; 14 + this.soundSrc = soundSrc; 15 + 16 + this.init(); 17 + } 18 + 19 + init() { 20 + this.setInitialTheme(); 21 + this.toggle.addEventListener('click', () => this.toggleTheme()); 22 + } 23 + 24 + setInitialTheme() { 25 + const savedTheme = localStorage.getItem('theme'); 26 + const systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches; 27 + const initialTheme = savedTheme || (systemDark ? 'dark' : 'light'); 28 + 29 + document.documentElement.setAttribute('data-theme', initialTheme); 30 + this.updateIcon(initialTheme === 'dark'); 31 + } 32 + 33 + toggleTheme() { 34 + document.body.classList.add('theme-transition'); 35 + const isDark = document.documentElement.getAttribute('data-theme') === 'dark'; 36 + const newTheme = isDark ? 'light' : 'dark'; 37 + 38 + document.documentElement.setAttribute('data-theme', newTheme); 39 + this.updateIcon(!isDark); 40 + localStorage.setItem('theme', newTheme); 41 + 42 + // Lazy load sound only when needed 43 + if (!this.sound && this.soundSrc) { 44 + this.sound = new Audio(this.soundSrc); 45 + } 46 + 47 + if (this.sound) { 48 + this.sound.play().catch(() => {}); 49 + } 50 + 51 + // Use requestAnimationFrame for better performance on transition 52 + requestAnimationFrame(() => { 53 + setTimeout(() => { 54 + document.body.classList.remove('theme-transition'); 55 + }, 300); 56 + }); 57 + } 58 + 59 + updateIcon(isDark) { 60 + if (this.icon) { 61 + this.icon.setAttribute('href', 62 + `${this.iconBase}${isDark ? this.iconDark : this.iconLight}`); 63 + } 64 + } 65 + } 66 + 67 + 68 + // Initialize when content is loaded 69 + if (document.readyState === 'loading') { 70 + document.addEventListener('DOMContentLoaded', () => new ThemeManager()); 71 + } else { 72 + new ThemeManager(); 73 + }
+9
themes/anemone/templates/404.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block content %} 4 + <article class="center"> 5 + <h1>404 - Not Found</h1> 6 + <p>The page you're looking for doesn't exist.</p> 7 + <a href="/" class="no-style">← Return home</a> 8 + </article> 9 + {% endblock %}
+38
themes/anemone/templates/atom.xml
··· 1 + <?xml version="1.0" encoding="utf-8"?> 2 + <feed xmlns="http://www.w3.org/2005/Atom"> 3 + <title>{{ config.title }}</title> 4 + <link href="{{ get_url(path="atom.xml", trailing_slash=false) }}" rel="self"/> 5 + <link href="{{ config.base_url }}"/> 6 + <updated>{{ now() | date(format="%Y-%m-%dT%H:%M:%S%z") }}</updated> 7 + <id>{{ config.base_url }}</id> 8 + 9 + {% set root = get_section(path="_index.md") %} 10 + 11 + {# Process pages with valid dates #} 12 + {% for page in root.pages %} 13 + {% if page.date %} 14 + <entry> 15 + <title>{{ page.title }}</title> 16 + <link href="{{ page.permalink }}"/> 17 + <updated>{{ page.date | date(format="%Y-%m-%dT%H:%M:%S%z") }}</updated> 18 + <id>{{ page.permalink }}</id> 19 + <content type="html">{{ page.content | escape }}</content> 20 + </entry> 21 + {% endif %} 22 + {% endfor %} 23 + 24 + {% for subsection in root.subsections %} 25 + {% set sub = get_section(path=subsection) %} 26 + {% for page in sub.pages %} 27 + {% if page.date %} 28 + <entry> 29 + <title>{{ page.title }}</title> 30 + <link href="{{ page.permalink }}"/> 31 + <updated>{{ page.date | date(format="%Y-%m-%dT%H:%M:%S%z") }}</updated> 32 + <id>{{ page.permalink }}</id> 33 + <content type="html">{{ page.content | escape }}</content> 34 + </entry> 35 + {% endif %} 36 + {% endfor %} 37 + {% endfor %} 38 + </feed>
+59
themes/anemone/templates/base.html
··· 1 + <!DOCTYPE html> 2 + <html lang="{% if page %}{{ page.lang }}{% else %}{{ config.default_language }}{% endif %}"> 3 + <head> 4 + <meta charset="UTF-8"> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 + <meta name="robots" content="index, follow"> 7 + {% block rss %} 8 + <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}"> 9 + {% endblock %} 10 + <title>{{ config.title }}{% if page.title %} | {{ page.title }}{% endif %}</title> 11 + 12 + <link rel="preload" href="{{ get_url(path='css/style.css') }}" as="style"> 13 + <link rel="stylesheet" href="https://raw.githack.com/Speyll/suCSS/main/reset-min.css" crossorigin="anonymous"> 14 + <link rel="stylesheet" href="https://raw.githack.com/Speyll/suCSS/main/suCSS-min.css" crossorigin="anonymous"> 15 + <link rel="stylesheet" href="{{ get_url(path='css/style.css') }}"> 16 + <link rel="stylesheet" href="{{ get_url(path='css/custom.css') }}"> 17 + 18 + <!-- Add favicon with appropriate sizes --> 19 + <link rel="icon" href="{{ config.base_url }}/{{ config.extra.favicon | default(value='favicon.ico') }}"> 20 + {% block extra_head %}{% endblock %} 21 + </head> 22 + <body> 23 + {% set current_lang = config.default_language %} 24 + {% if page %} 25 + {% set current_lang = page.lang %} 26 + {% elif section %} 27 + {% set current_lang = section.lang %} 28 + {% endif %} 29 + <nav id="nav-bar"> 30 + {% for nav_item in config.extra.header_nav %} 31 + <a href="{{ nav_item.url }}" class="{% if current_url is defined and nav_item.url == current_url %}active{% endif %}"> 32 + {% set language_key = 'name_' ~ current_lang %} 33 + {{ nav_item[language_key] }} 34 + </a> 35 + {% endfor %} 36 + 37 + <div class="theme-toggle" id="theme-toggle" role="button" tabindex="0" aria-label="Toggle theme" 38 + data-icon-base="{{ get_url(path='icons.svg') }}" 39 + data-icon-dark="#darkMode" 40 + data-icon-light="#lightMode" 41 + data-sound-src="{{ get_url(path='click.ogg') }}"> 42 + <svg class="icon"> 43 + <use id="theme-icon"></use> 44 + </svg> 45 + </div> 46 + </nav> 47 + 48 + <main> 49 + {% block content %}{% endblock %} 50 + </main> 51 + 52 + <footer> 53 + {% include "footer.html" %} 54 + </footer> 55 + 56 + <!-- Move JS to end of body and add defer --> 57 + <script src="{{ get_url(path='js/script.js') }}" defer></script> 58 + </body> 59 + </html>
+58
themes/anemone/templates/blog/page.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block head %} 4 + {{ super() }} 5 + {% include "partials/schema-article.html" %} 6 + {% endblock %} 7 + 8 + {% block content %} 9 + <article class="post"> 10 + <header class="post-header"> 11 + {% if page.date and page.extra.display_published | default(value=true) %} 12 + <time datetime="{{ page.date }}">Published on: 13 + <span class="accent-data">{{ page.date | date(format="%Y-%m-%d") }}</span> 14 + </time> 15 + {% endif %} 16 + 17 + {% if page.extra.author %} 18 + <address rel="author">By 19 + <span class="accent-data">{{ page.extra.author }}</span> 20 + </address> 21 + {% endif %} 22 + 23 + <h1>{{ page.title }}</h1> 24 + </header> 25 + 26 + {% if page.extra.toc and page.toc %} 27 + <div class="toc-container"> 28 + <h2>Table of content</h2> 29 + <ul> 30 + {% for h1 in page.toc %} 31 + <li> 32 + <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a> 33 + {% if h1.children %} 34 + <ul> 35 + {% for h2 in h1.children %} 36 + <li><a href="{{ h2.permalink | safe }}">{{ h2.title }}</a></li> 37 + {% endfor %} 38 + </ul> 39 + {% endif %} 40 + </li> 41 + {% endfor %} 42 + </ul> 43 + </div> 44 + {% endif %} 45 + 46 + <div class="post-content"> 47 + {{ page.content | safe }} 48 + </div> 49 + 50 + {% if page.taxonomies.tags %} 51 + <footer class="post-tags"> 52 + {% for tag in page.taxonomies.tags %} 53 + <a href="/tags/{{ tag | slugify }}" class="tag">#{{ tag }}</a> 54 + {% endfor %} 55 + </footer> 56 + {% endif %} 57 + </article> 58 + {% endblock %}
+15
themes/anemone/templates/blog/section.html
··· 1 + {# templates/section.html #} 2 + {% extends "base.html" %} 3 + 4 + {% block content %} 5 + <section class="content-section"> 6 + <h1>{{ section.title }}</h1> 7 + {{ section.content | safe }} 8 + 9 + <ul class="content-list"> 10 + {% for page in section.pages %} 11 + {% include "partials/content-listing-item.html" %} 12 + {% endfor %} 13 + </ul> 14 + </section> 15 + {% endblock %}
+4
themes/anemone/templates/footer.html
··· 1 + <hr> 2 + <div id="footer-container"> 3 + <p>Made using <a target="_blank" rel="noopener noreferrer" href="https://github.com/Speyll/anemone">anemone</a> Zola theme</p> 4 + </div>
+20
themes/anemone/templates/index.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block content %} 4 + {{ section.content | safe }} 5 + 6 + {% if config.extra.list_pages %} 7 + <ul class="posts"> 8 + {% for page in section.pages %} 9 + <li> 10 + <a href="{{ page.permalink }}">{{ page.title }}</a> 11 + <span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span> 12 + </li> 13 + {% endfor %} 14 + </ul> 15 + {% endif %} 16 + 17 + {% if paginator %} 18 + {% include "partials/pagination.html" %} 19 + {% endif %} 20 + {% endblock %}
+58
themes/anemone/templates/page.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block head %} 4 + {{ super() }} 5 + {% include "partials/schema-article.html" %} 6 + {% endblock %} 7 + 8 + {% block content %} 9 + <article class="post"> 10 + <header class="post-header"> 11 + {% if page.date and page.extra.display_published | default(value=true) %} 12 + <time datetime="{{ page.date }}">Published on: 13 + <span class="accent-data">{{ page.date | date(format="%Y-%m-%d") }}</span> 14 + </time> 15 + {% endif %} 16 + 17 + {% if page.extra.author %} 18 + <address rel="author">By 19 + <span class="accent-data">{{ page.extra.author }}</span> 20 + </address> 21 + {% endif %} 22 + 23 + <h1>{{ page.title }}</h1> 24 + </header> 25 + 26 + {% if page.extra.toc and page.toc %} 27 + <div class="toc-container"> 28 + <h2>Table of content</h2> 29 + <ul> 30 + {% for h1 in page.toc %} 31 + <li> 32 + <a href="{{ h1.permalink | safe }}">{{ h1.title }}</a> 33 + {% if h1.children %} 34 + <ul> 35 + {% for h2 in h1.children %} 36 + <li><a href="{{ h2.permalink | safe }}">{{ h2.title }}</a></li> 37 + {% endfor %} 38 + </ul> 39 + {% endif %} 40 + </li> 41 + {% endfor %} 42 + </ul> 43 + </div> 44 + {% endif %} 45 + 46 + <div class="post-content"> 47 + {{ page.content | safe }} 48 + </div> 49 + 50 + {% if page.taxonomies.tags %} 51 + <div class="post-tags"> 52 + {% for tag in page.taxonomies.tags %} 53 + <a href="/tags/{{ tag | slugify }}" class="tag">#{{ tag }} </a> 54 + {% endfor %} 55 + </div> 56 + {% endif %} 57 + </article> 58 + {% endblock %}
+8
themes/anemone/templates/partials/content-listing-item.html
··· 1 + <li class="title-list"> 2 + {% if page.date %} 3 + <time class="content-meta">{{ page.date | date(format="%Y-%m-%d") }}</time> 4 + {% endif %} 5 + <a href="{{ page.permalink }}" class="content-link"> 6 + {{ page.title }} 7 + </a> 8 + </li>
+17
themes/anemone/templates/partials/pagination.html
··· 1 + <nav class="pagination" aria-label="Pagination"> 2 + <div class="pagination-inner"> 3 + {% if paginator.previous %} 4 + <a href="{{ paginator.previous }}" class="page-item" aria-label="Previous page"> 5 + <svg class="icon"><use href="{{ get_url(path='icons.svg#chevronLeft') }}"></use></svg> 6 + </a> 7 + {% endif %} 8 + 9 + <span class="page-current accent-data">{{ paginator.current_index }} of {{ paginator.number_pagers }}</span> 10 + 11 + {% if paginator.next %} 12 + <a href="{{ paginator.next }}" class="page-item" aria-label="Next page"> 13 + <svg class="icon"><use href="{{ get_url(path='icons.svg#chevronRight') }}"></use></svg> 14 + </a> 15 + {% endif %} 16 + </div> 17 + </nav>
+21
themes/anemone/templates/partials/schema-article.html
··· 1 + <script type="application/ld+json"> 2 + { 3 + "@context": "https://schema.org", 4 + "@type": "Article", 5 + "headline": "{{ page.title }}", 6 + {% if config.extra.author %} 7 + "author": { 8 + "@type": "Person", 9 + "name": "{{ config.extra.author }}" 10 + }, 11 + {% endif %} 12 + {% if page.date %} 13 + "datePublished": "{{ page.date }}", 14 + {% endif %} 15 + "description": "{{ page.description | default(value=config.description) }}", 16 + "publisher": { 17 + "@type": "Organization", 18 + "name": "{{ config.title }}" 19 + } 20 + } 21 + </script>
+19
themes/anemone/templates/section.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block content %} 4 + <section class="content-section"> 5 + <h1>{{ section.title }}</h1> 6 + {{ section.content | safe }} 7 + 8 + <ul class="content-list"> 9 + {# Use paginator if it exists, else regular pages #} 10 + {% for page in paginator.pages | default(value=section.pages) %} 11 + {% include "partials/content-listing-item.html" %} 12 + {% endfor %} 13 + </ul> 14 + 15 + {% if paginator %} 16 + {% include "partials/pagination.html" %} 17 + {% endif %} 18 + </section> 19 + {% endblock %}
+4
themes/anemone/templates/shortcodes/img.html
··· 1 + <div {% if class %}class="{{class}}"{% endif %}> 2 + <img src="{{id}}" {% if alt %}alt="{{alt}}"{% endif %}> 3 + {% if caption %}<div class="caption">{{caption}}</div>{% endif %} 4 + </div>
+1
themes/anemone/templates/shortcodes/mark.html
··· 1 + <mark>{{content}}</mark>
+4
themes/anemone/templates/shortcodes/webring.html
··· 1 + <span class="webring"> 2 + <a class="no-style" href={{prev}}><svg class="icon"><use href="{{ get_url(path='icons.svg#chevronLeft', trailing_slash=false) | safe }}"></use></svg></a> 3 + <a href={{webring}}>{{webringName}}</a> 4 + <a class="no-style" href={{next}}><svg class="icon"><use href="{{ get_url(path='icons.svg#chevronRight', trailing_slash=false) | safe }}"></use></svg></a></span>
+11
themes/anemone/templates/shortcodes/youtube.html
··· 1 + <div {% if class %}class="{{class}}"{% endif %}> 2 + <iframe 3 + src="https://www.youtube-nocookie.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}" 4 + loading="lazy" 5 + frameborder="0" 6 + allow="accelerometer; encrypted-media; gyroscope; picture-in-picture" 7 + webkitallowfullscreen 8 + mozallowfullscreen 9 + allowfullscreen> 10 + </iframe> 11 + </div>
+20
themes/anemone/templates/sitemap.xml
··· 1 + <?xml version="1.0" encoding="utf-8"?> 2 + <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> 3 + {% set root = get_section(path="_index.md") %} 4 + {% for page in root.pages %} 5 + <url> 6 + <loc>{{ page.permalink | safe }}</loc> 7 + {% if page.date %}<lastmod>{{ page.date | date(format="%Y-%m-%d") }}</lastmod>{% endif %} 8 + </url> 9 + {% endfor %} 10 + 11 + {% for subsection in root.subsections %} 12 + {% set sub = get_section(path=subsection) %} 13 + {% for page in sub.pages %} 14 + <url> 15 + <loc>{{ page.permalink | safe }}</loc> 16 + {% if page.date %}<lastmod>{{ page.date | date(format="%Y-%m-%d") }}</lastmod>{% endif %} 17 + </url> 18 + {% endfor %} 19 + {% endfor %} 20 + </urlset>
+13
themes/anemone/templates/tags/list.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block content %} 4 + <h1>All Tags</h1> 5 + <ul> 6 + {% for tag in terms %} 7 + <li> 8 + <a href="{{ tag.permalink }}">#{{ tag.name }}</a> 9 + ({{ tag.pages | length }} posts) 10 + </li> 11 + {% endfor %} 12 + </ul> 13 + {% endblock %}
+13
themes/anemone/templates/tags/single.html
··· 1 + {% extends "base.html" %} 2 + 3 + {% block content %} 4 + <h1>Posts tagged: {{ term.name }}</h1> 5 + <ul> 6 + {% for page in term.pages %} 7 + <li> 8 + <a href="{{ page.permalink }}">{{ page.title }}</a> 9 + <time>{{ page.date | date(format="%Y-%m-%d") }}</time> 10 + </li> 11 + {% endfor %} 12 + </ul> 13 + {% endblock %}
+13
themes/anemone/theme.toml
··· 1 + name = "anemone" 2 + description = "A minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas." 3 + license = "MIT" 4 + homepage = "https://github.com/Speyll/anemone" 5 + min_version = "0.4.0" 6 + demo = "https://anemone.pages.dev" 7 + 8 + [extra] 9 + 10 + 11 + [author] 12 + name = "Speyll" 13 + homepage = "https://speyllsite.pages.dev/"