patool/doc/web/templates/base.html

37 lines
1.4 KiB
HTML
Raw Normal View History

2013-03-29 10:12:37 +00:00
<!DOCTYPE html>
<html lang="en">
2013-03-29 10:12:37 +00:00
<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>
2013-04-10 18:17:28 +00:00
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40039406-1', 'github.io');
ga('send', 'pageview');
</script>
2013-03-29 10:12:37 +00:00
</body>
</html>