Add anchor to link-posts in related posts
This commit is contained in:
parent
ca0a2c38dd
commit
aec1d3ca66
2 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@ layout: default
|
|||
<li>
|
||||
<h3>
|
||||
<a href="{{ post.url }}">
|
||||
{% if post.category == "links" %}⚓{% endif %}
|
||||
{{ post.title }}
|
||||
<small>{{ post.date | date_to_string }}</small>
|
||||
</a>
|
||||
|
|
|
@ -17,6 +17,7 @@ title: Post Archive
|
|||
{% endif %}
|
||||
|
||||
<li>
|
||||
{% if post.category == "links" %}⚓{% endif %} <a href="{{ post.url }}">{{ post.title }}</a>
|
||||
{% if post.category == "links" %}⚓{% endif %}
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue