mirror of
https://github.com/nicholaswilde/recipes.git
synced 2025-10-29 11:44:47 +00:00
32 lines
628 B
Go Template
32 lines
628 B
Go Template
{{- define "custom.image" -}}
|
|
{{ if .Info.ImageFileName }}
|
|
![{{ .Info.RecipeName }}][1]{ loading=lazy }
|
|
{{ end }}
|
|
{{- end -}}
|
|
|
|
{{- define "custom.footer" -}}
|
|
{{ if .Info.ImageFileName }}
|
|
[1]: <../assets/images/{{ lower .Info.ImageFileName | replace " " "-" }}>
|
|
{{ end }}
|
|
{{- end -}}
|
|
---
|
|
comments: true
|
|
tags:
|
|
- bread
|
|
---
|
|
{{ template "cook.headerSection" . }}
|
|
|
|
{{ template "custom.image" . }}
|
|
|
|
{{ template "cook.tableSection" . }}
|
|
|
|
{{ template "cook.ingredientsSection" . }}
|
|
|
|
{{ template "cook.cookwareSection" . }}
|
|
|
|
{{ template "cook.stepsSection" . -}}
|
|
|
|
{{ template "cook.sourceSection" . }}
|
|
|
|
{{ template "custom.footer" . }}
|