Abstract article html up to base

This commit is contained in:
2023-04-21 23:55:10 -06:00
parent c0acfb8836
commit 6dfa58c66c
6 changed files with 107 additions and 122 deletions

View File

@@ -3,28 +3,23 @@
<title>Projects | t0.vc</title>
{% endblock %}
{% block style %}
{% endblock %}
{% block content %}
<pre style=font:unset>
<a href="/">Home | t0.vc</a>
<h1>Projects</h1>
Projects
========
My main hobby is working on software projects. I typically design websites or
build tools that make my life easier.
<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' %}
<a href="/{{ article.url }}">{{ article.title }}</a>
{{ article.summary | striptags }}
<p>
<a href="/{{ article.url }}">{{ article.title }}</a><br/>
{{ article.summary | striptags }}
</p>
{% 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
<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 %}