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

43 lines
998 B
HTML
Raw Normal View History

2021-07-25 22:40:04 +00:00
{% extends "base.html" %}
{% block content %}
2021-07-26 19:22:05 +00:00
Hi, I'm Tanner! I do firmware and web development in Calgary.
2021-10-05 04:54:37 +00:00
Please sign my <a href=g>Guest Book</a>!
2021-10-14 06:30:54 +00:00
==[ Contact Info
2021-07-26 19:22:05 +00:00
Email: site2@tannercollin.com
2021-10-14 06:30:54 +00:00
Telegram: @tannercollin
2021-07-26 19:22:05 +00:00
2021-10-14 06:30:54 +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
2021-10-14 06:30:54 +00:00
==[ Projects
2021-07-26 19:22:05 +00:00
2021-10-14 06:30:54 +00:00
<a href=q>QotNews *
<a href=n>Notica *
<a href=m>Spaceport *
<a href=t>t0txt *
<a href=s>standardnotes-fs *</a>
2021-07-26 19:22:05 +00:00
2021-10-14 06:30:54 +00:00
* external link
==[ Creations
2021-07-26 19:22:05 +00:00
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
2021-10-14 06:30:54 +00:00
<a href={{ article.url }}>{{ article.title }}
2021-07-26 19:22:05 +00:00
{% endfor %}
2021-10-14 06:30:54 +00:00
</a>
==[ 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 %}
2021-10-14 06:41:18 +00:00
<a href=x>[Text Files]
2021-07-25 22:40:04 +00:00
{% endblock %}