personal-site/themes/lite/templates/projects.html

26 lines
714 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block meta %}
2023-02-21 21:21:11 +00:00
<title>Projects | t0.vc</title>
{% endblock %}
{% block content %}
2023-04-22 05:55:10 +00:00
<h1>Projects</h1>
2023-02-21 21:21:11 +00:00
2023-04-22 05:55:10 +00:00
<p>My main hobby is working on software projects. I typically design websites or build tools that make my life easier.</p>
2022-05-19 22:32:58 +00:00
{% for article in articles if article.category.name == 'Projects' %}
2023-04-22 05:55:10 +00:00
<p>
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
{{ article.summary | striptags }}
</p>
2022-05-19 22:32:58 +00:00
{% endfor %}
2023-04-22 05:55:10 +00:00
<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 %}