]> Shamusworld >> Repos - ardour-manual-diverged/blob - _layouts/bootstrap.html
enumerate "curated" actions
[ardour-manual-diverged] / _layouts / bootstrap.html
1 ---
2 bootstrap_path: /bootstrap-2.2.2
3 page_title: The Ardour Manual
4 ---
5
6 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
8 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
9       
10     <head>
11         <title>{{page.page_title}}</title>
12         <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
13
14         <meta name="viewport" content="width=device-width, initial-scale=1.0" />
15         <link href="{{page.bootstrap_path}}/css/bootstrap.min.css" rel="stylesheet" />
16         <link href="{{page.bootstrap_path}}/css/bootstrap-responsive.min.css" rel="stylesheet" />
17
18         <link href="/css/app.css" rel="stylesheet" />
19
20         <link href='http://fonts.googleapis.com/css?family=Junge' rel='stylesheet' type='text/css' />
21     </head>
22     <body>
23
24         <!--
25     <div class="navbar">
26         <div class="navbar-inner">
27             <div class="container">
28  
29               <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
30                 <span class="icon-bar"></span>
31                 <span class="icon-bar"></span>
32                 <span class="icon-bar"></span>
33               </a>
34  
35                 <a class="brand" href="#">The Ardour Manual</a>
36  
37                 <div class="nav-collapse collapse">
38                 </div>
39  
40             </div>
41         </div>
42     </div>
43     -->
44
45     <div class="container-fluid">
46         <div class="row-fluid">
47             <div id="tree">
48                 <div id="tree-inner">
49                     <h1 class="title"><a href="/"><img src="/images/logo.png" alt="The Ardour Manual" /></a></h1>
50                     {% tree %}
51                 </div>
52             </div>
53             <div class="span12" id="content">
54                 <div id="search" class="gcse-search">
55                 </div>
56                 <div id="content-main">
57                     <h1 class="title">{{ page.title }}</h1>
58                     {{ content }}
59                     {% prevnext %}
60                 </div>
61             </div>
62         </div>
63     </div>
64
65     <script type="text/javascript">
66     //<![CDATA[
67
68         // I'll go to hell for this
69         var isA = function(regex) { return navigator.userAgent.match(regex) };
70         var isAbout = function(regex) { return document.getElementsByTagName('h1')[1].textContent.match(regex) };
71
72         if ( (isA(/Mac/) || isAbout(/OS X/)) && (!isAbout(/Linux/)) ) {
73             var e = document.getElementsByTagName('body')[0];
74             e.className += ' mac';  // class magic for Cmd vs. Ctrl keys.
75         }
76     //]]>
77     </script>
78
79     <script type="text/javascript">
80         (function() {
81           var cx = '011950134405426689607:2lg2y9xgf3a';
82           var gcse = document.createElement('script'); gcse.type = 'text/javascript';
83           gcse.async = true;
84           gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
85               '//www.google.com/cse/cse.js?cx=' + cx;
86           var s = document.getElementsByTagName('script')[0];
87           s.parentNode.insertBefore(gcse, s);
88         })();
89     </script>
90   
91     </body>
92 </html>