aboutsummaryrefslogtreecommitdiff
path: root/templates/root.tmpl
blob: cd33139835891fc9b26e8bc28837b9608e8530c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{with .Data}}
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset='utf-8'>
	<meta content='width=device-width, initial-scale=1' name='viewport'>
	<title>{{.Title}}</title>
</head>
<frameset cols="30%,*">
	<frameset rows="316px,*">
		<frame name="nav" class="nav-frame" src="/nav" /> 
		<frame name="notification" class="notification-frame" src="/notifications" /> 
	</frameset>
	<frame name="main" class="main-frame" src="/timeline/home" /> 
</frameset>
</html>
{{end}}