Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template-debugging.md « templates « en « content - github.com/gohugoio/hugoDocs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ef8e205dad8815af11018b329bdbd28a8fb74b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
title: Template Debugging
description: You can use Go templates' `printf` function to debug your Hugo  templates. These snippets provide a quick and easy visualization of the variables available to you in different contexts.
date: 2017-02-01
publishdate: 2017-02-01
categories: [templates]
keywords: [debugging,troubleshooting]
menu:
  docs:
    parent: "templates"
    weight: 180
weight: 180
sections_weight: 180
aliases: []
toc: false
---

Here are some snippets you can add to your template to answer some common questions.

These snippets use the `printf` function available in all Go templates.  This function is an alias to the Go function, [fmt.Printf](https://pkg.go.dev/fmt).

## What Variables are Available in this Context?

You can use the template syntax, `$.`, to get the top-level template context from anywhere in your template. This will print out all the values under, `.Site`.

```go-html-template
{{ printf "%#v" $.Site }}
```

This will print out the value of `.Permalink`:

```go-html-template
{{ printf "%#v" .Permalink }}
```

This will print out a list of all the variables scoped to the current context
(`.`, aka ["the dot"][tempintro]).

```go-html-template
{{ printf "%#v" . }}
```

When developing a [homepage][], what does one of the pages you're looping through look like?

```go-html-template
{{ range .Pages }}
    {{/* The context, ".", is now each one of the pages as it goes through the loop */}}
    {{ printf "%#v" . }}
{{ end }}
```

## Why Am I Showing No Defined Variables?

Check that you are passing variables in the `partial` function:

```go-html-template
{{ partial "header.html" }}
```

This example will render the header partial, but the header partial will not have access to any contextual variables. You need to pass variables explicitly. For example, note the addition of ["the dot"][tempintro].

```go-html-template
{{ partial "header.html" . }}
```

The dot (`.`) is considered fundamental to understanding Hugo templating. For more information, see [Introduction to Hugo Templating][tempintro].

[homepage]: /templates/homepage/
[tempintro]: /templates/introduction/