{% extends "base.html" %}
{% block meta %}
<title>Projects | t0.vc</title>
{% endblock %}

{% block content %}
<h1>Projects</h1>

<p>My main hobby is working on software projects. I typically design websites or build tools that make my life easier.</p>

{% for article in articles if article.category.name == 'Projects' %}
<p>
	<a href="/{{ article.url }}">{{ article.title }}</a><br/>
	{{ article.summary | striptags }}
</p>

{% endfor %}

<p>
	<a class="external" href="https://github.com/tannercollin/standardnotes-fs" target="_blank" rel="noreferrer noopener">standardnotes-fs</a><br/>
	A filesystem that mounts your Standard Notes account as a directory of text files that you can edit.
</p>

{% endblock %}