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'>
|
2015-09-25 05:26:18 +02:00
|
|
|
<link href='/static/css/linx.css' media='screen, projection' rel='stylesheet' type='text/css'>
|
|
|
|
<link href='/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-01 06:15:30 +02:00
|
|
|
<a href="/">Upload</a> |
|
|
|
|
<a href="/paste/">Paste</a>
|
2015-09-24 22:04:51 +02:00
|
|
|
</div>
|
|
|
|
<h2><a href="/" title="{{ sitename }}">{{ sitename }}</a></h2>
|
|
|
|
</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>
|