minecraftcodex/minecraftcodex/database/templates/layout.html

67 lines
2.5 KiB
HTML

<!doctype html>
<html>
<head>
<link rel="stylesheet" href="/static/lib/font-awesome.3.1.1.css" />
<link rel="stylesheet" href="/static/lib/bootstrap.css" />
<link rel="stylesheet" href="/static/lib/responsive.css" />
{% block head %}{% endblock %}
{% include "head.html" %}
<title>{% block head_title %}{{ site_title }}{% endblock %}</title>
</head>
<body>
<header>
<div class="navbar">
<div class="navbar-inner">
<div class="container" style="width: auto;">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">
Minecraft Codex
<sup>alpha! :3</sup>
</a>
<div class="nav-collapse">
<ul class="nav">
<li class="{% if section == 'home' %}active{% endif %}">
<a href="/">Home</a>
</li>
<li class="{% if section == 'versions' %}active{% endif %}">
<a href="/versions">Versions</a>
</li>
</ul>
<ul class="nav pull-right">
<li class="pull-right">
<a href="/about">About the project</a>
</li>
</ul>
</div><!-- /.nav-collapse -->
</div>
</div><!-- /navbar-inner -->
</div>
</header>
<div class="container">
{% block content %}
{% endblock %}
</div>
<footer class="container-fluid">
<hr style="margin: 0" />
<div class="pull-left">
<small>
MinecraftCodex {% if app_version %}v.{{ app_version }}{% endif %}<br />
If you have feedback, please use the contact information to the right.
</small>
</div>
<div class="pull-right">
<a href="http://twitter.com/minecraftcodex">
<i class="icon-twitter"></i> @minecraftcodex
</a><br />
<a href="mailto:minecraftcodex@gmail.com">
<i class="icon-envelope"></i> Email
</a>
</div>
</footer>
</body>
</html>