forked from madcowfred/evething
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
48 lines (46 loc) · 2.06 KB
/
Copy pathbase.html
File metadata and controls
48 lines (46 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"><head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js" type="text/javascript"></script>
<script src="{{ STATIC_URL }}jquery.tablesorter.min.js"></script>
<script src="{{ STATIC_URL }}evething.js"></script>
<script src="{{ STATIC_URL }}bootstrap.min.js"></script>
<link rel="stylesheet" href="{{ STATIC_URL }}bootstrap.min.css">
<link rel="stylesheet" href="{{ STATIC_URL }}evething.css" />
{% block extra_head %}{% endblock %}
<title>{% block title %}EVEthing{% endblock %}</title>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="https://github.com/madcowfred/evething">EVEthing</a>
<div class="nav-collapse">
<ul class="nav">
<li{% block nav_home_class %}{% endblock %}><a href="{% url home %}">Home</a></li>
<li{% block nav_blueprints_class %}{% endblock %}><a href="{% url evething.thing.views.blueprints %}">Blueprints</a></li>
<li{% block nav_orders_class %}{% endblock %}><a href="{% url evething.thing.views.orders %}">Orders</a></li>
<li{% block nav_trade_class %}{% endblock %}><a href="{% url evething.thing.views.trade %}">Trade</a></li>
<li{% block nav_transactions_class %}{% endblock %}><a href="{% url evething.thing.views.transactions %}">Transactions</a></li>
</ul>
</div>
<p class="navbar-text pull-right">
{% if user.is_authenticated %}
Logged in as {{ user.username }} | <a href="{% url auth_logout %}">Logout</a>
{% else %}
You are not logged in. | <a href="{% url auth_login %}">Login</a>
{% endif %}
</p>
</div>
</div>
</div>
<div class="container" id="container">
{% block content %}{% endblock %}
<hr>
<footer>
<p>© Freddie 2012</p>
</footer>
</div>
</body>
</html>