ExecuteAsTemplate
语法
resources.ExecuteAsTemplate TARGETPATH CONTEXT RESOURCE
返回值
resource.Resource
用法
为了在包含 Go 模板魔力的资产文件上使用 Hugo 管道函数,必须使用 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" . | css.Sass }}