diff --git a/_includes/defaultFooter.html b/_includes/defaultFooter.html
index 14a3ce0..77dda75 100644
--- a/_includes/defaultFooter.html
+++ b/_includes/defaultFooter.html
@@ -1,8 +1,8 @@
 <br>
 <div style="text-align: center;">
-<i>
+<code>
 Made with 💕 (and Jekyll)<br>
 © Andrew Conlin 2023-2024<br>
 All rights reverse engineered
-</i>
+</code>
 </div>
diff --git a/_includes/postFooter.html b/_includes/postFooter.html
index beb15e1..417b4ce 100644
--- a/_includes/postFooter.html
+++ b/_includes/postFooter.html
@@ -1,4 +1,4 @@
 <hr><br>
 <div style="text-align: center;">
-<i>Issues or comments? <a href="mailto:andrew@andrewconl.in">Email me!</a></i>
+<code>Issues or comments? <a href="mailto:andrew@andrewconl.in">Email me!</a></code>
 </div>
diff --git a/_layouts/default.html b/_layouts/default.html
index 239807f..2f9593e 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -19,14 +19,10 @@
 
 <body>
     <div class="container">
-        <div class="content">
-            {% if page.backlink == true %}
-                <a href="/"><-- back</a>
-            {% endif %}
+        <div class="content"> 
             <h1>
                 {{ page.title }}
             </h1>
-            {{ page.subtitle }}
             {{ content }}
             {% include defaultFooter.html %}
         </div>
diff --git a/_layouts/post.html b/_layouts/post.html
index 2bb3e04..ee5b359 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,11 +1,12 @@
 ---
 layout: default
 ---
+<code>
+<a href="/">~</a> > <a href="/{{page.category}}">{{page.category}}</a> > <a href="{{page.title}}">{{page.title}}</a><br>
 
-<p>
-    Posted {{ page.date | date_to_string }} to <a href="/">Andrew Conlin's blog</a><br>
-    Reading time: {{ content | reading_time | pluralize: "minute" }}
-</p>
+    {{ page.date | date: "%Y-%m-%d" }}<br>
+    {{ content | reading_time | pluralize: "minute" }}
+</code>
 <hr>
 
 {{ content }}
diff --git a/index.html b/index.html
index a365adc..57d9237 100644
--- a/index.html
+++ b/index.html
@@ -1,6 +1,6 @@
 ---
 layout: default
-title: Andrew Conlin's blog
+title: andrewconl.in
 permalink: /
 backlink: false
 ---
@@ -23,7 +23,7 @@ github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
   {% assign category = post.category %}
   {% if category == 'blog' %}
     <li>
-      <p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
+      <p><a href="{{ post.url }}">{{ post.title }}</a> // <code>{{ post.date | date: "%Y-%m-%d" }}</code></p>
     </li>
   {% endif %}
   {% endfor %}
@@ -35,7 +35,7 @@ github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
   {% assign category = post.category %}
   {% if category == 'weeklinks' %}
     <li>
-      <p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
+      <p><a href="{{ post.url }}">{{ post.title }}</a> // <code>{{ post.date | date: "%Y-%m-%d" }}</code></p>
     </li>
   {% endif %}
   {% endfor %}
@@ -47,7 +47,7 @@ github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
   {% assign category = post.category %}
   {% if category == 'til' %}
     <li>
-      <p><a href="{{ post.url }}">{{ post.title }}</a> -- {{ post.date | date_to_string }}</p>
+      <p><a href="{{ post.url }}">{{ post.title }}</a> // <code>{{ post.date | date: "%Y-%m-%d" }}</code></p>
     </li>
   {% endif %}
   {% endfor %}