4.4 KiB
4.4 KiB
{% extends "../layouts/index.html" %}
{% block head %} {{ super() }}
{% endblock %}{% block body %} {% set date_format = "%A, %d %B, %Y" %}
welcome!
i'm rowan: game dev, artist, musician, and creature of the moon.
this site is devoted to highlighting my works. the design of this site is focused on having a small footprint, minimal waste, and accessible design. i've done my best to support many different browers and versions but maximum compatibility requires a lot of extra work (and shims)
not including linked or hosted projects, this site has
- no javascript
- few images
- less than 128 kB per page (with most being under 30 kB)
not everything that i make has the same focus but links to those projects will be annotated with content warnings.
blog
⇀-
{% for post in blog
| values
| filter(attribute="created_date")
| sort(attribute="created_date")
| reverse
| slice(end=5) %}
- {{ post.title }} {{ post.created_date | date(format=date_format) }} {% endfor %}
projects
⇀-
{% for project in projects
| values
| filter(attribute="created_date")
| sort(attribute="created_date")
| reverse
| slice(end=5) %}
- {{ project.title }} {{ project.created_date | date(format=date_format) }} {% endfor %}