aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates
diff options
context:
space:
mode:
Diffstat (limited to 'zola-static/templates')
-rw-r--r--zola-static/templates/base.html2
-rw-r--r--zola-static/templates/blog-page.html8
-rw-r--r--zola-static/templates/index.html4
3 files changed, 8 insertions, 6 deletions
diff --git a/zola-static/templates/base.html b/zola-static/templates/base.html
index 9aa47d8..7eb1914 100644
--- a/zola-static/templates/base.html
+++ b/zola-static/templates/base.html
@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
- <title>Jack Jamison</title>
+ <title>{% block title %}Jack Jamison{% endblock title %}</title>
<link rel="stylesheet" href="/base.css">
</head>
diff --git a/zola-static/templates/blog-page.html b/zola-static/templates/blog-page.html
index 8e2fa3d..ed1afeb 100644
--- a/zola-static/templates/blog-page.html
+++ b/zola-static/templates/blog-page.html
@@ -1,14 +1,16 @@
{% extends "base.html" %}
+{% block title %}{{ page.title }}{% endblock title %}
+
{% block header %}
-<div class="header-container">
- <div>
+<div class="blog-header">
+ <div class="blog-header-left">
<h1 class="header-title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong> {% if page.updated %} <small>(updated {{ page.updated }})</small> {% endif %}</p>
</div>
- <div>
+ <div class ="blog-header-right">
<h1 class="header-title"><a href="{{ config.base_url }}">Jack Jamison</a></h1>
</div>
</div>
diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html
index f674f13..4ef333d 100644
--- a/zola-static/templates/index.html
+++ b/zola-static/templates/index.html
@@ -8,12 +8,12 @@
</ul>
<h2>Articles</h2>
<ul>
- <li><p><a href="{{ get_url(path='@/blog/_index.md') }}"></a></p></li>
+ <li><p><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></p></li>
</ul>
<h2>Links</h2>
<ul>
<li><p><a href="https://github.com/JackJ30">GitHub</a></p></li>
- <li><p><a href="https://jackj30.github.io">Old portfolio</a></p></li>
+ <li><p><a href="https://jackj30.github.io">(Archive) old portfolio</a></p></li>
</ul>
<hr>
<p class="footer-text"><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a></p>