github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/templates/panel_dashboard.html (about) 1 <div class="colstack_item colstack_head"> 2 <div class="rowitem"><h1>{{lang "panel_dashboard_head"}}</h1></div> 3 </div>{{flush}} 4 <div class="colstack_grid panel_dashboard grid1"> 5 {{range .Grid1}} 6 <div id="{{.ID}}"class="grid_item {{.Class}}"title="{{.Note}}"style="{{if .TextColour}}color:{{.TextColour}};{{end}}{{if .Background}}background-color:{{.Background}};{{end}}"> 7 {{if .Href}}<a href="{{.Href}}">{{.Body}}</a>{{else}}<span>{{.Body}}</span>{{end}} 8 </div> 9 {{end}} 10 </div>{{flush}} 11 <div class="colstack_grid panel_dashboard grid2"> 12 {{range .Grid2}} 13 <div id="{{.ID}}"class="grid_item {{.Class}}"title="{{.Note}}"style="{{if .TextColour}}color:{{.TextColour}};{{end}}{{if .Background}}background-color:{{.Background}};{{end}}"> 14 {{if .Href}}<a href="{{.Href}}">{{.Body}}</a>{{else}}<span>{{.Body}}</span>{{end}} 15 </div> 16 {{end}} 17 </div>