bfile/filed/templates/base.html

43 lines
1.5 KiB
HTML
Raw Normal View History

2023-09-29 15:25:20 +02:00
<!DOCTYPE html>
<html lang="en_US">
<head>
<meta charset="utf8" />
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-29 17:45:12 +02:00
<script src="/delay.js"></script>
2023-09-29 15:25:20 +02:00
<title>blek! File</title>
2023-09-29 16:41:23 +02:00
{% block head %}{% endblock %}
2023-09-29 15:25:20 +02:00
</head>
<body>
2023-09-29 16:41:23 +02:00
<div class="header">
{% include "text-x-generic.svg" %}
blek! File - a minute file sharing
</div>
<div class="content">
{% block body %}{% endblock %}
</div>
2023-09-29 18:15:22 +02:00
<div class="footer">
<table width='100%'>
<tbody>
<tr>
<td>
Made with Rust
</td>
<td>
Released under GPLv3
</td>
<td>
<a href='https://git.blek.codes/blek/bfile' class='btn'>
Source code
</a>
</td>
</tr>
</tbody>
</table>
</div>
2023-09-29 15:25:20 +02:00
</body>
</html>