54 lines
2.2 KiB
HTML
54 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
{{- /*
|
|
Copyright 2021 Arsen Musayelyan
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/ -}}
|
|
{{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-fullheight is-scrollable" style="min-height: 175px; max-height: 175px;">
|
|
{{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-fullheight is-scrollable" style="min-height: 175px; max-height: 175px">
|
|
{{dyn_template $card.Type $card}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |