diff --git a/themes/lite/templates/article.html b/themes/lite/templates/article.html index 8ab341d..a8d52bc 100644 --- a/themes/lite/templates/article.html +++ b/themes/lite/templates/article.html @@ -1,12 +1,8 @@ {% extends "base.html" %} -{% block meta %} - - - + + {% block meta %} {{ article.title|striptags }} | t0.vc - - {% if article.date %} {% endif %} @@ -20,77 +16,14 @@ {% for tag in article.tags %} {% endfor %} - {% endblock %} - {% block style %} - - - - - {% endblock %} - - {% block content %} - -
-

Home | t0.vc

+ {% block content %}

{{ article.title }}

{{ article.summary }} {{ article.locale_date }}
- {{ article.content }} -
- - -{% endblock %} + +{{ article.content }} + + {% endblock %} diff --git a/themes/lite/templates/base.html b/themes/lite/templates/base.html index 8176b8a..e475823 100644 --- a/themes/lite/templates/base.html +++ b/themes/lite/templates/base.html @@ -1,2 +1,73 @@ -{% block meta %}{% endblock %}{% block style %}{% endblock %}{% block content %} -{% endblock %} + + + + {% block meta %} + {% endblock %} + + + + + + + +
+

Home | t0.vc

+ {% block content %} + {% endblock %} +
+ + diff --git a/themes/lite/templates/creations.html b/themes/lite/templates/creations.html index 172ab30..d823bf6 100644 --- a/themes/lite/templates/creations.html +++ b/themes/lite/templates/creations.html @@ -3,21 +3,16 @@ Creations | t0.vc {% endblock %} -{% block style %} -{% endblock %} - {% block content %} -
-Home | t0.vc
-
-Creations
-=========
+

Creations

-Sometimes I create art or interactive tech. +

Sometimes I create art or interactive tech.

{% for article in articles if article.category.name == 'Creations' %} -{{ article.title }} - {{ article.summary | striptags }} +

+ {{ article.title }}
+ {{ article.summary | striptags }} +

{% endfor %} diff --git a/themes/lite/templates/index.html b/themes/lite/templates/index.html index 0da8b35..9504d1f 100644 --- a/themes/lite/templates/index.html +++ b/themes/lite/templates/index.html @@ -1,6 +1,4 @@ -{% extends "base.html" %} -{% block content %} -
Hi, I'm Tanner! I like home automation, bots, Python,
+
Hi, I'm Tanner! I like home automation, bots, Python,
 Debian, coffee, sensors, and makerspaces.
 
 Please sign my Guest Book!
@@ -40,4 +38,3 @@ Writing
 {% endif %}
 {% endfor %}
 [more]
-{% endblock %}
diff --git a/themes/lite/templates/projects.html b/themes/lite/templates/projects.html
index ace36e6..93c0cbf 100644
--- a/themes/lite/templates/projects.html
+++ b/themes/lite/templates/projects.html
@@ -3,28 +3,23 @@
 Projects | t0.vc
 {% endblock %}
 
-{% block style %}
-{% endblock %}
-
 {% block content %}
-
-Home | t0.vc
+

Projects

-Projects -======== - -My main hobby is working on software projects. I typically design websites or -build tools that make my life easier. +

My main hobby is working on software projects. I typically design websites or build tools that make my life easier.

{% for article in articles if article.category.name == 'Projects' %} -{{ article.title }} - {{ article.summary | striptags }} +

+ {{ article.title }}
+ {{ article.summary | striptags }} +

{% endfor %} -standardnotes-fs* - A filesystem that mounts your Standard Notes account as a directory of text - files that you can edit. -* external link +

+ standardnotes-fs
+ A filesystem that mounts your Standard Notes account as a directory of text files that you can edit. +

+ {% endblock %} diff --git a/themes/lite/templates/writing.html b/themes/lite/templates/writing.html index bd84a73..9b82a02 100644 --- a/themes/lite/templates/writing.html +++ b/themes/lite/templates/writing.html @@ -3,30 +3,24 @@ Writing | t0.vc {% endblock %} -{% block style %} -{% endblock %} - {% block content %} -
-Home | t0.vc
-
-Writing
-=======
+

Writing

-Various articles, mostly about computers. +

Various articles, mostly about computers.

{% for article in articles if article.category.name == 'Writing' %} -{{ article.title }} - {{ article.summary | striptags }} +

+ {{ article.title }}
+ {{ article.summary | striptags }} +

{% endfor %} -Text Files ----------- +

Text Files

-Here are some random text notes that I share with the public. +

Here are some random text notes that I share with the public.

{% for f in list_text_files() %} -{{ f }} +{{ f }}
{% endfor %} {% endblock %}