past3d/templates/base.html

36 lines
963 B
HTML
Raw Normal View History

2013-10-01 16:38:42 +02:00
<html>
<head>
2013-10-13 18:41:03 +02:00
<title>past3d :: {% block title %}{% endblock %}</title>
2013-10-01 16:38:42 +02:00
<link rel="stylesheet" href="{{STATIC_URL}}css/pure/pure-min.css">
<link rel="stylesheet" href="{{STATIC_URL}}css/font-awesome/css/font-awesome.min.css">
<!--[if IE 7]>
<link rel="stylesheet" href="{{STATIC_URL}}css/font-awesome/css/font-awesome-ie7.min.css">
<![endif]-->
<link rel="stylesheet" href="{{STATIC_URL}}css/layout.css">
{% block headeraddons %}
{% endblock %}
</head>
<body>
<div id="header">
<div class="pure-menu pure-menu-open pure-menu-horizontal">
<a href="#" class="pure-menu-heading">past3d</a>
<ul>
2013-10-16 23:59:32 +02:00
<li ><a href="#">Home</a></li>
2013-10-13 22:01:52 +02:00
<li><a href="{% url 'geometry_create' %}">New Paste</a></li>
2013-10-16 23:59:32 +02:00
<li><a href="{% url 'login' %}">Login</a></li>
2013-10-01 16:38:42 +02:00
<li><a href="#">Sign up</a></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
</div>
{% block content %}
{% endblock %}
</body>
</html>