bfile/filed/templates/base.html

52 lines
1.8 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-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-09-29 15:25:20 +02:00
<title>blek! File</title>
{% include "seotags.html" %}
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>
2023-10-09 14:46:32 +02:00
bleK! File {{ env.shortcommit() }}
2023-09-29 18:15:22 +02:00
</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-10-01 12:47:38 +02:00
<script src="/js-only.js"></script>
{% block scripts %}{% endblock %}
2023-09-29 15:25:20 +02:00
</body>
</html>