2020-05-10 01:36:58 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-05-30 01:40:22 +00:00
|
|
|
<p>
|
|
|
|
Hi, I'm Tanner! I do firmware design and web development, although I majored
|
|
|
|
in electrical engineering.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h2>Contact Info</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Email: <a href="mailto:site@tannercollin.com">site@tannercollin.com</a> <br />
|
|
|
|
Telegram: @tannercollin
|
|
|
|
</p>
|
|
|
|
|
2020-05-10 01:36:58 +00:00
|
|
|
{% for article in articles_page.object_list %}
|
2020-05-30 01:40:22 +00:00
|
|
|
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
|
2020-05-10 01:36:58 +00:00
|
|
|
<p class="metadata">
|
|
|
|
{{ article.locale_date }}
|
|
|
|
{% if article.modified %}
|
|
|
|
— updated {{ article.locale_modified }}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
<div class="summary">
|
|
|
|
{{ article.summary }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|