Skip to content

Commit 7c5f6c0

Browse files
committed
Adding template. Adding readme to manifest.
1 parent 9524fe7 commit 7c5f6c0

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ pip-log.txt
2525

2626
#Mr Developer
2727
.mr.developer.cfg
28+
.idea

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
include README.md
12
recursive-include bootstrap/static *.*
3+
recursive-include bootstrap/templates *.*
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html lang="en"{% block extra_html %}{% endblock extra_html %}>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{% block title %}{% endblock %}</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
10+
<!-- Le styles -->
11+
<link href="{{ STATIC_URL }}bootstrap/css/bootstrap.css" rel="stylesheet">
12+
<link href="{{ STATIC_URL }}default/css/custom.css" rel="stylesheet">
13+
<link href="{{ STATIC_URL }}bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
14+
<link rel="stylesheet" href="{{ STATIC_URL }}slideshow/css/bootstrap-image-gallery.min.css"
15+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
16+
<!--[if lt IE 9]>
17+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
18+
<![endif]-->
19+
20+
{% block extra_head %}{% endblock extra_head %}
21+
</head>
22+
23+
<body {% block extra_body %}{% endblock extra_body %}>
24+
25+
{% block nav %}{% endblock nav %}
26+
27+
<div class="container">
28+
<div class="row">
29+
{% if messages %}
30+
{% for message in messages %}
31+
<div class="alert alert-success">
32+
<a class="close" data-dismiss="alert">×</a>
33+
<h4 class="alert-heading">{{ message.tags }}</h4>
34+
<p>{{ message }}</p>
35+
</div>
36+
{% endfor %}
37+
{% endif %}
38+
{% block content %}{% endblock content %}
39+
</div>
40+
41+
</div> <!-- /container -->
42+
43+
<!-- Le javascript
44+
================================================== -->
45+
<!-- Placed at the end of the document so the pages load faster -->
46+
<script src="{{ STATIC_URL }}bootstrap/js/jquery.js"></script>
47+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-transition.js"></script>
48+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-alert.js"></script>
49+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-modal.js"></script>
50+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-dropdown.js"></script>
51+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-scrollspy.js"></script>
52+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-tab.js"></script>
53+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-tooltip.js"></script>
54+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-popover.js"></script>
55+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-button.js"></script>
56+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-collapse.js"></script>
57+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-carousel.js"></script>
58+
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap-typeahead.js"></script>
59+
<script src="{{ STATIC_URL }}slideshow/js/load-image.js"></script>
60+
<script src="{{ STATIC_URL }}slideshow/js/bootstrap-image-gallery.min.js"></script>
61+
{% block extra_foot %}{% endblock extra_foot %}
62+
</body>
63+
</html>

0 commit comments

Comments
 (0)