hugo/docs/content/en/hugo-pipes/resource-from-template.md
2023-10-20 09:43:56 +02:00

1,010 B
Executable file

title linkTitle description categories keywords menu weight signatures
ExecuteAsTemplate Resource from template Creates a resource from a template
asset management
docs
parent weight
hugo-pipes 120
120
resources.ExecuteAsTemplate TARGET_PATH CONTEXT RESOURCE

Usage

In order to use Hugo Pipes function on an asset file containing Go Template magic the function resources.ExecuteAsTemplate must be used.

The function takes three arguments: the target path for the created resource, the template context, and the resource object. The target path is used to cache the result.

// assets/sass/template.scss
$backgroundColor: {{ .Param "backgroundColor" }};
$textColor: {{ .Param "textColor" }};
body{
  background-color:$backgroundColor;
  color: $textColor;
}
// [...]
{{ $sassTemplate := resources.Get "sass/template.scss" }}
{{ $style := $sassTemplate | resources.ExecuteAsTemplate "main.scss" . | resources.ToCSS }}