You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
714 B

{% 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 %}