144 lines
7.3 KiB
HTML
144 lines
7.3 KiB
HTML
<!--[if HTML5]><![endif]-->
|
|
<!DOCTYPE html>
|
|
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
|
<!--[if lt IE 7]><html class="ie ie6 ie-lte9 ie-lte8 ie-lte7 no-js" lang="{{=T.accepted_language or 'en'}}"> <![endif]-->
|
|
<!--[if IE 7]><html class="ie ie7 ie-lte9 ie-lte8 ie-lte7 no-js" lang="{{=T.accepted_language or 'en'}}"> <![endif]-->
|
|
<!--[if IE 8]><html class="ie ie8 ie-lte9 ie-lte8 no-js" lang="{{=T.accepted_language or 'en'}}"> <![endif]-->
|
|
<!--[if IE 9]><html class="ie9 ie-lte9 no-js" lang="{{=T.accepted_language or 'en'}}"> <![endif]-->
|
|
<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js" lang="{{=T.accepted_language or 'en'}}"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<!-- www.phpied.com/conditional-comments-block-downloads/ -->
|
|
<!-- Always force latest IE rendering engine
|
|
(even in intranet) & Chrome Frame
|
|
Remove this if you use the .htaccess -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge{{=not request.is_local and ',chrome=1' or ''}}">
|
|
<!-- Mobile Viewport Fix
|
|
j.mp/mobileviewport & davidbcalhoun.com/2010/viewport-metatag
|
|
device-width: Occupy full width of the screen in its current orientation
|
|
initial-scale = 1.0 retains dimensions instead of zooming out if page height > device height
|
|
user-scalable = yes allows the user to zoom in -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{=response.title or request.application}}</title>
|
|
<!-- http://dev.w3.org/html5/markup/meta.name.html -->
|
|
<meta name="application-name" content="{{=request.application}}">
|
|
<!-- Speaking of Google, don't forget to set your site up:
|
|
http://google.com/webmasters -->
|
|
<meta name="google-site-verification" content="">
|
|
<!-- include stylesheets -->
|
|
{{
|
|
response.files.insert(0,URL('static','css/web2py.css'))
|
|
response.files.insert(1,URL('static','css/bootstrap.min.css'))
|
|
response.files.insert(4,URL('static','css/web2py-bootstrap3.css'))
|
|
}}
|
|
<!-- All JavaScript at the bottom, except for Modernizr which enables
|
|
HTML5 elements & feature detects -->
|
|
<script src="{{=URL('static','js/modernizr.custom.js')}}"></script>
|
|
<!-- 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')}}">
|
|
{{include 'web2py_ajax.html'}}
|
|
{{block head}}{{end}}
|
|
<!--[if lt IE 9]>
|
|
<script src="{{=URL('static','js/respond.min.js')}}"></script>
|
|
<![endif]-->
|
|
{{
|
|
# using sidebars need to know what sidebar you want to use
|
|
mc0 = 'col-md-12'
|
|
mc1 = 'col-md-9'
|
|
mc2 = 'col-md-6'
|
|
left_sidebar_enabled = globals().get('left_sidebar_enabled', False)
|
|
right_sidebar_enabled = globals().get('right_sidebar_enabled', False)
|
|
middle_column = {0: mc0, 1: mc1, 2: mc2}[
|
|
(left_sidebar_enabled and 1 or 0)+(right_sidebar_enabled and 1 or 0)]
|
|
}}
|
|
</head>
|
|
<body>
|
|
<div class="flash alert centered alert-dismissable">{{=response.flash or ''}}</div>
|
|
<!-- Navbar =================================================================== -->
|
|
<nav class="navbar navbar-inverse 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 navbar-ex1-collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
{{='auth' in globals() and auth.navbar('Welcome',mode='dropdown') or ''}}
|
|
</ul>
|
|
{{if response.menu:}}
|
|
{{=MENU(response.menu, _class='nav navbar-nav',li_class='dropdown',ul_class='dropdown-menu')}}
|
|
{{pass}}
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<!-- Masthead ================================================================= -->
|
|
<header class="container">
|
|
<div class="page-header">
|
|
{{if response.title:}}
|
|
<h1>{{=response.title}}
|
|
<small>{{=response.subtitle or ''}}</small></h1>
|
|
{{pass}}
|
|
</div>
|
|
</header>
|
|
<!-- Main ===================================================================== -->
|
|
<main class="container" id="content" role="main">
|
|
<div class="row">
|
|
{{if left_sidebar_enabled:}}
|
|
<!-- left sidebar ---------------------------------------------------------- -->
|
|
<div class="col-md-3">
|
|
{{block left_sidebar}}
|
|
{{end left_sidebar}}
|
|
</div>
|
|
{{pass}}
|
|
<!-- central column -------------------------------------------------------- -->
|
|
<div class="{{=middle_column}}">
|
|
{{block center_page}}
|
|
{{include}}
|
|
{{end center_page}}
|
|
</div>
|
|
{{if right_sidebar_enabled:}}
|
|
<!-- right sidebar --------------------------------------------------------- -->
|
|
<div class="col-md-3">
|
|
{{block right_sidebar}}
|
|
{{end right_sidebar}}
|
|
</div>
|
|
{{pass}}
|
|
</div>
|
|
</main>
|
|
<!-- Footer =================================================================== -->
|
|
<footer id="footer" class="container">
|
|
<div class="row">
|
|
{{block footer}}
|
|
<div class="col-xs-6">
|
|
<p>{{=T('Copyright')}} © {{=request.now.year}}</p>
|
|
</div>
|
|
<div class="col-xs-6">
|
|
<p class="pull-right">{{=T('Powered by')}} <a href="http://www.web2py.com/">web2py</a></p>
|
|
</div>
|
|
{{end footer}}
|
|
</div>
|
|
</footer>
|
|
<!-- 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>
|