use template extensions
[mlpccg-meta.git] / meta / templates / base.html
1 <!DOCTYPE html>
2 <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3 <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4 <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5 <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
6 <head>
7 <meta charset="utf-8">
8 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9 <title>meta is magic</title>
10 <meta name="description" content="">
11 <meta name="viewport" content="width=device-width, initial-scale=1">
12
13 <link rel="stylesheet" href="{{STATIC_URL}}css/bootstrap.min.css">
14 <style>
15 body {
16 padding-top: 50px;
17 padding-bottom: 20px;
18 }
19 </style>
20 <link rel="stylesheet" href="{{STATIC_URL}}css/bootstrap-theme.min.css">
21 <link rel="stylesheet" href="{{STATIC_URL}}css/main.css">
22
23 <script src="{{STATIC_URL}}js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
24 </head>
25 <body>
26 <!--[if lt IE 7]>
27 <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
28 <![endif]-->
29 <div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
30 <div class="container">
31 <div class="navbar-header">
32 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
33 <span class="sr-only">Toggle navigation</span>
34 <span class="icon-bar"></span>
35 <span class="icon-bar"></span>
36 <span class="icon-bar"></span>
37 </button>
38 <a class="navbar-brand" href="#">meta is magic</a>
39 </div>
40 <!-- <div class="navbar-collapse collapse"> -->
41 <!-- <form class="navbar-form navbar-right" role="form"> -->
42 <!-- <div class="form-group"> -->
43 <!-- <input type="text" placeholder="Email" class="form-control"> -->
44 <!-- </div> -->
45 <!-- <div class="form-group"> -->
46 <!-- <input type="password" placeholder="Password" class="form-control"> -->
47 <!-- </div> -->
48 <!-- <button type="submit" class="btn btn-success">Sign in</button> -->
49 <!-- </form> -->
50 <!-- </div><\!--/.navbar-collapse -\-> -->
51 </div>
52 </div>
53
54 {% block jumbotron %}{% endblock %}
55
56 <div class="container">
57 {% block content %}{% endblock %}
58 <hr>
59
60 <footer>
61 <p>&copy; Yukkuri Games, 2014</p>
62 </footer>
63 </div> <!-- /container -->
64 <!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> -->
65 <script src="{{STATIC_URL}}js/vendor/jquery-1.11.0.min.js"></script>
66 <script src="{{STATIC_URL}}js/vendor/bootstrap.min.js"></script>
67 <script src="{{STATIC_URL}}js/main.js"></script>
68 </body>
69 </html>