93 lines
3.4 KiB
HTML
93 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{=T.accepted_language or 'en'}}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
<!-- Favicons -->
|
|
<link rel="shortcut icon" href="{{=URL('static','images/favicon.ico')}}" type="image/x-icon">
|
|
<link rel="apple-touch-icon" href="{{=URL('static','images/favicon.png')}}">
|
|
|
|
<title>{{=response.title or request.application}}</title>
|
|
|
|
|
|
{{
|
|
response.files.insert(0,URL('static','css/web2py.css'))
|
|
response.files.insert(1,URL('static','css/bootstrap.min.css'))
|
|
response.files.insert(2,URL('static','css/web2py-bootstrap3-b.css'))
|
|
}}
|
|
|
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
{{include 'web2py_ajax.html'}}
|
|
{{block head}}{{end}}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Wrap all page content here -->
|
|
<div id="wrap">
|
|
|
|
<!-- Fixed navbar -->
|
|
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
{{=response.logo or ''}}
|
|
</div>
|
|
<div class="collapse navbar-collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
{{='auth' in globals() and bs3.navbar() or ''}}
|
|
</ul>
|
|
{{if response.menu:}}
|
|
{{=bs3.menu()}}
|
|
{{pass}}
|
|
</div><!--/.nav-collapse -->
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Begin page content -->
|
|
<div class="container">
|
|
|
|
{{include}}
|
|
|
|
</div>
|
|
</div>
|
|
<div id="footer">
|
|
<div class="container">
|
|
<p class="text-muted pull-right">{{=T('Powered by')}} <a href="http://www.web2py.com/">web2py</a></p>
|
|
|
|
<p class="text-muted">{{=T('Copyright')}} © {{=request.now.year}}</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- The javascript =========================================================== -->
|
|
<script src="{{=URL('static','js/bootstrap.min.js')}}"></script>
|
|
<script src="{{=URL('static','js/web2py-bootstrap3.js')}}"></script>
|
|
{{block page_js}}{{end page_js}}
|
|
{{if response.google_analytics_id:}}
|
|
<!-- Analytics ================================================================ -->
|
|
<script src="{{=URL('static','js/analytics.min.js')}}"></script>
|
|
<script type="text/javascript">
|
|
analytics.initialize({
|
|
'Google Analytics':{trackingId:'{{=response.google_analytics_id}}'}
|
|
});
|
|
</script>
|
|
{{pass}}
|
|
<!-- Share ==================================================================== -->
|
|
<script src="{{=URL('static','js/share.js',vars=dict(static=URL('static','images')))}}"></script>
|
|
</body>
|
|
</html>
|