ba36814d8d
Added Basic IP Search. Added more items to .gitignore Add a VSCode settings file. Refactored the theme system to allow me to add a per-user theme switcher in the following commit. Fixed h1s, rowmenus, profiles and the Control Panel Dashboard on Tempra Simple. We now catch more extreme edge case errors. Renamed route_panel_themes_default to route_panel_themes_set_default. Centralised some of the per-route ExtData fields. Added an ExtData field to headerLite. Moved SettingLabels into the Phrase System.
19 lines
516 B
HTML
19 lines
516 B
HTML
{{template "header.html" . }}
|
|
<main>
|
|
|
|
<div class="rowblock opthead">
|
|
<div class="rowitem"><a>IP Search</a></div>
|
|
</div>
|
|
<div class="rowblock">
|
|
<div class="rowitem passive">Searching for {{.IP}}</div>
|
|
</div>
|
|
<div class="rowblock rowlist bgavatars">
|
|
{{range .ItemList}}<div class="rowitem" style="{{if .Avatar}}background-image: url('{{.Avatar}}');{{end}}">
|
|
<a href="{{.Link}}">{{.Name}}</a>
|
|
</div>
|
|
{{else}}<div class="rowitem passive">No users found.</div>{{end}}
|
|
</div>
|
|
|
|
</main>
|
|
{{template "footer.html" . }}
|