remove link-tags settings

This commit is contained in:
Dean Attali 2020-08-23 22:19:15 +00:00
parent f65e439025
commit 43d79b6dc9
4 changed files with 1 additions and 11 deletions

View file

@ -58,13 +58,9 @@ layout: page
{% if post.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in post.tags %}
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ post.tags | join: ", " }}
{% endif %}
</div>
{% endif %}

View file

@ -38,13 +38,9 @@ layout: base
{% if page.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in page.tags %}
<a href="{{ '/tags' | relative_url }}#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ page.tags | join: ", " }}
{% endif %}
</div>
{% endif %}