blob: 856bf4d4a801cfa2c38fa9ccf2850eaaca56057e [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}{{ headers.title }}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" />
<!--
<link rel="stylesheet" type="text/css" media="screen" href="http://www.apache.org/css/style.css">
-->
<link rel="stylesheet" type="text/css" media="screen" href="//www.apache.org/css/code.css">
<link href="/css/profile.css" rel="stylesheet" type="text/css" />
<link href="/css/xmlgraphics.css" rel="stylesheet" type="text/css" />
<link href="/css/print.css" rel="stylesheet" type="text/css" media="print" />
<script src="//code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery.stoc.js"></script>
<script>
$(document).ready(function(){
$('ul#navigation a').each(function() {
if (this.href === window.location.href)
{ $(this). attr('id', 'forefront');}
});
$('ul#navigation a#forefront').each(function() {
});
})
$(function(){
$("#items").stoc({ search: "#content", stocTitle: "<h3>Page Contents</h3>" });
});
</script>
{% if headers.atom %}
<link rel="alternate" href="{{ headers.atom.url }}"
type="application/atom+xml" title="{{ headers.atom.title }}" />
{% endif %}
{% if headers.base %}<base href="{{ headers.base }}" />{% endif %}
{% if headers.notice %}<!-- {{ headers.notice }} -->{% endif %}
<style>
.highlight {color: red;}
</style>
</head>
<body>
{% include header %}
{% block content %}
<div id="content" class="grid_16">
<div id="items">
</div>
<!-- <div id="breadcrumb">{{ breadcrumbs|safe }}</div> -->
<div class="section-content">{{ content|markdown }}</div>
</div>
{% endblock %}
<div class="clear"></div>
{% include footer %}
</body>
</html>