aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/dashboard/server_status.html
blob: 80196592c9daf8518fba2c814b700331a9b02af5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{define "server_status"}}
<section class="server-status">
    <h2>Server Status</h2>
    <div id=uptime>
        <dl>
            <dt>Url</dt>
            <dd>{{ .ServerStatus.Site }}</dd>
            <dt>Online</dt>
            <dd>{{ .ServerStatus.Online }}</dd>
            <dt>Timestamp</dt>
            <dd>{{ .ServerStatus.Timestamp }}</dd>
        </dl>
    </div>
</section>
{{end}}