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

29 lines
626 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<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>
{% for article in articles_page.object_list %}
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
<p class="metadata">
{{ article.locale_date }}
{% if article.modified %}
— updated {{ article.locale_modified }}
{% endif %}
</p>
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
{% endblock %}