Remove extra characters, improve article css

This commit is contained in:
Tanner Collin 2021-08-20 09:38:28 +00:00
parent 052a919f12
commit 20b46d3b02
4 changed files with 25 additions and 17 deletions

View File

@ -1,4 +1,4 @@
Title: Mans Reach Exceeds His Grasp Title: Man's Reach Exceeds His Grasp
Date: 2012-04-11 Date: 2012-04-11
Category: Creations Category: Creations
Summary: My first attempt at painting with acrylic. Summary: My first attempt at painting with acrylic.

View File

@ -1,11 +1,19 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block meta %}
<meta charset=UTF-8>
{% endblock %}
{% block style %} {% block style %}
<style> <style>
p { p, h2, h3, h4, h5 {
margin: 0; margin: 0;
} }
.highlight { .toclink {
color: black;
}
.highlight > pre {
margin: 0;
padding: 0.5rem; padding: 0.5rem;
overflow-x: auto; overflow-x: auto;
background-color: #eee; background-color: #eee;

View File

@ -1,4 +1,4 @@
<meta charset=UTF-8><link rel=icon href=data:,>{% block style %}{% endblock %}<pre> {% block meta %}{% endblock %}<link rel=icon href=data:,>{% block style %}{% endblock %}<pre>
Tanner Collin Tanner Collin
{% block content %} {% block content %}

View File

@ -5,38 +5,38 @@ Hi, I'm Tanner! I do firmware and web development in Calgary.
Contact Info Contact Info
============ ============
Email: <a href="mailto:site2@tannercollin.com">site2@tannercollin.com</a> Email: site2@tannercollin.com
Telegram: <a href="https://t.me/tannercollin">@tannercollin</a> Telegram: <a href=https://t.me/tannercollin>@tannercollin</a>
Resume Resume
====== ======
- Firmware Engineer at Cabana Blockchain, 2018 - Firmware Engineer at Cabana Blockchain, 2018-
- Lead Hardware Engineer at Critical Control, 20162018 - Lead Hardware Engineer at Critical Control, 2016-2018
- Electrical Engineer at Opener Aero, 20162016 - Electrical Engineer at Opener Aero, 2016-2016
- Electrical Engineer Intern at Pason Systems, 20142015 - Electrical Engineer Intern at Pason Systems, 2014-2015
- BSc. Electrical Engineering from University of Calgary - BSc. Electrical Engineering from University of Calgary
Projects Projects
======== ========
<a href="q">QotNews</a> <a href=q>QotNews</a>
<a href="n">Notica</a> <a href=n>Notica</a>
<a href="m">Spaceport</a> <a href=m>Spaceport</a>
<a href="t">t0txt</a> <a href=t>t0txt</a>
<a href="s">standardnotes-fs</a> <a href=s>standardnotes-fs</a>
Creations Creations
========= =========
{% for article in articles_page.object_list if article.category.name == 'Creations' %} {% for article in articles_page.object_list if article.category.name == 'Creations' %}
<a href="{{ article.url }}">{{ article.title }}</a> <a href={{ article.url }}>{{ article.title }}</a>
{% endfor %} {% endfor %}
Writing Writing
======= =======
{% for article in articles_page.object_list if article.category.name == 'Writing' %} {% for article in articles_page.object_list if article.category.name == 'Writing' %}
<a href="{{ article.url }}">{{ article.title }}</a> <a href={{ article.url }}>{{ article.title }}</a>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}