cement/templates/base.html
2024-08-05 14:45:09 +01:00

34 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<title>{% block title %}{% endblock title %} - Cement</title>
{% endblock head %}
<link rel="stylesheet" href="/static/main.css">
<link rel="icon" href="/static/logo.svg">
<link rel="mask-icon" href="/static/logo.svg" color="#ffffff">
<link rel="apple-touch-icon" href="/static/apple-touch-icon.png">
<meta name="theme-color" content="#1e293b">
<script defer data-domain="paste.blakerain.com" src="https://pa.blakerain.com/js/script.js"></script>
</head>
<body class="bg-neutral-200 text-neutral-800 dark:bg-slate-900 dark:text-neutral-300 flex
flex-col gap-4 h-screen p-4">
{% block body %}{% endblock body %}
<footer class="select-none text-sm text-neutral-500 dark:text-neutral-500 flex flex-row
justify-center items-center gap-2">
<img src="/static/logo.svg" class="h-8 invert dark:invert-0 opacity-50">
<div class="flex flex-col">
<div>
Powered by
<a
class="text-neutral-500 dark:text-neutral-500 hover:text-neutral-600 dark:hover:text-neutral-400"
href="https://git.blakerain.com/BlakeRain/cement"
>Cement {{ version }}</a
>
</div>
<div>{{ build_date }}</div>
</div>
</footer>
</body>
</html>