aboutsummaryrefslogtreecommitdiff
path: root/static/index.html
blob: 502e5274b960dca0bd6a7b17681efb41c14c9475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{{ define "header" }}
<title>{{ .Title }}</title>
<meta name="description" content="{{ .Message }}">    

<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ .Board.Domain }}">
<meta property="og:site_name" content="{{ .Board.Actor.PreferredUsername }}" />

<meta property="og:title" content="{{ .Title }}">
<meta property="og:description" content="{{ .Message }}">

<meta name="twitter:title" content="{{ .Title }}">
<meta name="twitter:description" content="{{ .Message }}">
<meta name="twitter:card" content="summary_large_image">

{{ end }}

{{ define "top" }}{{ end }}
{{ define "content" }}
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
  <h1>{{ .Title }}</h1>
  <p style="text-align: justify">{{.Message}}</p>
  
  <div style="margin-top:50px;">
  <table align="center" style="text-align: left;">
    <th>
      <tr>Current known instances</tr>
    </th>

    {{ range .InstanceIndex }}
    <tr>
      <td>{{ .Id }}</td>
    </tr>
    {{ end }}
  </table>
  </div>
</div>
{{ end }}
{{ define "bottom" }}{{ end }}

{{ define "script" }}
{{ end }}