{{ define "main" }}

{{ title ( T "ui_search_by_tags" ) }}

{{ ( T "ui_tags_intro" ) }}

{{ $tags := index .Site.Taxonomies "tags" }}
{{ range $tags }} {{ $tagid := printf "tag-%s" ( replace .Page.Title " " "-" ) }} {{ end }}
{{ $glossary_items := (where .Site.Pages "Params.status" "Completed") | union (where .Site.Pages "Params.status" "completed") }} {{ with $glossary_items }} {{ $glossary_terms := sort . "Title" "asc" }}
{{ range $glossary_terms }} {{ $.Scratch.Set "tag_classes" "" }} {{ range .Params.tags }} {{ with . }} {{ $.Scratch.Add "tag_classes" (printf "tag-%s " ( replace . " " "-" ) ) }} {{ end }} {{ end }}

{{ .Title }}

{{ replace ( .Summary | markdownify ) "What it is" "" }}..

{{ end }}
{{ end }}
{{ end }}