53 lines
2.2 KiB
Plaintext
53 lines
2.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang=en>
|
|
<meta charset=utf-8>
|
|
<meta name=viewport content="width=device-width">
|
|
<meta name=htmx-config content='{"historyCacheSize":0}'>
|
|
<title>{{ page_title }} » Bit Badger Solutions</title>
|
|
<link rel=stylesheet href="https://fonts.googleapis.com/css?family=Oswald|Raleway">
|
|
{% page_head -%}
|
|
<body hx-boost:inherited=true hx-target:inherited=main hx-indicator:inherited=#loadOverlay
|
|
hx-swap:inherited="innerHTML show:top showTarget:body">
|
|
<header class=site-header>
|
|
<div class=header-logo>
|
|
<a href={{ "" | relative_link }}>
|
|
<img src={{ "bitbadger.png" | theme_asset }}
|
|
alt="A cartoon badger looking at a computer screen, with his paw on a mouse"
|
|
title="Bit Badger Solutions">
|
|
</a>
|
|
</div>
|
|
<div class=header-title><a href="{{ "" | relative_link }}">Bit Badger Solutions</a></div>
|
|
<div class=header-spacer> </div>
|
|
<div class=header-social>
|
|
<a href=https://twitter.com/Bit_Badger title="Bit_Badger on Twitter" target=_blank>
|
|
<img src={{ "twitter.png" | theme_asset }} alt="Twitter">
|
|
</a>
|
|
<a href=https://www.facebook.com/bitbadger.solutions title="Bit Badger Solutions on Facebook" target=_blank>
|
|
<img src={{ "facebook.png" | theme_asset }} alt="Facebook">
|
|
</a>
|
|
</div>
|
|
</header>
|
|
<div class=load-overlay id=loadOverlay><h1>Loading…</h1></div>
|
|
<main>{{ content }}</main>
|
|
<footer hx-boost:inherited=false>
|
|
<div>
|
|
<small>
|
|
{% if is_logged_on -%}
|
|
<a href={{ "admin/dashboard" | relative_link }}>Dashboard</a> ~
|
|
<form id=mwl-log-off method=post action={{ "user/log-off" | relative_link }} style="display:inline">
|
|
<a href={{ "user/log-off" | relative_link}}
|
|
onclick="document.getElementById('mwl-log-off').submit(); return false">Log Off</a>
|
|
</form>
|
|
{% else %}
|
|
<a href={{ "user/log-on" | relative_link }}>Log On</a>
|
|
{% endif %}
|
|
</small>
|
|
</div>
|
|
<div class=footer-by>
|
|
A <strong><a href={{ "" | relative_link }}>Bit Badger Solutions</a></strong> original design
|
|
</div>
|
|
</footer>
|
|
{% page_foot %}
|
|
</body>
|
|
</html>
|