userpage.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>{{.User.Name}} - Timeline</title>

<link rel="alternate" type="application/rss+xml" href="{{.User.ID}}.rss" title="RSS Feed">
<link href='{{.User.ID}}' rel='alternate' type='application/activity+json'>
<link href='{{.User.ID}}.json' rel='alternate' type='application/activity+json'>

</head>
<body>
    <header class="container">
        {{ template "header.tpl.html" .}}
    </header>
<main class="container">



<div class="">

	{{template "user.tpl.html" .}}
	<h1>Timeline</h1>
	{{range .Posts}}
		{{ template "post.tpl.html" .}}
	{{end}}
	<footer></footer>
</div>


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