fix permalink styling
This commit is contained in:
parent
5cc9ce8851
commit
139c26158b
|
@ -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;
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue