bloat/templates/root.tmpl

18 lines
520 B
Cheetah
Raw Normal View History

2020-02-18 22:15:37 +00:00
{{with .Data}}
2020-02-23 18:50:38 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
2020-02-18 22:15:37 +00:00
<head>
2020-02-23 18:50:38 +00:00
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
2020-10-25 11:35:22 +00:00
<link rel="icon" type="image/png" href="/static/favicon.png">
2020-02-18 22:15:37 +00:00
<title>{{.Title}}</title>
</head>
2021-01-23 08:44:05 +00:00
<frameset cols="424px,*">
2020-02-18 22:15:37 +00:00
<frameset rows="316px,*">
2020-02-23 18:50:38 +00:00
<frame name="nav" src="/nav">
<frame name="notification" src="/notifications">
2020-02-18 22:15:37 +00:00
</frameset>
2020-02-23 18:50:38 +00:00
<frame name="main" src="/timeline/home">
2020-02-18 22:15:37 +00:00
</frameset>
</html>
{{end}}