52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en_US">
|
|
<head>
|
|
<meta charset="utf8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
|
|
<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" />
|
|
<link rel="stylesheet" href="/form.css" />
|
|
<link rel="stylesheet" href="/js-only.css" />
|
|
<script src="/delay.js"></script>
|
|
<title>blek! File</title>
|
|
{% include "seotags.html" %}
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="header">
|
|
{% include "text-x-generic.svg" %}
|
|
blek! File - a minute file sharing
|
|
</div>
|
|
<div class="content">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<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>
|
|
|
|
<script src="/js-only.js"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html> |