2022-02-14 23:01:50 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block meta %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block style %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-05-19 22:32:58 +00:00
|
|
|
<pre style=font:unset>
|
2022-02-14 23:01:50 +00:00
|
|
|
Projects
|
|
|
|
========
|
|
|
|
|
|
|
|
My main hobby is working on software projects. I typically design websites or
|
|
|
|
build tools that make my life easier.
|
|
|
|
|
2022-05-19 22:32:58 +00:00
|
|
|
{% for article in articles if article.category.name == 'Projects' %}
|
|
|
|
<a href="/{{ article.url }}">{{ article.title }}</a>
|
|
|
|
{{ article.summary | striptags }}
|
2022-02-14 23:01:50 +00:00
|
|
|
|
2022-05-19 22:32:58 +00:00
|
|
|
{% endfor %}
|
2022-02-14 23:01:50 +00:00
|
|
|
<a href="https://github.com/tannercollin/standardnotes-fs" target="_blank" rel="noreferrer noopener">standardnotes-fs*</a>
|
|
|
|
A filesystem that mounts your Standard Notes account as a directory of text
|
|
|
|
files that you can edit.
|
|
|
|
|
|
|
|
* external link
|
|
|
|
{% endblock %}
|
|
|
|
|