45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
Hi, I'm Tanner! I do firmware and web development in Calgary.
|
|
|
|
Please sign my <a href=g>Guest Book</a>!
|
|
|
|
Contact Info
|
|
============
|
|
|
|
Email: site2@tannercollin.com
|
|
Telegram: <a href=https://t.me/tannercollin>@tannercollin</a>
|
|
|
|
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
|
|
========
|
|
|
|
<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>
|
|
|
|
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 %}
|
|
{% endblock %}
|