31f506c50c
Moved Reload from the UserStore into the UserCache. Replaced many of the calls to Reload with CacheRemove. Simplified the error functions. Fixed a bug in the errors where they didn't have any CSS. Oops. Added CustomErrorJS(), unused for now, but it may be useful in the future, especially for plugins. Fixed many problems in the themes. Added the Stick(), Unstick(), CreateActionReply(), Lock() and Unlock() methods to *Topic. Renamed ip-search.html to ip-search-results.html Added the Activate() and initPerms methods to *User. Tempra Cursive is hiding from sight for this one commit. Added Font Awesome to /public/, it isn't used yet.
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" . }}
|