aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@blos.sm>2023-06-21 23:52:28 +0100
committerLibravatar cel 🌸 <cel@blos.sm>2023-06-21 23:52:28 +0100
commit139c26158bba4ec09e7ba690ba6c9c11da620707 (patch)
tree022fb33ac968183bce9ecb37658644b5bc83efb6
parent5cc9ce8851baddab6980ad21381f066dd2889f18 (diff)
downloadblossom-139c26158bba4ec09e7ba690ba6c9c11da620707.tar.gz
blossom-139c26158bba4ec09e7ba690ba6c9c11da620707.tar.bz2
blossom-139c26158bba4ec09e7ba690ba6c9c11da620707.zip
fix permalink styling
-rw-r--r--static/style.css2
-rw-r--r--templates/blogpost-panel.html.tera2
2 files changed, 2 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css
index 3542e62..889c6ff 100644
--- a/static/style.css
+++ b/static/style.css
@@ -358,7 +358,7 @@ iframe {
.blogpost .created-at a,
.blogpost-content a {
padding: 0;
- margin: 0 0.5em;
+ margin: 0;
background-color: transparent;
color: #b52f6a;
text-decoration: underline;
diff --git a/templates/blogpost-panel.html.tera b/templates/blogpost-panel.html.tera
index b722035..061d87b 100644
--- a/templates/blogpost-panel.html.tera
+++ b/templates/blogpost-panel.html.tera
@@ -1,6 +1,6 @@
<div class="panel content blogpost">
<h1 class="title">{{ blogpost.subject }}</h1>
- <h2 class="created-at">{{ blogpost.created_at }}<a href="/blog/{{ blogpost.data.name }}">permalink</a></h2>
+ <h2 class="created-at">{{ blogpost.created_at }} <a href="/blog/{{ blogpost.data.name }}">permalink</a></h2>
<div class="tags">{% for tag in blogpost.tags %}<a class="tag" href="/tag/{{ tag }}">{{ tag }}</a>{% endfor %}</div>
<div class="blogpost-content">
{{ blogpost.render }}