sandwitchboard/templates/index.html.tmpl
2024-08-19 07:17:46 +02:00

32 lines
904 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>{{.title}}</title>
<link rel="icon" type="image/png" href="{{.relpath}}favicon.png" />
<link rel="stylesheet" type="text/css" href="{{.relpath}}style.css" />
</head>
<body>
<main>
<div id="content">
<h1>{{.title}}</h1>
{{$categoryMap := .categoryMap}}
{{$recipes := .recipes}}
{{range .categoryList}}
{{if (ne . "")}}
<h3>{{.}}</h3>
{{end}}
{{$recipeList := index $categoryMap .}}
<ul>
{{range $name := $recipeList}}
<li><a href="{{index $recipes $name}}">{{$name}}</a></li>
{{end}}
</ul>
{{end}}
</div>
</main>
</body>
</html>