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

43 lines
1.0 KiB
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.
Contact Info
============
Email: <a href="mailto:site2@tannercollin.com">site2@tannercollin.com</a>
Telegram: <a href="https://t.me/tannercollin">@tannercollin</a>
Resume
======
- Firmware Engineer at Cabana Blockchain, 2018
- Lead Hardware Engineer at Critical Control, 20162018
- Electrical Engineer at Opener Aero, 20162016
- Electrical Engineer Intern at Pason Systems, 20142015
- BSc. Electrical Engineering from University of Calgary
Projects
========
2021-08-20 08:47:50 +00:00
<a href="q">QotNews</a>
<a href="n">Notica</a>
<a href="m">Spaceport</a>
<a href="t">t0txt</a>
<a href="s">standardnotes-fs</a>
2021-07-26 19:22:05 +00:00
Creations
=========
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
<a href="{{ article.url }}">{{ article.title }}</a>
{% endfor %}
Writing
=======
{% for article in articles_page.object_list if article.category.name == 'Writing' %}
<a href="{{ article.url }}">{{ article.title }}</a>
{% endfor %}
2021-07-25 22:40:04 +00:00
{% endblock %}