This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/resources/templates/home.html

39 lines
1.6 KiB
HTML

<!DOCTYPE html>
{{template "base.html"}}
<html lang="en">
<head>
{{template "head" dict
"SiteTitle" .Config.Title
"PageTitle" "Home"
"Theme" .Config.Theme}}
</head>
<body>
{{ template "navbar" dict
"SiteTitle" .Config.Title
"Page" "home"
"User" .Username }}
<div class="hero is-fullheight-with-navbar is-light">
<div class="hero-head" style="margin: 10px 30px 0 30px">
<div class="row columns is-multiline is-mobile">
{{if .User.ShowPublic}}
{{ range $_, $card := .Config.Users._public_.Cards }}
<div class="column is-half-tablet is-one-quarter-fullhd is-one-third-desktop is-full-mobile">
<div class="card is-flex is-flex-direction-column" style="min-height: 175px; max-height: 175px; overflow: auto">
{{dyn_template $card.Type $card}}
</div>
</div>
{{end}}
{{end}}
{{ range $_, $card := .User.Cards }}
<div class="column is-half-tablet is-one-quarter-fullhd is-one-third-desktop is-full-mobile">
<div class="card is-flex is-flex-direction-column" style="min-height: 175px; max-height: 175px; overflow: auto">
{{dyn_template $card.Type $card}}
</div>
</div>
{{end}}
</div>
<br>
</div>
</div>
</body>
</html>