sandwitchboard/templates/recipe.html.tmpl
2024-07-03 20:42:44 +02:00

28 lines
732 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{.name}}</title>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>{{.name}}</h1>
{{$recipeImage := recipeImage .path}}
{{if ne $recipeImage ""}}
<img class="recipeimage" src="{{$recipeImage}}" />
{{end}}
{{if ne (len .recipe.Steps) 0}}
<ul>
{{range $k, $v := .recipe.Metadata}}
<li><em>{{$k}}:</em> {{$v}}</li>
{{end}}
</ul>
{{end}}
{{recipeSteps .recipe .path}}
</body>
</html>