mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-10-31 18:57:16 +00:00
461908e031
This applies the background color to the root page and avoids flicker during the initial page load.
19 lines
690 B
Cheetah
19 lines
690 B
Cheetah
{{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">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
<title>{{.Title}}</title>
|
|
</head>
|
|
<frameset cols="424px,*">
|
|
<frameset rows="316px,*">
|
|
<frame name="nav" src="/nav" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
|
|
<frame name="notification" src="/notifications" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
|
|
</frameset>
|
|
<frame name="main" src="/timeline/home" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
|
|
</frameset>
|
|
</html>
|
|
{{end}}
|