<!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" /> <script src="/delay.js"></script> <title>blek! File</title> {% 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> </body> </html>