1
0
Fork 0

Add anchor to link-posts in related posts

This commit is contained in:
Daniel Kempkens 2015-01-05 18:03:13 +01:00
parent ca0a2c38dd
commit aec1d3ca66
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,7 @@ layout: default
<li>
<h3>
<a href="{{ post.url }}">
{% if post.category == "links" %}&#9875;{% endif %}
{{ post.title }}
<small>{{ post.date | date_to_string }}</small>
</a>

View file

@ -17,6 +17,7 @@ title: Post Archive
{% endif %}
<li>
{% if post.category == "links" %}&#9875;{% endif %} <a href="{{ post.url }}">{{ post.title }}</a>
{% if post.category == "links" %}&#9875;{% endif %}
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}