diff options
author | Christian Cleberg <hello@cmc.pub> | 2025-03-24 16:24:37 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cmc.pub> | 2025-03-24 16:24:37 -0500 |
commit | 06aeb8a5c4ec40690c5150e4151b38dc12296e3f (patch) | |
tree | f22f3510a6b7b0cd8f804793bcce2b09f87faac2 /theme/templates/post.html | |
parent | f0d8e3b1b728e955834d15dcbb931bb2c2b27af9 (diff) | |
download | cleberg.net-06aeb8a5c4ec40690c5150e4151b38dc12296e3f.tar.gz cleberg.net-06aeb8a5c4ec40690c5150e4151b38dc12296e3f.tar.bz2 cleberg.net-06aeb8a5c4ec40690c5150e4151b38dc12296e3f.zip |
remove unnecessary class
Diffstat (limited to 'theme/templates/post.html')
-rw-r--r-- | theme/templates/post.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/post.html b/theme/templates/post.html index a3c15a5..5ad5d04 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -9,7 +9,7 @@ {% endif %} {% endblock %} {% block main %} <article role="article"> <section class="post-metadata"> - <h1 class="post__title">{{ post.title }}</h1> + <h1>{{ post.title }}</h1> {% if post.date is defined %} <time datetime='{{ post.date|strftime("%Y-%m-%d") }}' ><{{ post.date|strftime("%Y-%m-%d %a %H:%M:%S") }}></time |