index.tpl.html

 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
{{template "prelude.tpl.html" .}}

<title>TAP - A Tiny Activity Pub Service</title>
</head>
<body>
    <header class="container">
        {{ template "header.tpl.html" .}}
    </header>
<main class="container">

	<div class="account-grid">
	{{range .Accounts}}


		<article class="accountprofile-grid">
			<img class="heroimage" src="{{.Icon}}"/>
			<div class="profileheader">
				<h3><a href="{{.ID}}">{{.Name}}</a></h3><br/>
				<small><a href="{{.ID}}">{{.ID}}</a></small><br/>
				<small>{{.SummaryHTML}}</small>
				</div>
		</article>

	{{end}}
</div>



</main>
{{template "footer.tpl.html" .}}
</body>
</html>