2020-08-22 13:17:31 +00:00
|
|
|
doctype html
|
|
|
|
html
|
|
|
|
head
|
|
|
|
meta(charset="utf-8")
|
2020-08-24 13:49:15 +00:00
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1")
|
2021-12-28 03:32:11 +00:00
|
|
|
- const theme = settings && ["dark", "light", "edgeless-light"][settings.theme] || "dark"
|
|
|
|
link(rel="stylesheet" type="text/css" href=getStaticURL("sass", `/${theme}.sass`))
|
2020-08-22 13:17:31 +00:00
|
|
|
script(type="module" src=getStaticURL("html", "/static/js/focus.js"))
|
|
|
|
block head
|
|
|
|
|
|
|
|
body.show-focus
|
2021-01-12 12:13:46 +00:00
|
|
|
- let showNav = true
|
|
|
|
block pre-nav
|
|
|
|
if showNav
|
|
|
|
nav.main-nav
|
|
|
|
.links
|
|
|
|
a(href="/").link.home CloudTube
|
|
|
|
a(href="/subscriptions" title="Subscriptions").link.icon-link
|
2021-12-28 03:32:11 +00:00
|
|
|
!= icons.get("subscriptions")
|
2021-01-12 12:13:46 +00:00
|
|
|
a(href="/settings" title="Settings").link.icon-link
|
2021-12-28 03:32:11 +00:00
|
|
|
!= icons.get("settings")
|
2021-01-12 12:13:46 +00:00
|
|
|
form(method="get" action="/search").search-form
|
2021-12-15 23:02:06 +00:00
|
|
|
input(type="text" placeholder="Search" aria-label="Search a video" name="q" autocomplete="off" value=query).search
|
2020-08-22 13:17:31 +00:00
|
|
|
|
2021-04-16 04:12:04 +00:00
|
|
|
div
|
|
|
|
block content
|
2021-04-16 03:24:48 +00:00
|
|
|
|
2021-04-16 04:12:04 +00:00
|
|
|
if showNav
|
|
|
|
footer.footer__container
|
|
|
|
div.footer__center
|
|
|
|
p Released as AGPL free software.
|
|
|
|
.footer__cols
|
|
|
|
div
|
2021-11-20 06:42:34 +00:00
|
|
|
h3.footer__colhead Source code
|
2021-04-16 04:12:04 +00:00
|
|
|
ul.footer__list
|
|
|
|
li: a(href="https://sr.ht/~cadence/tube") Project hub
|
|
|
|
li: a(href="https://lists.sr.ht/~cadence/tube-announce") Announcements
|
|
|
|
li: a(href="https://todo.sr.ht/~cadence/tube") Report a problem
|
|
|
|
div
|
|
|
|
h3.footer__colhead About
|
|
|
|
ul.footer__list
|
|
|
|
li: a(href="/privacy") Privacy policy
|
2021-10-06 07:55:14 +00:00
|
|
|
li: a(href="/licenses" data-jslicense=1) Licenses
|
2021-11-20 06:42:34 +00:00
|
|
|
if constants.takedown
|
|
|
|
li: a(href="/takedown") DMCA
|