28 lines
712 B
HTML
28 lines
712 B
HTML
{% extends "base.html" %}
|
|
{% block meta %}
|
|
{% endblock %}
|
|
|
|
{% block style %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<pre style=font:unset>
|
|
Projects
|
|
========
|
|
|
|
My main hobby is working on software projects. I typically design websites or
|
|
build tools that make my life easier.
|
|
|
|
{% for article in articles if article.category.name == 'Projects' %}
|
|
<a href="/{{ article.url }}">{{ article.title }}</a>
|
|
{{ article.summary | striptags }}
|
|
|
|
{% endfor %}
|
|
<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 %}
|
|
|