<aside>
{%- if section.settings.blog_show_tags -%}
<ul>
<li>
{%- for tag in blog.all_tags -%}
<a href="{{ blog.url }}/tagged/{{ tag | handle }}">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}
{%- endfor -%}
</li>
</ul>
{%- endif -%}
</aside>
{% schema %}
{
"name": "Blog posts",
"settings": [
{
"type": "checkbox",
"id": "blog_show_tags",
"label": "Show tags",
"default": true
}
]
}
{% endschema %}
评论 (0)