{{ page_title }}
Browse all {{ total_tags }} tags
{{ tag_name }}
{{ tag_count }} post{% if tag_count != 1 %}s{% end %} {% end %}No tags found.
{% end %}{% extends "base.html" %} {# ================================================================================ All Tags Page Template (Kida-Native) ================================================================================ Displays all tags in a cloud/grid layout. KIDA FEATURES USED: - {% let %} for template-scoped variables - Optional chaining (?.) for null-safe access - Null coalescing (??) for smart defaults USAGE: Auto-generated at /tags/ ================================================================================ #} {% block content %} {# Template-scoped variables #} {% let page_title = page?.title ?? 'All Tags' %} {% let all_tags = tags ?? [] %} {% let all_tags_count = all_tags | length %} {% let total_tags = total_tags ?? all_tags_count %} {# Two-column layout similar to docs #}
Browse all {{ total_tags }} tags
No tags found.
{% end %}