summaryrefslogblamecommitdiff
path: root/_includes/tags.liquid
blob: 23ea566576890752e707e3d15fb90203d1171f1c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                        
{% if page.tags %}
    <div class="field is-grouped is-grouped-multiline">
        {% for tag in page.tags %}
            <div class="control">
            <div class="tags has-addons">
                <span class="tag is-rounded is-success">
                    #
                </span>
                <span class="tag is-rounded">
                    {{ tag | downcase }}
                </span>
            </div>
            </div>
        {% endfor %}
    </div>
{% endif %}