root.tmpl 690 B

123456789101112131415161718
  1. {{with .Data}}
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  6. <link rel="icon" type="image/png" href="/static/favicon.png">
  7. <link rel="stylesheet" href="/static/style.css">
  8. <title>{{.Title}}</title>
  9. </head>
  10. <frameset cols="424px,*">
  11. <frameset rows="316px,*">
  12. <frame name="nav" src="/nav" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
  13. <frame name="notification" src="/notifications" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
  14. </frameset>
  15. <frame name="main" src="/timeline/home" {{if $.Ctx.DarkMode}}class="dark"{{end}}>
  16. </frameset>
  17. </html>
  18. {{end}}