aboutsummaryrefslogblamecommitdiff
path: root/templates/index.html
blob: f1a8cbeb550d7fb94e72636c37f19a55924640ab (plain) (tree)
1
2
3
4
5
6
7
8


                         
 


                              
 





                                                                                  
                        
{% extends "base.html" %}

{%- block content -%}

{% if section.content %}
  {{ section.content | safe }}
{% endif %}

<h2>Tags</h2>
{% set blogtags = get_taxonomy(kind="tags") %}
{% for tag in blogtags.items %}
<a href="{{ get_taxonomy_url(kind="tags", name=tag.name) }}">#{{ tag.name }}</a>  
{% endfor %}

{%- endblock content -%}