85 lines
1.6 KiB
HTML
85 lines
1.6 KiB
HTML
{% load staticfiles %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Main Page</title>
|
|
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}" media="screen">
|
|
|
|
|
|
|
|
<title>{% block title %}Title{% endblock %}</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="navbar-inner">
|
|
<div class="container-fluid">
|
|
{% block header %}
|
|
Header
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="span3">
|
|
<div class="well sidebar-nav">
|
|
{% block sidebar %}<p>Sidebar</p>{% endblock %}
|
|
</div><!--/.well -->
|
|
</div><!--/span-->
|
|
<div class="span9">
|
|
<div class="hero-unit">
|
|
{% block content %}
|
|
<h1>Hello, world!</h1>
|
|
<p>This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
|
|
<p><a href="#" class="btn btn-primary btn-large">Learn more »</a></p>
|
|
{% endblock %}
|
|
</div>
|
|
</div><!--/span-->
|
|
</div><!--/row-->
|
|
|
|
<hr>
|
|
|
|
<footer>
|
|
<p>© Martin Bauer</p>
|
|
</footer>
|
|
|
|
</div><!--/.fluid-container-->
|
|
|
|
<script src="http://code.jquery.com/jquery.js"></script>
|
|
<script src="{% static "js/bootstrap.min.js" %}"></script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|