Move modules into sensible locations. Introduce method of compiling documentation with Sphinx.
61 lines
2.4 KiB
HTML
61 lines
2.4 KiB
HTML
{% load staticfiles %}<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>LibreBudget</title>
|
|
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
|
|
{% block css %}{% endblock css %}
|
|
|
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-fixed-top">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="{% url 'home' %}">
|
|
<img src="{% static 'img/logo.svg' %}" alt="LibreBudget" height="24">
|
|
</a>
|
|
</div>
|
|
<div id="navbar" class="navbar-collapse collapse">
|
|
<form class="navbar-form navbar-right">
|
|
<div class="form-group">
|
|
<input type="text" placeholder="Email" class="form-control">
|
|
</div>
|
|
<div class="form-group">
|
|
<input type="password" placeholder="Password" class="form-control">
|
|
</div>
|
|
<button type="submit" class="btn btn-success">Sign in</button>
|
|
</form>
|
|
</div><!--/.navbar-collapse -->
|
|
</div>
|
|
</nav>
|
|
|
|
{% block main %}
|
|
{% endblock main %}
|
|
|
|
<hr>
|
|
|
|
<footer>
|
|
<p>Copyright © <a href="//ianonavy.com">Ian Adam Naval</a> 2015. All rights reserved.</p>
|
|
<div>Icons made by <a href="http://www.flaticon.com/authors/yannick" title="Yannick">Yannick</a>, <a href="http://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0">CC BY 3.0</a></div>
|
|
</footer>
|
|
</div> <!-- /container -->
|
|
|
|
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
|
|
|
|
</body>
|
|
</html> |