--- title: Sites description: Returns a collection of all Site objects, one for each language, ordered by language weight. categories: [] keywords: [] action: related: [] returnType: page.Sites signatures: [SITE.Sites] --- With this site configuration: {{< code-toggle file=hugo >}} defaultContentLanguage = 'de' defaultContentLanguageInSubdir = false [languages.de] languageCode = 'de-DE' languageDirection = 'ltr' languageName = 'Deutsch' title = 'Projekt Dokumentation' weight = 1 [languages.en] languageCode = 'en-US' languageDirection = 'ltr' languageName = 'English' title = 'Project Documentation' weight = 2 {{< /code-toggle >}} This template: ```go-html-template ``` Produces a list of links to each home page: ```html ``` To render a link to home page of the primary (first) language: ```go-html-template {{ with .Site.Sites.First }} {{ .Title }} {{ end }} ``` This is equivalent to: ```go-html-template {{ with index .Site.Sites 0 }} {{ .Title }} {{ end }} ```