2023-09-29 15:25:20 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en_US">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf8" />
|
2023-09-30 04:57:28 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2023-09-30 05:21:57 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
2023-09-30 04:57:28 +02:00
|
|
|
|
2023-09-29 16:41:23 +02:00
|
|
|
<link rel="stylesheet" href="https://unpkg.com/reset-css@5.0.1/reset.css" />
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;600;900&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="/paint.css" />
|
2023-09-30 04:57:28 +02:00
|
|
|
<link rel="stylesheet" href="/form.css" />
|
2023-10-01 12:42:22 +02:00
|
|
|
<link rel="stylesheet" href="/js-only.css" />
|
2023-09-29 17:45:12 +02:00
|
|
|
<script src="/delay.js"></script>
|
2023-10-21 04:08:52 +02:00
|
|
|
<title>{{ conf.brand.instance_name }}</title>
|
2023-10-13 14:38:21 +02:00
|
|
|
|
2023-10-13 14:43:10 +02:00
|
|
|
<style> .footer svg { height: 32px; margin: 10px 0 } </style>
|
2023-10-13 14:38:21 +02:00
|
|
|
|
2023-10-21 04:12:58 +02:00
|
|
|
{%- include "seotags.html" %}
|
|
|
|
{% block head %}{% endblock -%}
|
2023-09-29 15:25:20 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2023-09-29 16:41:23 +02:00
|
|
|
<div class="header">
|
2023-10-20 16:49:21 +02:00
|
|
|
<img class="header-bg" src="/bfile-header.webp" width="400px" height="60px">
|
|
|
|
<div class='header-text'>
|
2023-10-21 07:55:46 +02:00
|
|
|
<a class="header-home" href="/">
|
|
|
|
{{- conf.brand.instance_name -}}
|
|
|
|
{%- if conf.brand.instance_motto.len() != 0 -%}
|
|
|
|
{#- Whitespace control is stupid -#}
|
|
|
|
{{- " - " -}}{{- conf.brand.instance_motto -}}
|
|
|
|
{%- endif -%}
|
|
|
|
</a>
|
2023-10-20 16:49:21 +02:00
|
|
|
</div>
|
2023-09-29 16:41:23 +02:00
|
|
|
</div>
|
2023-10-20 16:49:21 +02:00
|
|
|
<div class='content-box'>
|
|
|
|
<div class="content">
|
2023-10-21 04:12:58 +02:00
|
|
|
{%- block body %}{% endblock -%}
|
2023-10-20 16:49:21 +02:00
|
|
|
</div>
|
|
|
|
<div class="footer">
|
2023-10-13 14:38:21 +02:00
|
|
|
|
2023-10-20 16:49:21 +02:00
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<small>Made with Rust and <3</small>
|
|
|
|
|
|
|
|
<ul style='margin:10px 0'>
|
|
|
|
<li>
|
|
|
|
<a href="https://git.blek.codes/blek/bfile">
|
|
|
|
Source code
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/license">
|
|
|
|
Released under GPLv3
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="/authors">
|
|
|
|
Made by blek! and contributors
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
<td style="text-align:right;vertical-align:bottom">
|
|
|
|
<a href="https://blek.codes">
|
2023-10-21 04:12:58 +02:00
|
|
|
{%- include "blek.svg" -%}
|
2023-10-20 16:49:21 +02:00
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2023-10-13 14:38:21 +02:00
|
|
|
|
2023-10-20 16:49:21 +02:00
|
|
|
</div>
|
2023-09-29 18:15:22 +02:00
|
|
|
</div>
|
2023-10-01 12:47:38 +02:00
|
|
|
|
|
|
|
<script src="/js-only.js"></script>
|
2023-10-21 04:12:58 +02:00
|
|
|
{%- block scripts %}{% endblock -%}
|
2023-09-29 15:25:20 +02:00
|
|
|
</body>
|
|
|
|
</html>
|