ProfouzorsLinx/templates/base.html

37 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2015-09-24 07:44:49 +02:00
<html>
<head>
<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'>
<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'>
{% block head %}{% endblock %}
2015-09-24 07:44:49 +02:00
</head>
2015-09-24 07:44:49 +02:00
<body>
<div id="container_container">
<div id="container">
<div id="header">
<div id="navigation" class="right">
{% if !using_auth %}
2015-10-30 23:36:47 +01:00
<a href="{{ sitepath }}">Upload</a> |
<a href="{{ sitepath }}paste/">Paste</a> |
{% endif %}
2015-10-30 23:36:47 +01:00
<a href="{{ sitepath }}API/">API</a>
</div>
2015-10-30 23:36:47 +01:00
<h2><a href="{{ sitepath }}" title="{{ sitename }}">{{ sitename }}</a></h2>
</div>
2015-09-24 07:44:49 +02:00
{% block content %}{% endblock %}
2015-09-24 07:44:49 +02:00
<div id="footer">
<a href="https://github.com/andreimarcu/linx-server">linx</a>
</div>
2015-09-24 07:44:49 +02:00
</div>
</div>
2015-09-24 07:44:49 +02:00
</body>
</html>