46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<pre style=font:unset>Hi, I'm Tanner! I like home automation, privacy, bots,
|
|
Python, <a href=d>sensors</a>, Debian, coffee, and makerspaces.
|
|
|
|
Please sign my <a href=g>Guest Book</a>!
|
|
|
|
Email: site3@tannercollin.com
|
|
Telegram: @tannercollin
|
|
|
|
Resume
|
|
|
|
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
|
|
|
|
Projects
|
|
|
|
{% for article in articles_page.object_list if article.category.name == 'Projects' %}
|
|
{% if loop.index <= 4 %}
|
|
<a href={{ article.url }}>{{ article.title }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
<a href=y>[more]</a>
|
|
|
|
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' %}
|
|
{% if loop.index <= 4 %}
|
|
<a href={{ article.url }}>{{ article.title }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
<a href=x>[more]
|
|
{% endblock %}
|