manual/page-template.txt

65 lines
2.1 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>{{page.page_title}}</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="{{page.bootstrap_path}}/css/bootstrap.min.css" rel="stylesheet" />
<link href="{{page.bootstrap_path}}/css/bootstrap-responsive.min.css" rel="stylesheet" />
<link href="/css/app.css" rel="stylesheet" />
{% if page.style %}
<link href="/css/{{page.style}}.css" rel="stylesheet" />
{% endif %}
<link href='http://fonts.googleapis.com/css?family=Junge' rel='stylesheet' type='text/css' />
</head>
<body>
<div class="container-fluid"><div class="row-fluid">
<div id="tree"><div id="tree-inner">
<h1 class="title"><a href="/"><img src="/images/logo.png" alt="The Ardour Manual" /></a></h1>
{% tree %}
</div></div>
<div class="span12" id="content">
<div id="search" class="gcse-search"></div>
<div id="content-main">
<h1 class="title">{{ page.title }}</h1>
{{ content }}
{% prevnext %}
</div>
</div>
</div></div>
<script type="text/javascript">
// I'll go to hell for this
var isA = function(regex) { return navigator.userAgent.match(regex) };
var isAbout = function(regex) { return document.getElementsByTagName('h1')[1].textContent.match(regex) };
if ( (isA(/Mac/) || isAbout(/OS X/)) && (!isAbout(/Linux/)) ) {
var e = document.getElementsByTagName('body')[0];
e.className += ' mac'; // class magic for Cmd vs. Ctrl keys.
}
</script>
<!-- Google search bar == failure -->
<script type="text/javascript">
(function()
{
var cx = '011950134405426689607:2lg2y9xgf3a';
var gcse = document.createElement('script'); gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
</body>
</html>