2f50da8cd8
Made minor improvements to the mobile friendliness on the Tempra Simple theme. Added levels to the other three themes. Added the group tags to the Tempra Conflux and Cosmo Conflux themes. Added more screenshots and updated some of the existing ones. Made a small cosmetic improvement to the theme list.
21 lines
1.1 KiB
HTML
21 lines
1.1 KiB
HTML
{{template "header.html" . }}
|
|
{{template "panel-menu.html" . }}
|
|
<style type="text/css">.rowitem::after {content:"";display:block;clear:both;}</style>
|
|
<div class="colblock_right">
|
|
<div class="rowitem rowhead"><a>Themes</a></div>
|
|
</div>
|
|
<div class="colblock_right">
|
|
{{range .ItemList}}
|
|
<div class="rowitem editable_parent" style="font-weight: normal;text-transform: none;{{if .FullImage}}background-image: url('/static/{{.FullImage}}');background-position: center;background-size: 50%;background-repeat: no-repeat;{{end}}">
|
|
<span style="float: left;">
|
|
<a href="/panel/themes/{{.Name}}" class="editable_block" style="font-size: 20px;">{{.FriendlyName}}</a><br />
|
|
<small style="margin-left: 2px;">Author: {{.Creator}}</small>
|
|
</span>
|
|
<span style="float: right;">
|
|
{{if .MobileFriendly}}<span class="username" title="Mobile Friendly">📱</span>{{end}}
|
|
{{if .Active}}<span class="username">Default</span>{{else}}<a href="/panel/themes/default/{{.Name}}?session={{$.CurrentUser.Session}}" class="username">Make Default</a>{{end}}
|
|
</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{template "footer.html" . }} |