Show document tags Last updated: 01. Feb 2023

Example on how to show tags for a document in display template.

Example

Code Template.hash

<ul>
#for(let tag of Tags) {#
    <li>#tag#</li>
#}#
</ul>

Output

<ul>
    <li>test</li>
    <li>tag1</li>
    <li>tag2</li>
</ul>