2012-04-13 11:24:57 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<!-- Always force latest IE rendering engine (even in intranet) and Chrome Frame -->
|
|
|
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
|
|
|
|
<title>{{ apiName }}</title>
|
|
|
|
<link href="http://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet" type="text/css" />
|
|
|
|
<style type="text/css">
|
|
|
|
{{ css|raw }}
|
|
|
|
</style>
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
2012-04-13 12:23:46 +02:00
|
|
|
<a href=""><h1>{{ apiName }}</h1></a>
|
2012-04-13 11:24:57 +02:00
|
|
|
</div>
|
|
|
|
<div class="container" id="resources_container">
|
|
|
|
<ul id="resources">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<p id="colophon">
|
|
|
|
Documentation auto-generated on {{ date }}
|
|
|
|
</p>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$('.toggler').click(function() {
|
|
|
|
$(this).next().slideToggle('slow');
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|