the home site for me: also iteration 3 or 4 of my site
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add hcard

+27 -8
+1 -1
content/_index.md
··· 2 2 +++ 3 3 4 4 <div style="display: flex; justify-content: center;"> 5 - <img src="/pfps/starry.webp" alt="an image of kieran holding a white kitten" width="512" height="512"/> 5 + <img src="/pfps/starry.webp" alt="an image of kieran holding a white kitten" width="512" height="512" class="u-photo"/> 6 6 </div> 7 7 8 8 ## About me
+6 -6
content/verify.md
··· 12 12 13 13 # accounts 14 14 15 - * Github: [@taciturnaxolotl](https://github.com/taciturnaxolotl) (formerly @kcoderhtml) 16 - * [Hackclub Slack](https://hackclub.com/slack/): [@krn](https://hackclub.slack.com/team/U062UG485EE) (display name changes quite often though) with userID `U062UG485EE` 17 - * Bluesky: [@dunkirk.sh](https://bsky.app/profile/dunkirk.sh) 18 - * Mastodon: [@taciturnaxolotl@social.dino.icu](https://social.dino.icu/@taciturnaxolotl) 19 - * Youtube: [@wanderer.archives](https://www.youtube.com/@wanderer.archives) 20 - * Matrix: [@kieran:dumpsterfire.icu](https://matrix.to/#/@kieran.matrix.dumpsterfire.icu) or [@sclacker:matrix.org](https://matrix.to/#/@sclacker:matrix.org) (i'm active on here once in a bluemoon so this isn't a great way to contact me urgently) 15 + * Github: <a href="https://github.com/taciturnaxolotl" rel="me">@taciturnaxolotl</a> (formerly @kcoderhtml) 16 + * <a href="https://hackclub.com/slack/">Hackclub Slack</a>: <a href="https://hackclub.slack.com/team/U062UG485EE" rel="me">@krn</a> (display name changes quite often though) with userID `U062UG485EE` 17 + * Bluesky: <a href="https://bsky.app/profile/dunkirk.sh" rel="me">@dunkirk.sh</a> 18 + * Mastodon: <a href="https://social.dino.icu/@taciturnaxolotl" rel="me">@taciturnaxolotl@social.dino.icu</a> 19 + * Youtube: <a href="https://www.youtube.com/@wanderer.archives" rel="me">@wanderer.archives</a> 20 + * Matrix: <a href="https://matrix.to/#/@kieran.matrix.dumpsterfire.icu" rel="me">@kieran:dumpsterfire.icu</a> or <a href="https://matrix.to/#/@sclacker:matrix.org" rel="me">@sclacker:matrix.org</a> (i'm active on here once in a bluemoon so this isn't a great way to contact me urgently) 21 21 * Signal: `verox.89` 22 22 * Phone #: *Do you really think i'm going to publicly share that?*
+19
templates/head.html
··· 95 95 } 96 96 </script> 97 97 <script async src="https://abacus.jasoncameron.dev/hit/dunkirk.sh/counter{%- if url | split(pat='/') | slice(start=3) | join != '' -%}-{{url | split(pat='/') | slice(start=3) | join(sep=' ') | slugify}}{%- endif -%}?callback=cb"></script> 98 + 98 99 <link rel="me" href="https://social.dino.icu/@taciturnaxoltol" /> 99 100 <link rel="me" href="https://github.com/taciturnaxolotl" /> 100 101 <link rel="me" href="https://bsky.app/profile/dunkirk.sh" /> 101 102 <meta name="fediverse:creator" content="@taciturnaxoltol@social.dino.icu" /> 103 + 104 + <div class="h-card" style="display:none"> 105 + <a class="u-url" rel="me home" href="https://dunkirk.sh"> 106 + <span class="p-name">Kieran Klukas</span> 107 + </a> 108 + <p class="p-given-name">Kieran</p> 109 + <p class="p-family-name">Klukas</p> 110 + <p class="dt-bday">2008-04-27</p> 111 + <p class="p-sex">male</p> 112 + <p class="p-note"> 113 + {% set time = now() | date(format="%s") | int - 1209254400 %}{{ time / 31536000 | round(method="floor") }}, typescript nerd, videographer, frc programmer, semi retired fpv pilot 114 + </p> 115 + <a class="u-email" href="mailto:contact@dunkirk.sh">contact@dunkirk.sh</a> 116 + <div class="p-adr h-adr"> 117 + <span class="p-country-name">United States of America</span> 118 + </div> 119 + <img class="u-photo" src="/pfps/starry.webp" alt="an image of kieran holding a white kitten" /> 120 + </div>
+1 -1
templates/shortcodes/age.md
··· 1 - {% set result = 1 %}{% for _ in range(end=length) %}{% set_global result = result * 10 %}{% endfor %}{% set time = now() | date(format="%s") | int - 1209254400 %}{{ time / 31536000 * result | round() / result }} 1 + {% set time = now() | date(format="%s") | int - 1209254400 %}{{ (time / 31536000) | round(method="floor", precision=length) }}