Document techniques for debugging templates.
authorJeff Ramnani <jeff@jefframnani.com>
Mon, 25 May 2015 19:16:10 +0000 (14:16 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 26 May 2015 08:01:45 +0000 (10:01 +0200)
This information was previously scattered around in the forums and
mailing list.  Add it to the official docs to make things easier for new
users.

Fixes #1167

docs/content/templates/404.md
docs/content/templates/debugging.md [new file with mode: 0644]

index 302b54e10b5066f5ddd651062bd894b5cd249db2..cac84545931a3c40cbac2b4996260ecc460545e6 100644 (file)
@@ -8,6 +8,7 @@ menu:
     parent: layout
 next: /taxonomies/overview
 notoc: true
+next: /templates/debugging
 prev: /templates/sitemap
 title: 404.html Templates
 weight: 100
diff --git a/docs/content/templates/debugging.md b/docs/content/templates/debugging.md
new file mode 100644 (file)
index 0000000..f1e9960
--- /dev/null
@@ -0,0 +1,55 @@
+---
+aliases:
+- /doc/debugging/
+- /layout/debugging/
+date: 2015-05-22
+linktitle: Debugging
+menu:
+  main:
+    parent: layout
+prev: /templates/404
+title: Template Debugging
+weight: 110
+---
+
+
+# Template Debugging
+
+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](http://golang.org/pkg/fmt/).
+
+### What type of page is this?
+
+Does Hugo consider this page to be a "Node" or a "Page"? (Put this snippet at
+the top level of your template. Don't use it inside of a `range` loop.)
+
+    {{ printf "%T" . }}
+
+
+### 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`.
+
+    {{ printf "%#v" $.Site }}
+
+This will print out the value of `.Permalink`, which is available on both Nodes
+and Pages.
+
+    {{ printf "%#v" .Permalink }}
+
+This will print out a list of all the variables scoped to the current context
+(a.k.a. The dot, "`.`").
+
+    {{ printf "%#v" . }}
+
+When writing a [Homepage](/templates/homepage), what does one of the pages
+you're looping through look like?
+
+```
+{{ range .Data.Pages }}
+    {{/* The context, ".", is now a Page */}}
+    {{ printf "%#v" . }}
+{{ end }}
+```