2015-09-24 22:04:51 +02:00
|
|
|
<!DOCTYPE html>
|
2015-09-24 07:44:49 +02:00
|
|
|
<html>
|
|
|
|
<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'>
|
2018-06-09 19:31:44 +02:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
2015-10-30 23:36:47 +01:00
|
|
|
<link href='{{ sitepath }}static/css/linx.css' 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'>
|
2015-09-24 22:04:51 +02: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">
|
2015-10-14 21:20:41 +02:00
|
|
|
{% if !using_auth %}
|
2015-10-30 23:36:47 +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>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
2015-10-30 23:36:47 +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 %}
|
2015-09-24 07:44:49 +02:00
|
|
|
|
2015-09-24 22:04:51 +02:00
|
|
|
<div id="footer">
|
|
|
|
<a href="https://github.com/andreimarcu/linx-server">linx</a>
|
|
|
|
</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>
|
2015-09-24 22:04:51 +02:00
|
|
|
</html>
|