1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00
wiki.mbirth.de/_layouts/default.html

78 lines
3.4 KiB
HTML
Raw Normal View History

2014-05-09 00:12:33 +01:00
<!DOCTYPE html>
<html>
2015-02-20 13:26:56 +00:00
<head>
2014-05-09 00:12:33 +01:00
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
2015-02-19 18:36:25 +00:00
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/layout-bright.css" media="screen" />
2014-05-13 10:47:05 +01:00
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/print.css" media="print" />
2015-02-19 18:36:25 +00:00
<link rel="stylesheet" type="text/css" href="{{ site.url }}/css/custom.css" media="all" />
2014-05-09 00:12:33 +01:00
<title>{{ page.title }} :: {{ site.name }}</title>
2014-05-13 10:47:05 +01:00
<script src="{{ site.url }}/bower_components/jquery/dist/jquery.min.js" type="text/javascript"></script>
{% if page.toc %}
2015-02-20 13:26:56 +00:00
<script src="{{ site.url }}/bower_components/jquery.toc/jquery.toc.js" type="text/javascript"></script>
2014-05-13 10:47:05 +01:00
{% endif %}
2015-02-19 10:20:39 +00:00
<script src="{{ site.url }}/javascripts/gcse.js" type="text/javascript"></script>
2015-02-20 13:26:56 +00:00
</head>
<body>
2014-05-09 00:12:33 +01:00
<header>
2015-02-20 13:26:56 +00:00
<div class="container">
<div id="headerleft">
<h1>{{ site.name }}</h1>
<h2>{{ site.description }}</h2>
2014-05-09 00:12:33 +01:00
2015-02-20 13:26:56 +00:00
<section id="downloads">
<a href="https://plus.google.com/+MarkusBirth/about" rel="author" class="btn">Find me on Google+</a>
<a href="https://github.com/mbirth/wiki" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
</section>
</div>
<div id="headerright">
<gcse:search></gcse:search>
</div>
2015-02-19 10:20:39 +00:00
</div>
2014-05-09 00:12:33 +01:00
</header>
2015-02-20 13:23:44 +00:00
<div class="container">
2015-02-20 13:26:56 +00:00
<article itemscope itemtype="http://schema.org/Article">
<h1 id="pagetitle" itemprop="name">{{ page.title }}</h1>
2015-02-20 13:31:19 +00:00
<meta itemprop="keywords" content="{{ page.tags | join: ',' }}" />
<meta itemprop="dateCreated" content="{{ page.created | date: '%Y-%m-%d' }}" />
<meta itemprop="dateModified" content="{{ page.updated | date: '%Y-%m-%d' }}" />
2015-02-20 13:26:56 +00:00
<section id="main_content" itemprop="articleBody">
{% if page.toc %}
<ul data-toc="#main_content"></ul>
{% endif %}
{{ content }}
</section>
</article>
<section id="comments">
<script src="//apis.google.com/js/plusone.js" type="text/javascript"></script>
<div class="g-comments" data-href="{{ site.url }}{{ page.url }}" data-width="900" data-first_party_property="BLOGGER" data-view_type="FILTERED_POSTMOD">Loading Google+ comments...</div>
</section>
{% if site.related_posts %}
<section id="related">
<ul>
{% for relpost in site.related_posts %}
<li><a href="{{ relpost.url }}">{{ relpost.title }}</a>></li>
{% endfor %}
</ul>
</section>
2014-05-13 10:47:05 +01:00
{% endif %}
2014-05-09 00:12:33 +01:00
</div>
2015-02-19 10:52:49 +00:00
<!-- BEGIN: Google Analytics -->
<script>
2015-02-20 13:26:56 +00:00
(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-259868-12', 'auto');
ga('send', 'pageview');
2015-02-19 10:52:49 +00:00
</script>
<!-- END: Google Analytics -->
2015-02-20 13:26:56 +00:00
</body>
2014-05-13 10:47:05 +01:00
</html>
2015-02-20 13:26:56 +00:00