blob: dfda26ab7ec513e7462e4d88dc49a2bc9a537e2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
{% include head.html %}
</head>
<body>
<div class="container">
<div id="header" class="row">
<div class="twelve columns">
{% include header.html %}
</div>
</div>
<div id="content" class="row">
<div class="eight columns">
{{ content }}
</div>
<div class="four columns">
{% include sidebar.html %}
</div>
</div>
<div id="footer" class="row">
<div class="twelve columns">
{% include footer.html %}
</div>
</div>
</div>
{% if site.production and site.google_ua %}
{% include google_analytics.html %}
{% endif %}
{% if (page.comments or page.show_comment_counts) and site.disqus_shortname %}
{% include disqus.html %}
{% endif %}
</body>
</html>
|