
Hello, and welcome to my site! I'm Agnes the Alien, and this is my personal site and weblog. Feel free to poke around and see what I've got.
I mostly write about creativity, technology, alterhumanity, fictosexuality, disability, and mental health.
Current status:
{{ collections.all | eleventyNavigation | eleventyNavigationToHtml | safe }}
{% set numberOfLatestPostsToShow = 10 %}
{% set postsCount = collections.posts | length %}
{% set latestPostsCount = postsCount | min(numberOfLatestPostsToShow) %}
Latest {{ latestPostsCount }} Post{% if latestPostsCount != 1 %}s{% endif %}
{% set postslist = collections.posts | head(-1 * numberOfLatestPostsToShow) %} {% set postslistCounter = postsCount %} {% include "postslist.njk" %} {% set morePosts = postsCount - numberOfLatestPostsToShow %} {% if morePosts > 0 %}{{ morePosts }} more post{% if morePosts != 1 %}s{% endif %} can be found in the archive.
{% endif %}
