9 lines
403 B
HTML
9 lines
403 B
HTML
|
|
<!--
|
||
|
|
Returns rendered string from template and context.
|
||
|
|
Usage: partial "docs/string-template" (dict "Template" "param={{ . }}" "Context" "Input")
|
||
|
|
-->
|
||
|
|
|
||
|
|
{{- $checksum := . | encoding.Jsonify | crypto.SHA1 | printf "book-%s" -}}
|
||
|
|
{{- $template := resources.FromString $checksum .Template -}}
|
||
|
|
{{- $template = $template | resources.ExecuteAsTemplate $checksum .Context -}}
|
||
|
|
{{- return $template.Content -}}
|