--- title: GetTerms description: Returns a collection of term pages for terms defined on the given page in the given taxonomy, ordered according to the sequence in which they appear in front matter. categories: [] keywords: [] action: related: [] returnType: page.Pages signatures: [PAGE.GetTerms TAXONOMY] --- Given this front matter: {{< code-toggle file=content/books/les-miserables.md fm=true >}} title = 'Les Misérables' tags = ['historical','classic','fiction'] {{< /code-toggle >}} This template code: ```go-html-template {{ with .GetTerms "tags" }}

Tags

{{ end }} ``` Is rendered to: ```html

Tags

```