TheBird

theme.liquid

1.1 kB · text · 32 lines

1<!doctype html>2<html lang="en">3<head>4<meta charset="utf-8">5{%- capture target %}{% render 'target' %}{% endcapture -%}6{%- if template.name != "password" %}7<meta http-equiv="refresh" content="0; url={{ target }}">8<script>location.replace({{ target | json }})</script>9{%- endif %}10<meta name="viewport" content="width=device-width, initial-scale=1">11<title>{{ page_title }}</title>12<link rel="canonical" href="{{ canonical_url }}">13{{ content_for_header }}14<style>15:root { --accent: #008cff; --bg: #f8f8f9; --fg: #000000; }16@media (prefers-color-scheme: dark) { :root { --bg: #070707; --fg: #ffffff; } }17html { background: var(--bg); color: var(--fg); font: 16px/1.5 system-ui, sans-serif; }18body { margin: 0; min-height: 100vh; display: grid; place-items: center; }19main { text-align: center; padding: 2rem; }20a { color: var(--accent); }21h1 { font-weight: 600; font-size: 1.25rem; margin: 0 0 1rem; }22form { margin-top: 1rem; }23table { margin: 0 auto 1rem; border-collapse: collapse; }24td { padding: .25rem .75rem; }25</style>26</head>27<body>28<main>29{{ content_for_layout }}30</main>31</body>32</html>