37 lines
1.3 KiB
Smarty
37 lines
1.3 KiB
Smarty
{{define "base"}}
|
|
<!doctype html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>{{template "title" .}} | Offline Twitter</title>
|
|
<link rel='stylesheet' href='/static/styles.css'>
|
|
<link rel='shortcut icon' href='/static/twitter.ico' type='image/x-icon'>
|
|
<link rel='stylesheet' href='/static/vendor/fonts.css'>
|
|
<script src="/static/vendor/htmx.min.js" integrity="sha384-zUfuhFKKZCbHTY6aRR46gxiqszMk5tcHjsVFxnUo8VMus4kHGVdIYVbOYYNlKmHV" crossorigin="anonymous"></script>
|
|
<script src="/static/vendor/htmx-extension-json-enc.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="top-bar">
|
|
<a onclick="window.history.back()" class="back-button quick-link">
|
|
<img class="svg-icon" src="/static/icons/back.svg" />
|
|
</a>
|
|
<form hx-get="/search" hx-push-url="true" hx-target="body" hx-swap="inner-html show:window:top">
|
|
<input id="search-bar"
|
|
name="q"
|
|
placeholder="Search" type="text"
|
|
{{with (search_text)}} value="{{.}}" {{end}}
|
|
/>
|
|
</form>
|
|
</div>
|
|
{{template "nav-sidebar"}}
|
|
<main>
|
|
{{template "main" .}}
|
|
</main>
|
|
<dialog id="image_carousel">
|
|
<a class="quick-link close-button" onclick="image_carousel.close()">X</a>
|
|
<img src="">
|
|
</dialog>
|
|
</body>
|
|
</html>
|
|
{{end}}
|