fixed breadcrumbs

moved some code to util.py to clean up views.py
added migration for start of db.
This commit is contained in:
2015-06-17 13:46:02 +01:00
parent fb3e8eae5b
commit 2de1fb9491
8 changed files with 143 additions and 78 deletions

View File

@@ -1,4 +1,3 @@
<!DOCTYPE html>
<html lang="en">
<head>
@@ -43,7 +42,7 @@
<ul class="nav navbar-nav">
{% block navbar %}
<li class="active"><a href="/comic/">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="settings/">Settings</a></li>
<li><a href="#contact">Contact</a></li>
{% endblock %}
</ul>
@@ -61,14 +60,18 @@
{% block content %}{% endblock %}
</div>
</div><!-- /.container -->
<!-- /.container -->
<footer class="footer">
<div class="container">
<p class="text-muted"><a href="https://github.com/ajurna/cbreader">CBReader</a></p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="../../static/js/bootstrap.min.js"></script>
<script src="/static/js/bootstrap.min.js"></script>
</body>
</html>