17 lines
632 B
HTML
17 lines
632 B
HTML
{{template "header.html" . }}
|
|
<div class="colstack panel_stack">
|
|
{{template "panel_menu.html" . }}
|
|
<main id="panel_dashboard_right" class="colstack_right">
|
|
<div class="colstack_item colstack_head">
|
|
<div class="rowitem"><h1>{{lang "panel_dashboard_head"}}</h1></div>
|
|
</div>
|
|
<div id="panel_dashboard" class="colstack_grid">
|
|
{{range .GridItems}}
|
|
<div id="{{.ID}}" class="grid_item {{.Class}}" title="{{.Note}}" style="{{if .TextColour}}color: {{.TextColour}};{{end}}
|
|
{{if .Background}}background-color: {{.Background}};{{end}}"><span>{{.Body}}</span></div>
|
|
{{end}}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
{{template "footer.html" . }}
|