You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.8 KiB
70 lines
1.8 KiB
2 years ago
|
<!doctype html>
|
||
|
<html lang="en_EN">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>
|
||
|
Urban Filehub
|
||
|
</title>
|
||
|
<meta name="description" content="">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<link href="/css/styles.css" rel="stylesheet" type="text/css">
|
||
|
|
||
|
{% block head %}{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
{% block app_header %}
|
||
|
<div class="bar">
|
||
|
<div class="bar__start">
|
||
|
<h1 class="m-top-4 m-bottom-4 h4">
|
||
|
Urban Filehub
|
||
|
</h1>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<noscript>
|
||
|
<div class="container-full">
|
||
|
<div class="grid justify-center">
|
||
|
<div class="col-12">
|
||
|
<div class="panel panel--border-highlight border-color-danger m-bottom-4">
|
||
|
Only works with Javascript!
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</noscript>
|
||
|
|
||
|
{% block app_main %}{% endblock %}
|
||
|
<tiny-notification></tiny-notification>
|
||
|
</main>
|
||
|
|
||
|
<footer>
|
||
|
<div class="container-full">
|
||
|
<div class="grid justify-center">
|
||
|
<div class="col-12">
|
||
|
<hr / class="m-top-8">
|
||
|
<div class="group">
|
||
|
<div class="group__item">
|
||
|
Published under
|
||
|
<strong>
|
||
|
GPL License
|
||
|
</strong>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<script>
|
||
|
const csrfToken = '{{ csrfToken }}'
|
||
|
</script>
|
||
|
|
||
|
{% block script %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|