comparison piecrust/admin/templates/layouts/master.html @ 888:2b0fa2e4c12f

admin: Make the admin panel work under a non-rooted URL.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 02 Jul 2017 22:14:51 -0700
parents 5e91bc0e3b4d
children 2d9b4c12579c
comparison
equal deleted inserted replaced
887:c0cbcd4752f0 888:2b0fa2e4c12f
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
6 <title>{%if title%}{{title}} &ndash; {%endif%}FoodTruck</title> 6 <title>{%if title%}{{title}} &ndash; {%endif%}FoodTruck</title>
7 <meta name="description" content="A PieCrust management dashboard"/> 7 <meta name="description" content="A PieCrust management dashboard"/>
8 <meta name="viewport" content="width=device-width, initial-scale=1"/> 8 <meta name="viewport" content="width=device-width, initial-scale=1"/>
9 <link rel="apple-touch-icon" href="apple-touch-icon.png"/> 9 <link rel="apple-touch-icon" href="apple-touch-icon.png"/>
10 <link rel="stylesheet" href="/static/css/foodtruck.min.css"/> 10 <link rel="stylesheet" href="{{base_url}}/static/css/foodtruck.min.css"/>
11 <link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'/> 11 <link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'/>
12 </head> 12 </head>
13 <body> 13 <body>
14 <div id="ft-wrapper" class="container-fluid {{wrapper_classes}}"> 14 <div id="ft-wrapper" class="container-fluid {{wrapper_classes}}">
15 <header> 15 <header>
35 <a href="http://getbootstrap.com">Bootstrap</a>, 35 <a href="http://getbootstrap.com">Bootstrap</a>,
36 <a href="http://ionicons.com/">Ionicons</a>, 36 <a href="http://ionicons.com/">Ionicons</a>,
37 and many more.</p> 37 and many more.</p>
38 </footer> 38 </footer>
39 </div> 39 </div>
40 <script src="/static/js/foodtruck.min.js"></script> 40 <script src="{{base_url}}/static/js/foodtruck.min.js"></script>
41 </body> 41 </body>
42 </html> 42 </html>
43 43