{% capture workspace %} {% assign color = page.color | default: site.color %} {% assign name = include.name | default: "CATEGORY" %} {% assign count = include.count | default: 0 %} {% assign href = "/categories/" | append: name | relative_url %} {% assign zoom = include.zoom | default: false %} {% if zoom %} {% assign textClass = "text-2xl text-color-50 text-opacity-75 " | replace: "color", color %} {% assign svgClass = "h-8 w-8" %} {% assign countClass = "text-color-50 text-opacity-50" | replace: "color", color %} {% else %} {% assign textClass = "text-sm text-color-500 text-opacity-75" | replace: "color", color %} {% assign svgClass = "h-4 w-4" %} {% assign countClass = "text-color-500 text-opacity-50" | replace: "color", color %} {% endif %} {% endcapture %} {{ name }} {% if count > 0 %} {{ count }} {% endif %}