phoenix/templates/index.html.tmpl

37 lines
1.1 KiB
Cheetah
Raw Normal View History

2023-04-06 10:36:11 +05:00
<!DOCTYPE html>
<html lang="en">
<head>
{{template "head"}}
2023-04-09 11:33:34 +05:00
<link rel="stylesheet" href="assets/css/index.css" />
2023-04-06 10:36:11 +05:00
</head>
<body>
<div class="page">
<h1>Phoenix</h1>
{{if not .groups}}
<p>
You don't have any links.
Go to <a href="/settings" style="text-decoration: underline">settings</a> and create one.
2023-04-06 10:36:11 +05:00
</p>
{{else}}
<a href="/settings">Settings</a>
{{end}}
<div class="row">
{{range .groups}}
<div class="group">
<h2>{{.Name}}</h2>
{{range .Links}}
2023-09-03 19:08:33 +05:00
<a href="{{.Href}}" target="_blank" rel="noreferrer">
{{ if .Icon }}
<img src="/assets/icons/{{.Icon}}.svg" width="20" height="20" />
{{ end }}
{{.Name}}
</a>
2023-04-06 10:36:11 +05:00
{{end}}
</div>
{{end}}
</div>
</div>
</body>
</html>