mentions.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
33
34
35
36
37
38
39
40
41
42
|
{{template "prelude.tpl.html" .}}
<title>{{.User.Name}} - Timeline</title>
</head>
<body>
<header class="container">
{{ template "header.tpl.html" .}}
</header>
<main class="container">
<div class="">
{{template "user.tpl.html" .}}
{{$top := .}}
{{if .FeaturedPost}}
{{ template "post.tpl.html" .FeaturedPost}}
<h2>Replies</h2>
{{end}}
<div class="alert">
<strong>Caution:</strong> The messages below originated from outside of this instance.
</div>
{{range .Posts}}
{{if .Sensitive}}
{{else}}
{{ template "post.tpl.html" .}}
{{end}}
{{end}}
<footer></footer>
</article>
</main>
{{template "footer.tpl.html" .}}
</body>
</html>
|