diff options
Diffstat (limited to 'docs/content/en/methods/site')
-rw-r--r-- | docs/content/en/methods/site/Language.md | 2 | ||||
-rw-r--r-- | docs/content/en/methods/site/Taxonomies.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/en/methods/site/Language.md b/docs/content/en/methods/site/Language.md index 31f15b8cb..73a64e4cc 100644 --- a/docs/content/en/methods/site/Language.md +++ b/docs/content/en/methods/site/Language.md @@ -72,7 +72,7 @@ Some of the methods above are commonly used in a base template as attributes for ```go-html-template <html lang="{{ .Site.Language.LanguageCode }}" - dir="{{ or .Site.Language.LanguageDirection `ltr` }} + dir="{{ or .Site.Language.LanguageDirection `ltr` }}" > ``` diff --git a/docs/content/en/methods/site/Taxonomies.md b/docs/content/en/methods/site/Taxonomies.md index 92dc41a9b..857bfd01d 100644 --- a/docs/content/en/methods/site/Taxonomies.md +++ b/docs/content/en/methods/site/Taxonomies.md @@ -140,7 +140,7 @@ The following example displays all terms in a site's tags taxonomy: ``` This example will list all taxonomies and their terms, as well as all the content assigned to each of the terms. -```go-html-template {file="layouts/partials/all-taxonomies.html"} +```go-html-template {file="layouts/_partials/all-taxonomies.html"} {{ with .Site.Taxonomies }} {{ $numberOfTerms := 0 }} {{ range $taxonomy, $terms := . }} |