patool/doc/web/templates/base.html

29 lines
1011 B
HTML
Raw Normal View History

2013-03-29 10:12:37 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="{{ page.encoding }}">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="{{ page.description }}">
<meta name="author" content="{{ site.app.author }}">
<title>{{ site.app.name }} - {{ page.title }}</title>
<link href='https://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="{{page.rooturl}}/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
{% block head %}{% endblock %}
</head>
<body>
<div id="container">
<div class="inner">
{% block content %}
{% endblock content %}
</div>
</div>
</body>
</html>