2015-09-24 22:04:51 +02:00
|
|
|
<!DOCTYPE html>
|
2015-09-24 07:44:49 +02:00
|
|
|
<html>
|
2020-03-12 21:32:35 +01:00
|
|
|
|
2015-09-24 07:44:49 +02:00
|
|
|
<head>
|
2015-09-24 22:04:51 +02:00
|
|
|
<title>{% block title %}{{ sitename }}{% endblock %}</title>
|
|
|
|
<meta charset='utf-8' content='text/html' http-equiv='content-type'>
|
2020-03-13 01:11:05 +01:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=0.8'>
|
2019-01-29 08:00:08 +01:00
|
|
|
<link href='{{ sitepath }}static/css/linx.css?v=1' media='screen, projection' rel='stylesheet' type='text/css'>
|
2016-06-15 17:42:57 +02:00
|
|
|
<link href='{{ sitepath }}static/css/hint.css' rel='stylesheet' type='text/css'>
|
2015-10-30 23:36:47 +01:00
|
|
|
<link href='{{ sitepath }}static/images/favicon.gif' rel='icon' type='image/gif'>
|
2021-02-11 04:07:41 +01:00
|
|
|
{% block head %}{% endblock %}
|
2015-09-24 07:44:49 +02:00
|
|
|
</head>
|
2015-09-24 22:04:51 +02:00
|
|
|
|
2015-09-24 07:44:49 +02:00
|
|
|
<body>
|
2015-09-24 22:04:51 +02:00
|
|
|
<div id="container_container">
|
|
|
|
<div id="container">
|
|
|
|
<div id="header">
|
|
|
|
<div id="navigation" class="right">
|
2020-03-07 00:21:49 +01:00
|
|
|
{% if auth != "header" %}
|
2020-03-12 21:32:35 +01:00
|
|
|
<a href="{{ sitepath }}">Upload</a> |
|
|
|
|
<a href="{{ sitepath }}paste/">Paste</a> |
|
2015-10-14 21:20:41 +02:00
|
|
|
{% endif %}
|
2015-10-30 23:36:47 +01:00
|
|
|
<a href="{{ sitepath }}API/">API</a>
|
2020-03-12 21:32:35 +01:00
|
|
|
{% for custom_file_name, custom_page_name in custom_pages_names sorted %}
|
|
|
|
| <a href="{{ sitepath }}{{ custom_file_name }}/">{{ custom_page_name }}</a>
|
|
|
|
{% endfor %}
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2020-03-12 21:32:35 +01:00
|
|
|
<h2><a href="{{ sitepath }}" title="{{ sitename }}">{{ sitename }}</a></h2>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2015-09-24 07:44:49 +02:00
|
|
|
|
2015-09-24 22:04:51 +02:00
|
|
|
{% block content %}{% endblock %}
|
2021-02-10 02:00:20 +01:00
|
|
|
<div id="footer">
|
2021-08-20 18:13:58 +02:00
|
|
|
<p>{{ extra_footer_text }} </p><a href="https://github.com/zizzydizzymc/linx-server">linx-server</a>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2015-09-24 07:44:49 +02:00
|
|
|
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-24 07:44:49 +02:00
|
|
|
</body>
|
2020-03-12 21:32:35 +01:00
|
|
|
|
|
|
|
</html>
|