Hugo Set Global Variable In Template

Aug 27, 2017
Use .Scratch

To set a global variable in Hugo template, use .Scratch.

In the following example, a global variable of name can be read and write at both _default/baseof.html and partials/content.html.

layouts/_default/baseof.html

<!DOCTYPE html><html>  ...  <body>    {{ $.Scratch.Set "name" "baseof" }}    {{/* baseof.name=baseof; */}}    baseof.name={{ $.Scratch.Get "name" }};    {{ partial "content.html" . }}    {{/* baseof.name=content; */}}    baseof.name={{ $.Scratch.Get "name" }};  </body> </html>  

layouts/partials/content.html

{{/* baseof.name=baseof; */}}content.name={{ $.Scratch.Get "name" }}{{ $.Scratch.Set "name" "content" }};{{/* baseof.name=content; */}}content.name={{ $.Scratch.Get "name" }};

Output.

baseof.name=baseof; 
content.name=baseof; 
content.name=content; 
baseof.name=content;

❤️ Is this article helpful?

Buy me a coffee ☕ or support my work via PayPal to keep this space 🖖 and ad-free.

Do send some 💖 to @d_luaz or share this article.

✨ By Desmond Lua

A dream boy who enjoys making apps, travelling and making youtube videos. Follow me on @d_luaz

👶 Apps I built

Travelopy - discover travel places in Malaysia, Singapore, Taiwan, Japan.