gosora/templates/panel-dashboard.html

11 lines
384 B
HTML
Raw Normal View History

{{template "header.html" . }}
{{template "panel-menu.html" . }}
<div class="colstack_right">
<div class="colstack_grid">
{{range .GridItems}}
<div class="grid_item {{.Class}}" title="{{.Note}}" style="{{if .TextColour}}color: {{.TextColour}};{{end}}
{{if .Background}}background-color: {{.Background}};{{end}}">{{.Body}}</div>
{{end}}
</div>
</div>
{{template "footer.html" . }}