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.
36 lines
1.1 KiB
36 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{{ sitename }}{% endblock %}</title>
|
|
<meta charset='utf-8' content='text/html' http-equiv='content-type'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
<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'>
|
|
<link href='{{ sitepath }}static/images/favicon.gif' rel='icon' type='image/gif'>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container_container">
|
|
<div id="container">
|
|
<div id="header">
|
|
<div id="navigation" class="right">
|
|
{% if !using_auth %}
|
|
<a href="{{ sitepath }}">Upload</a> |
|
|
<a href="{{ sitepath }}paste/">Paste</a> |
|
|
{% endif %}
|
|
<a href="{{ sitepath }}API/">API</a>
|
|
</div>
|
|
<h2><a href="{{ sitepath }}" title="{{ sitename }}">{{ sitename }}</a></h2>
|
|
</div>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
<div id="footer">
|
|
<a href="https://github.com/andreimarcu/linx-server">linx</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|