From a3f5ecc4757a1ec2ecf93ecb7b84b9d7037386b2 Mon Sep 17 00:00:00 2001
From: Jan-Erik Rediger <janerik@fnordig.de>
Date: Tue, 11 Mar 2025 21:39:39 +0100
Subject: [PATCH] Revert "add an arrow to jump to the top"

This reverts commit 6c4504e766b5bed6e9c12c7f20e3a3adf9b19346.
---
 posts.liquid | 6 ++----
 style.css    | 7 -------
 2 files changed, 2 insertions(+), 11 deletions(-)

diff --git a/posts.liquid b/posts.liquid
index b1fa4a3..bf7930e 100644
--- a/posts.liquid
+++ b/posts.liquid
@@ -48,10 +48,8 @@ data:
 <table>
 {% for year in years -%}
 <tr>
-  <td class="top">
-    <a href="#top">↑</a></td>
-  <td>
-  <h2 id="{{year}}">{{year}}</h2></td>
+  <td>&nbsp;</td>
+  <td><h2>{{year}}</h2></td>
 </tr>
 
   {%- for post in collections.posts.pages %}
diff --git a/style.css b/style.css
index 6e5042f..ea00cfd 100644
--- a/style.css
+++ b/style.css
@@ -359,10 +359,3 @@ table, tr, td { border: none; }
   pointer-events: none;
   z-index: 1;
 }
-
-.top {
-  text-align: center;
-}
-.top a, .top a:visited {
-  text-decoration: none;
-}