{% comment %} size {% endcomment %} {% assign width = include.width | default: include.height | default: 6 %} {% assign height = include.height | default: include.width | default: 6 %} {% comment %} text {% endcomment %} {% assign text = include.text %} {% if include.type == "date" %} {% assign text = text | date: "%Y-%m-%d" %} {% endif %} {% comment %} href {% endcomment %} {% assign href = nil %} {% if include.type == "category" %} {% assign name = include.text | default: "CATEGORY" | slugify %} {% assign href = "/categories/" | append: name %} {% elsif include.type == "tag" %} {% assign name = include.text | default: "TAG" | slugify %} {% assign href = "/tags/" | append: name %} {% endif %} {% include svg-{{ include.type }}.html width=width height=height %} {% if include.text %} {{ text }} {% endif %} {% if include.count and include.count > 0 %} {{ include.count }} {% endif %}