2012-04-28 00:42:03 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2012-06-28 23:53:59 +00:00
|
|
|
<title>pathod</title>
|
2012-04-28 00:42:03 +00:00
|
|
|
<link href="/static/bootstrap.min.css" rel="stylesheet">
|
2012-07-20 11:19:58 +00:00
|
|
|
<link href="/static/pathod.css" rel="stylesheet">
|
2012-06-28 23:53:59 +00:00
|
|
|
<link href="/static/syntax.css" rel="stylesheet">
|
2012-04-29 09:15:02 +00:00
|
|
|
<script src="/static/jquery-1.7.2.min.js"></script>
|
2012-07-23 05:30:50 +00:00
|
|
|
<script src="/static/jquery.scrollTo-min.js"></script>
|
|
|
|
<script src="/static/jquery.localscroll-min.js"></script>
|
2012-06-28 23:53:59 +00:00
|
|
|
<script src="/static/bootstrap.min.js"></script>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="author" content="">
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
padding-top: 60px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
}
|
2012-04-28 00:42:03 +00:00
|
|
|
</style>
|
2012-06-28 23:53:59 +00:00
|
|
|
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
|
|
<![endif]-->
|
2012-04-28 00:42:03 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2012-07-29 01:55:59 +00:00
|
|
|
|
2012-04-29 04:22:33 +00:00
|
|
|
<div class="navbar navbar-fixed-top">
|
2012-04-28 00:42:03 +00:00
|
|
|
<div class="navbar-inner">
|
|
|
|
<div class="container">
|
2012-06-28 23:53:59 +00:00
|
|
|
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</a>
|
|
|
|
<a class="brand" href="/index.html">pathod</a>
|
|
|
|
<div class="nav-collapse">
|
|
|
|
<ul class="nav">
|
|
|
|
<li {% if section== "main" %} class="active" {% endif %}><a href="/">home</a></li>
|
2012-07-24 10:27:04 +00:00
|
|
|
{% if not noapi %}
|
2012-06-28 23:53:59 +00:00
|
|
|
<li {% if section== "log" %} class="active" {% endif %}><a href="/log">log</a></li>
|
2012-07-24 10:27:04 +00:00
|
|
|
{% endif %}
|
2012-06-28 23:53:59 +00:00
|
|
|
<li class="dropdown {% if section== "docs" %}active{% endif %}">
|
|
|
|
<a class="dropdown-toggle" data-toggle="dropdown">
|
|
|
|
docs
|
|
|
|
<b class="caret"></b>
|
|
|
|
</a>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
<li><a href="/docs/pathod">pathod</a></li>
|
|
|
|
<li><a href="/docs/pathoc">pathoc</a></li>
|
2012-07-22 10:24:16 +00:00
|
|
|
<li><a href="/docs/language">language</a></li>
|
2012-06-28 23:53:59 +00:00
|
|
|
<li><a href="/docs/test">libpathod.test</a></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2012-07-24 23:55:44 +00:00
|
|
|
<li {% if section== "about" %} class="active" {% endif %}><a href="/about">about</a></li>
|
2012-06-28 23:53:59 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2012-04-28 00:42:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container">
|
2012-06-28 23:53:59 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="span12">
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<footer>
|
2012-07-29 01:55:59 +00:00
|
|
|
<span>© Aldo Cortesi 2012</span>
|
|
|
|
<span class="pull-right">[served by pathod]</span>
|
2012-06-28 23:53:59 +00:00
|
|
|
</footer>
|
|
|
|
</div>
|
2012-04-28 00:42:03 +00:00
|
|
|
</body>
|
2012-07-23 05:30:50 +00:00
|
|
|
<script>
|
|
|
|
$(function(){
|
|
|
|
$.localScroll(
|
|
|
|
{
|
|
|
|
duration: 300,
|
2012-07-24 12:16:24 +00:00
|
|
|
offset: {top: -45}
|
2012-07-23 05:30:50 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
</script>
|
2012-04-28 00:42:03 +00:00
|
|
|
</html>
|