23 lines
586 B
Cheetah
23 lines
586 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>
|
|
|
|
{{if ne (len .recipe.Steps) 0}}
|
|
<ul>
|
|
{{range $k, $v := .recipe.Metadata}}
|
|
<li><em>{{$k}}:</em> {{$v}}</li>
|
|
{{end}}
|
|
</ul>
|
|
{{end}}
|
|
|
|
{{recipeSteps .recipe}}
|
|
</body>
|
|
</html>
|