aboutsummaryrefslogtreecommitdiff
path: root/templates/root.tmpl
blob: ef25c90a373968cce19269dac47a6c357b595e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{with .Data}}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 
	<link rel="icon" type="image/png" href="/static/favicon.png">
	<title>{{.Title}}</title>
</head>
<frameset cols="420px,*">
	<frameset rows="316px,*">
		<frame name="nav" src="/nav"> 
		<frame name="notification" src="/notifications"> 
	</frameset>
	<frame name="main" src="/timeline/home"> 
</frameset>
</html>
{{end}}