Warning: Can't use blame annotator:
svn blame failed on branches/LCSv2/views/layout.html.bak: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/branches/LCSv2/views/layout.html.bak @ 619

Revision 619, 4.1 KB checked in by jdalbey, 6 years ago (diff)

Add branch LCSv2

RevLine 
1<!DOCTYPE html>
2<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js" lang="{{=T.accepted_language or 'en'}}"> <!--<![endif]-->
3  <head>
4    <meta charset="utf-8">
5    <!-- www.phpied.com/conditional-comments-block-downloads/ -->
6    <!-- Always force latest IE rendering engine
7         (even in intranet) & Chrome Frame
8         Remove this if you use the .htaccess -->
9    <meta http-equiv="X-UA-Compatible" content="IE=edge{{=not request.is_local and ',chrome=1' or ''}}">
10    <!--  Mobile Viewport Fix
11          j.mp/mobileviewport & davidbcalhoun.com/2010/viewport-metatag
12          device-width: Occupy full width of the screen in its current orientation
13          initial-scale = 1.0 retains dimensions instead of zooming out if page height > device height
14          user-scalable = yes allows the user to zoom in -->
15    <meta name="viewport" content="width=device-width, initial-scale=1.0">
16    <title>{{=response.title or request.application}} {{=request.function}}</title>
17    <!-- http://dev.w3.org/html5/markup/meta.name.html -->
18    <meta name="application-name" content="{{=request.application}}">
19    <!-- Speaking of Google, don't forget to set your site up:
20         http://google.com/webmasters -->
21    <meta name="google-site-verification" content="">
22    <!-- include stylesheets -->
23    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
24    <link rel="stylesheet" href="{{=URL('static','css/bootstrap.min.css')}}"/>
25    <link rel="stylesheet" href="{{=URL('static','css/web2py-bootstrap4.css')}}"/>
26    <link rel="stylesheet" href="{{=URL('static','css/lcstrain.css')}}"/>
27    <link rel="shortcut icon" href="{{=URL('static','images/favicon.ico')}}" type="image/x-icon">
28    <link rel="apple-touch-icon" href="{{=URL('static','images/favicon.png')}}">
29    <!-- All JavaScript at the bottom, except for Modernizr which enables
30         HTML5 elements & feature detects -->
31    <script src="{{=URL('static','js/modernizr-2.8.3.min.js')}}"></script>
32    <!-- Favicons -->
33    {{include 'web2py_ajax.html'}} <!-- this includes jquery.js, calendar.js/.css and web2py.js -->
34    {{block head}}{{end}}
35  </head>
36  <body>
37    <div class="w2p_flash alert alert-dismissable">{{=response.flash or ''}}</div>
38     {{if (request.function != "index"):}}
39     <!-- LCS banner ===================================== -->
40      <div class="container" id="banner">
41          <div class = "toplinks" style = "float:right">
42              <a href="help.html" style="text-decoration:underline">Help</a>&nbsp;&nbsp;&nbsp;
43              <a href="index.html" style="text-decoration:underline">Logout</a>
44          </div>
45          <div class="lcslogo">
46             <h2>
47                 Lane Closure System
48              </h2>
49          </div>
50      </div>
51    <!-- LCS navbar ===================================== -->
52     <div role="navigation" class="navtabs">
53      <div class="tabrow">
54     {{for _item in response.menu or []:}}
55            <a class="tabBtn {{if _item[2].endswith(request.function):}}selectedTab{{pass}}" href="{{=_item[2]}}">{{=_item[0]}}</a>
56     {{pass}}
57      </div>
58      <hr class="tabBar">
59    </div>
60    {{pass}}
61    <!-- Masthead ===================================== -->
62    {{block header}}
63    {{end}}
64    <!-- Main ========================================= -->
65    <!-- Begin page content -->
66    <div class="container-fluid main-container">
67      {{include}}
68      {{=response.toolbar() if response.show_toolbar else ''}}
69    </div>
70
71    {{block footer}}
72    {{end}}
73    <!-- The javascript =============================== -->
74    <script src="{{=URL('static','js/bootstrap.bundle.min.js')}}"></script>
75    <script src="{{=URL('static','js/web2py-bootstrap4.js')}}"></script>
76    {{block page_js}}{{end page_js}}
77    {{if response.google_analytics_id:}}
78    <!-- Analytics ==================================== -->
79    <script src="{{=URL('static','js/analytics.min.js')}}"></script>
80    <script type="text/javascript">
81      analytics.initialize({
82      'Google Analytics':{trackingId:'{{=response.google_analytics_id}}'}
83      });
84    </script>
85   {{pass}}
86  </body>
87</html>
Note: See TracBrowser for help on using the repository browser.