ExecuteAsTemplate
Syntax
resources.ExecuteAsTemplate TARGETPATH CONTEXT RESOURCE
Returns
resource.Resource
用法
为了在包含 Go 模板魔法的资源文件上使用 Hugo Pipes 函数,必须使用函数 resources.ExecuteAsTemplate
。
该函数接受三个参数:创建的资源的目标路径、模板上下文和资源对象。目标路径用于缓存结果。
// 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 }}