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

45 lines
1.0 KiB
HTML
Raw Normal View History

2021-07-25 22:40:04 +00:00
{% extends "base.html" %}
{% block content %}
2022-02-27 23:59:21 +00:00
Hi, I'm Tanner! I like home automation, privacy, bots,
Python, <a href=d>sensors</a>, Debian, coffee, and makerspaces.
2021-07-26 19:22:05 +00:00
2021-10-05 04:54:37 +00:00
Please sign my <a href=g>Guest Book</a>!
2022-01-10 07:56:09 +00:00
Email: site3@tannercollin.com
2021-10-14 06:30:54 +00:00
Telegram: @tannercollin
2021-07-26 19:22:05 +00:00
2022-02-12 22:36:15 +00:00
Resume
2021-07-26 19:22:05 +00:00
2021-10-14 06:30:54 +00:00
Firmware Engineer at Cabana Blockchain, 2018-
Lead Hardware Engineer at Critical Control, 2016-2018
Electrical Engineer at Opener Aero, 2016-2016
Electrical Engineer Intern at Pason Systems, 2014-2015
BSc. Electrical Engineering from University of Calgary
2021-07-26 19:22:05 +00:00
2022-02-12 22:36:15 +00:00
Projects
2021-07-26 19:22:05 +00:00
2021-10-14 07:47:43 +00:00
<a href=q>QotNews*
<a href=n>Notica*
<a href=m>Spaceport*
<a href=t>t0txt*
<a href=y>[more]</a>
2021-07-26 19:22:05 +00:00
2021-10-14 06:30:54 +00:00
* external link
2022-02-12 22:36:15 +00:00
Creations
2021-07-26 19:22:05 +00:00
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
{% if loop.index <= 4 %}
2021-10-14 06:30:54 +00:00
<a href={{ article.url }}>{{ article.title }}
{% endif %}
2021-07-26 19:22:05 +00:00
{% endfor %}
<a href=z>[more]
2021-10-14 06:30:54 +00:00
</a>
2022-02-12 22:36:15 +00:00
Writing
2021-07-26 19:22:05 +00:00
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
2021-10-14 06:30:54 +00:00
<a href={{ article.url }}>{{ article.title }}
2021-07-26 19:22:05 +00:00
{% endfor %}
<a href=x>[more]
2021-07-25 22:40:04 +00:00
{% endblock %}