2013-11-24 20:53:19 +03:00
<!DOCTYPE html>
< html lang = "{{ DEFAULT_LANG }}" >
2014-06-21 15:55:27 +03:00
2014-10-28 21:34:13 +03:00
< head >
2014-10-28 21:37:47 +03:00
{% block head %}
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< title > {% block title %}{{ SITE_SUBTEXT }}{% endblock title %}< / title >
{% if EXTRA_FAVICON %}
< link rel = "icon" type = "image/png" href = "/favicon-196x196.png" sizes = "196x196" >
< link rel = "icon" type = "image/png" href = "/favicon-160x160.png" sizes = "160x160" >
< link rel = "icon" type = "image/png" href = "/favicon-96x96.png" sizes = "96x96" >
< link rel = "icon" type = "image/png" href = "/favicon-16x16.png" sizes = "16x16" >
< link rel = "icon" type = "image/png" href = "/favicon-32x32.png" sizes = "32x32" >
{% endif %}
{% if FEED_ATOM %}
< link type = "application/atom+xml" rel = "alternate" href = "/{{ FEED_ATOM }}" title = "{{ SITENAME }} Atom Feed" >
{% endif %}
{% if FEED_RSS %}
< link type = "application/rss+xml" rel = "alternate" href = "/{{ FEED_RSS }}" title = "{{ SITENAME }} RSS Feed" >
{% endif %}
< link rel = "stylesheet" href = "{{ SITEURL }}/theme/css/style.css" >
<!-- [if lt IE 9]>
< script src = "https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" > < / script >
{# WARNING: Respond.js doesn't work if you view the page via file:// #}
< script src = "https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js" > < / script >
<![endif]-->
{% include "include/google_analytics.html" %}
{% endblock %}
2014-10-28 21:34:13 +03:00
< / head >
< body >
2014-10-28 21:37:47 +03:00
{% include "include/header.html" %}
< div class = "container" >
{% block content %}{% endblock %}
< / div >
{% include "include/footer.html" %}
< script src = "{{ SITEURL }}/theme/js/jquery.min.js" > < / script >
< script src = "{{ SITEURL }}/theme/js/bootstrap.min.js" > < / script >
2015-01-30 08:22:01 +03:00
< script src = "{{ SITEURL }}/theme/js/jquery.fluidbox.min.js" > < / script >
< script >
$('.full-post a[data-fluidbox]').fluidbox();
// Trigger recomputing on Flexbox items, sometimes buggy width calculations due to browser recomputation of flex items
$('.cols').each(function() {
var a = [],
$f = $(this).find('a.fluidbox');
$f.find('img').each(function() {
var i = $.Deferred();
$(this).load(i.resolve).error(i.resolve);
a.push(i);
});
$.when.apply(null, a).done(function() {
$f.trigger('recompute');
});
});
< / script >
2014-10-28 21:34:13 +03:00
< / body > <!-- 42 -->
2014-05-29 00:54:52 +03:00
2013-11-24 20:53:19 +03:00
< / html >