Add subpages, and wine crate coffee table
This commit is contained in:
21
themes/lite/templates/creations.html
Normal file
21
themes/lite/templates/creations.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends "base.html" %}
|
||||
{% block meta %}
|
||||
{% endblock %}
|
||||
|
||||
{% block style %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Creations
|
||||
=========
|
||||
|
||||
Sometimes I create art or interactive tech.
|
||||
|
||||
{% for article in articles if article.category.name == 'Creations' %}
|
||||
<a href="/{{ article.url }}">{{ article.title }}</a>
|
||||
{{ article.summary | striptags }}
|
||||
|
||||
{% endfor %}
|
||||
|
||||
{% endblock %}
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
Hi, I'm Tanner! I like home automation, bots, privacy,
|
||||
Python, Debian, coffee, and makerspaces.
|
||||
Hi, I'm Tanner! I like home automation, <a href=d>sensors</a>, bots,
|
||||
privacy, Python, Debian, coffee, and makerspaces.
|
||||
|
||||
Please sign my <a href=g>Guest Book</a>!
|
||||
|
||||
@@ -22,20 +22,23 @@ Projects
|
||||
<a href=n>Notica*
|
||||
<a href=m>Spaceport*
|
||||
<a href=t>t0txt*
|
||||
<a href=s>standardnotes-fs*</a>
|
||||
<a href=y>[more]</a>
|
||||
|
||||
* external link
|
||||
|
||||
Creations
|
||||
|
||||
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
|
||||
{% if loop.index <= 4 %}
|
||||
<a href={{ article.url }}>{{ article.title }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<a href=z>[more]
|
||||
</a>
|
||||
Writing
|
||||
|
||||
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
|
||||
<a href={{ article.url }}>{{ article.title }}
|
||||
{% endfor %}
|
||||
<a href=x>[Text Files]
|
||||
<a href=x>[more]
|
||||
{% endblock %}
|
||||
|
36
themes/lite/templates/projects.html
Normal file
36
themes/lite/templates/projects.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{% extends "base.html" %}
|
||||
{% block meta %}
|
||||
{% endblock %}
|
||||
|
||||
{% block style %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Projects
|
||||
========
|
||||
|
||||
My main hobby is working on software projects. I typically design websites or
|
||||
build tools that make my life easier.
|
||||
|
||||
<a href="https://news.t0.vc/" target="_blank" rel="noreferrer noopener">QotNews*</a> - <a class="source" href="https://git.tannercollin.com/tanner/qotnews" target="_blank" rel="noreferrer noopener">source code*</a>
|
||||
Hacker News, Reddit, Lobsters, and Tildes articles pre-rendered in reader mode.
|
||||
Optimized for speed and distraction-free reading.
|
||||
|
||||
<a href="https://notica.us" target="_blank" rel="noreferrer noopener">Notica*</a> - <a class="source" href="https://github.com/tannercollin/Notica" target="_blank" rel="noreferrer noopener">source code*</a>
|
||||
Send browser notifications from your terminal. No installation. No registration.
|
||||
|
||||
<a href="https://my.protospace.ca" target="_blank" rel="noreferrer noopener">Spaceport*</a> - <a class="source" href="https://github.com/Protospace/spaceport" target="_blank" rel="noreferrer noopener">source code*</a>
|
||||
Makerspace members' portal for Calgary Protospace. It tracks membership,
|
||||
courses, training, access cards, and more.
|
||||
|
||||
<a href="https://txt.t0.vc" target="_blank" rel="noreferrer noopener">t0txt*</a> - <a class="source" href="https://github.com/tannercollin/t0txt" target="_blank" rel="noreferrer noopener">source code*</a>
|
||||
Minimal command line pastebin. Allows you to upload text notes from a bash pipe
|
||||
or web browser.
|
||||
|
||||
<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 %}
|
||||
|
@@ -1,15 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
{% block meta %}
|
||||
{% endblock %}
|
||||
|
||||
{% block style %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Text Files</h1>
|
||||
Here are some various text notes that I share with the public.
|
||||
<hr />
|
||||
{% for f in list_text_files() %}
|
||||
<a href="../text/{{ f }}">{{ f }}</a>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
28
themes/lite/templates/writing.html
Normal file
28
themes/lite/templates/writing.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% extends "base.html" %}
|
||||
{% block meta %}
|
||||
{% endblock %}
|
||||
|
||||
{% block style %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
Writing
|
||||
=======
|
||||
|
||||
Various articles, mostly about computers.
|
||||
|
||||
{% for article in articles if article.category.name == 'Writing' %}
|
||||
<a href="/{{ article.url }}">{{ article.title }}</a>
|
||||
{{ article.summary | striptags }}
|
||||
|
||||
{% endfor %}
|
||||
|
||||
Text Files
|
||||
----------
|
||||
|
||||
Here are some random text notes that I share with the public.
|
||||
|
||||
{% for f in list_text_files() %}
|
||||
<a href="../text/{{ f }}">{{ f }}</a>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user