2017-01-01 15:45:43 +00:00
|
|
|
{{template "header.html" . }}
|
2017-06-25 09:56:39 +00:00
|
|
|
<div class="colstack_left">
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem rowhead"><a href="/panel/themes/">Theme Manager</a></div>
|
|
|
|
</div>
|
|
|
|
<div class="colstack_item">
|
|
|
|
<div class="rowitem passive"><a href="#">Widgets</a></div>
|
|
|
|
</div>
|
|
|
|
{{template "panel-inner-menu.html" . }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Stop inlining this x.x -->
|
2017-05-29 14:52:37 +00:00
|
|
|
<style type="text/css">
|
|
|
|
.rowitem::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2017-03-18 07:23:02 +00:00
|
|
|
<div class="colstack_right">
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem rowhead"><a>Primary Themes</a></div>
|
2017-03-07 07:22:29 +00:00
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
<div id="panel_primary_themes" class="colstack_item panel_themes">
|
2017-03-18 07:23:02 +00:00
|
|
|
{{range .PrimaryThemes}}
|
2017-05-29 14:52:37 +00:00
|
|
|
<div class="theme_row rowitem editable_parent" style="{{if .FullImage}}background-image: url('/static/{{.FullImage}}');background-position: center;background-size: 50%;background-repeat: no-repeat;{{end}}">
|
2017-03-18 07:23:02 +00:00
|
|
|
<span style="float: left;">
|
2017-05-29 14:52:37 +00:00
|
|
|
<a href="/panel/themes/{{.Name}}" class="editable_block" style="font-size: 17px;">{{.FriendlyName}}</a><br />
|
|
|
|
<small class="panel_theme_author" style="margin-left: 2px;">Author: <a href="//{{.URL}}">{{.Creator}}</a></small>
|
2017-03-18 07:23:02 +00:00
|
|
|
</span>
|
2017-05-29 14:52:37 +00:00
|
|
|
<span class="panel_floater">
|
|
|
|
{{if .MobileFriendly}}<span class="panel_tag panel_theme_mobile" title="Mobile Friendly">📱</span>{{end}}
|
|
|
|
{{if .Tag}}<span class="panel_tag panel_theme_tag">{{.Tag}}</span>{{end}}
|
|
|
|
{{if .Active}}<span class="panel_tag panel_right_button">Default</span>{{else}}<a href="/panel/themes/default/{{.Name}}?session={{$.CurrentUser.Session}}" class="panel_tag panel_right_button">Make Default</a>{{end}}
|
2017-03-18 07:23:02 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<div class="colstack_item colstack_head">
|
|
|
|
<div class="rowitem rowhead"><a>Variant Themes</a></div>
|
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
<div id="panel_variant_themes" class="colstack_item panel_themes">
|
2017-03-18 07:23:02 +00:00
|
|
|
{{range .VariantThemes}}
|
2017-05-29 14:52:37 +00:00
|
|
|
<div class="theme_row rowitem editable_parent" style="{{if .FullImage}}background-image: url('/static/{{.FullImage}}');background-position: center;background-size: 50%;background-repeat: no-repeat;{{end}}">
|
2017-03-18 07:23:02 +00:00
|
|
|
<span style="float: left;">
|
2017-05-29 14:52:37 +00:00
|
|
|
<a href="/panel/themes/{{.Name}}" class="editable_block" style="font-size: 17px;">{{.FriendlyName}}</a><br />
|
|
|
|
<small class="panel_theme_author" style="margin-left: 2px;">Author: <a href="//{{.URL}}">{{.Creator}}</a></small>
|
2017-03-18 07:23:02 +00:00
|
|
|
</span>
|
2017-05-29 14:52:37 +00:00
|
|
|
<span class="panel_floater">
|
|
|
|
{{if .MobileFriendly}}<span class="panel_tag panel_theme_mobile" title="Mobile Friendly">📱</span>{{end}}
|
|
|
|
{{if .Tag}}<span class="panel_tag panel_theme_tag">{{.Tag}}</span>{{end}}
|
|
|
|
{{if .Active}}<span class="panel_tag panel_right_button">Default</span>{{else}}<a href="/panel/themes/default/{{.Name}}?session={{$.CurrentUser.Session}}" class="panel_tag panel_right_button">Make Default</a>{{end}}
|
2017-03-18 07:23:02 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-01-01 15:45:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-05-29 14:52:37 +00:00
|
|
|
{{template "footer.html" . }}
|