Compare commits
3 Commits
a966b59b66
...
8f5f042794
Author | SHA1 | Date | |
---|---|---|---|
8f5f042794 | |||
600cc9e51f | |||
65b3ad7fbf |
|
@ -1,6 +1,6 @@
|
|||
Title: Hand of Ozymandias
|
||||
Date: 2012-03-23
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: A withered hand I welded out of scrap metal.
|
||||
|
||||
I was visiting my cousins in Radium, BC and decided to learn stick welding at
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Title: LED Dress
|
||||
Date: 2016-03-18
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: A dress made out of LEDs that twinkle like stars.
|
||||
|
||||
A friend of mine was attending a stars and constellations themed ball. She
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Title: Remote Control Light Switch
|
||||
Date: 2014-10-09
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: A device to toggle my lights remotely.
|
||||
|
||||
I wanted the ability to toggle my bedroom light remotely for convenience. I
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Title: Man’s Reach Exceeds His Grasp
|
||||
Date: 2012-04-11
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: My first attempt at painting with acrylic.
|
||||
|
||||
The painting is called “Man’s Reach Exceeds His Grasp”. I've always wanted to
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Title: Automatic Plant Waterer
|
||||
Date: 2014-06-05
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: A device that automatically waters plants.
|
||||
|
||||
One day I decided watering my one plant was too much work, so I automated it.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Title: Solar Car
|
||||
Date: 2013-04-27
|
||||
Category: Projects
|
||||
Category: Creations
|
||||
Summary: About my time volunteering with the University of Calgary Solar Car Team, where I designed a maximum power point tracker.
|
||||
|
||||
I joined the University of Calgary Solar Car Team in my first semester for a
|
||||
|
|
65
pelicanconf_lite.py
Normal file
65
pelicanconf_lite.py
Normal file
|
@ -0,0 +1,65 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*- #
|
||||
from __future__ import unicode_literals
|
||||
|
||||
AUTHOR = 'Tanner Collin'
|
||||
SITENAME = 'Tanner Collin'
|
||||
SITEURL = ''
|
||||
|
||||
PATH = 'content'
|
||||
|
||||
TIMEZONE = 'Canada/Mountain'
|
||||
|
||||
DEFAULT_LANG = 'en'
|
||||
|
||||
# Feed generation is usually not desired when developing
|
||||
FEED_ALL_ATOM = None
|
||||
CATEGORY_FEED_ATOM = None
|
||||
TRANSLATION_FEED_ATOM = None
|
||||
AUTHOR_FEED_ATOM = None
|
||||
AUTHOR_FEED_RSS = None
|
||||
|
||||
DEFAULT_PAGINATION = False
|
||||
|
||||
MARKDOWN = {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
'markdown.extensions.meta': {},
|
||||
'markdown.extensions.toc': {
|
||||
'toc_depth': '2-3',
|
||||
'anchorlink': True,
|
||||
},
|
||||
},
|
||||
'output_format': 'html5',
|
||||
}
|
||||
|
||||
STATIC_PATHS = ['images', 'extra']
|
||||
|
||||
EXTRA_PATH_METADATA = {
|
||||
#'extra/favicon.svg': {'path': 'favicon.svg'},
|
||||
}
|
||||
|
||||
# Uncomment following line if you want document-relative URLs when developing
|
||||
#RELATIVE_URLS = True
|
||||
|
||||
THEME = 'themes/lite'
|
||||
|
||||
# turn off useless outputs
|
||||
TAG_SAVE_AS = ''
|
||||
CATEGORY_SAVE_AS = ''
|
||||
AUTHOR_SAVE_AS = ''
|
||||
ARCHIVES_SAVE_AS = ''
|
||||
AUTHORS_SAVE_AS = ''
|
||||
CATEGORIES_SAVE_AS = ''
|
||||
TAGS_SAVE_AS = ''
|
||||
|
||||
INDEX_SAVE_AS = 'index.html'
|
||||
ARTICLE_URL = '{slug}/'
|
||||
ARTICLE_SAVE_AS = '{slug}/index.html'
|
||||
PAGE_URL = '{slug}/'
|
||||
PAGE_SAVE_AS = '{slug}/index.html'
|
||||
CATEGORY_URL = '{slug}/'
|
||||
CATEGORY_SAVE_AS = '{slug}/index.html'
|
||||
|
||||
PROD = False
|
65
publishconf_lite.py
Normal file
65
publishconf_lite.py
Normal file
|
@ -0,0 +1,65 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*- #
|
||||
from __future__ import unicode_literals
|
||||
|
||||
AUTHOR = 'Tanner Collin'
|
||||
SITENAME = 'Tanner Collin'
|
||||
SITEURL = ''
|
||||
|
||||
PATH = 'content'
|
||||
|
||||
TIMEZONE = 'Canada/Mountain'
|
||||
|
||||
DEFAULT_LANG = 'en'
|
||||
|
||||
# Feed generation is usually not desired when developing
|
||||
FEED_ALL_ATOM = None
|
||||
CATEGORY_FEED_ATOM = None
|
||||
TRANSLATION_FEED_ATOM = None
|
||||
AUTHOR_FEED_ATOM = None
|
||||
AUTHOR_FEED_RSS = None
|
||||
|
||||
DEFAULT_PAGINATION = False
|
||||
|
||||
MARKDOWN = {
|
||||
'extension_configs': {
|
||||
'markdown.extensions.codehilite': {'css_class': 'highlight'},
|
||||
'markdown.extensions.extra': {},
|
||||
'markdown.extensions.meta': {},
|
||||
'markdown.extensions.toc': {
|
||||
'toc_depth': '2-3',
|
||||
'anchorlink': True,
|
||||
},
|
||||
},
|
||||
'output_format': 'html5',
|
||||
}
|
||||
|
||||
STATIC_PATHS = ['images', 'extra']
|
||||
|
||||
EXTRA_PATH_METADATA = {
|
||||
#'extra/favicon.svg': {'path': 'favicon.svg'},
|
||||
}
|
||||
|
||||
# Uncomment following line if you want document-relative URLs when developing
|
||||
#RELATIVE_URLS = True
|
||||
|
||||
THEME = 'themes/lite'
|
||||
|
||||
# turn off useless outputs
|
||||
TAG_SAVE_AS = ''
|
||||
CATEGORY_SAVE_AS = ''
|
||||
AUTHOR_SAVE_AS = ''
|
||||
ARCHIVES_SAVE_AS = ''
|
||||
AUTHORS_SAVE_AS = ''
|
||||
CATEGORIES_SAVE_AS = ''
|
||||
TAGS_SAVE_AS = ''
|
||||
|
||||
INDEX_SAVE_AS = 'index.html'
|
||||
ARTICLE_URL = '{slug}/'
|
||||
ARTICLE_SAVE_AS = '{slug}/index.html'
|
||||
PAGE_URL = '{slug}/'
|
||||
PAGE_SAVE_AS = '{slug}/index.html'
|
||||
CATEGORY_URL = '{slug}/'
|
||||
CATEGORY_SAVE_AS = '{slug}/index.html'
|
||||
|
||||
PROD = True
|
8
themes/lite/templates/article.html
Normal file
8
themes/lite/templates/article.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h1>{{ article.title }}</h1>
|
||||
{{ article.summary }}
|
||||
{{ article.locale_date }}
|
||||
<hr />
|
||||
{{ article.content }}
|
||||
{% endblock %}
|
8
themes/lite/templates/base.html
Normal file
8
themes/lite/templates/base.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<meta charset="UTF-8"/>
|
||||
<link rel="icon" href="data:;base64,=">
|
||||
<pre>
|
||||
Tanner Collin
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</pre>
|
10
themes/lite/templates/category.html
Normal file
10
themes/lite/templates/category.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>{{ category }}</h2>
|
||||
{% for article in articles_page.object_list if article.category == category %}
|
||||
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
|
||||
{{ article.summary }}
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
42
themes/lite/templates/index.html
Normal file
42
themes/lite/templates/index.html
Normal file
|
@ -0,0 +1,42 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
Hi, I'm Tanner! I do firmware and web development in Calgary.
|
||||
|
||||
Contact Info
|
||||
============
|
||||
|
||||
Email: <a href="mailto:site2@tannercollin.com">site2@tannercollin.com</a>
|
||||
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="https://news.t0.vc/">QotNews</a>
|
||||
<a href="https://notica.us">Notica</a>
|
||||
<a href="https://my.protospace.ca">Spaceport</a>
|
||||
<a href="https://txt.t0.vc">t0txt</a>
|
||||
<a href="https://github.com/tannercollin/standardnotes-fs">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 %}
|
|
@ -97,7 +97,7 @@
|
|||
|
||||
<p>Sometimes I create art or interactive tech.</p>
|
||||
|
||||
{% for article in articles_page.object_list if article.category.name == 'Projects' %}
|
||||
{% for article in articles_page.object_list if article.category.name == 'Creations' %}
|
||||
<h3><a href="{{ article.url }}">{{ article.title }}</a></h3>
|
||||
<div class="summary">
|
||||
{{ article.summary }}
|
||||
|
|
Loading…
Reference in New Issue
Block a user