2017-07-11 00:08:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="no-js" lang="en-GB">
|
|
|
|
<head>
|
|
|
|
<title>{% if page.url == '/.' %}{{ site.subtitle }} | {{ site.title }}{% else %}{{ page.title }} | {{ site.title }}{% endif %}</title>
|
|
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
{% if page.meta.description %}
|
|
|
|
<meta name="description" content="{{ page.meta.description|e('html') }}">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include 'og' with { og: page.meta.og } %}
|
|
|
|
|
2017-10-08 08:26:41 +00:00
|
|
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/site.css">
|
2017-07-11 00:08:32 +00:00
|
|
|
{% block stylesheets '' %}
|
|
|
|
|
|
|
|
{% for size in site.apple_touch_icon_sizes %}
|
2017-11-07 13:57:20 +00:00
|
|
|
<link rel="apple-touch-icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for size in site.favicon_sizes %}
|
2017-11-07 13:57:20 +00:00
|
|
|
<link rel="icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
2017-07-11 00:08:32 +00:00
|
|
|
{% endfor %}
|
|
|
|
</head>
|
2017-11-09 22:44:30 +00:00
|
|
|
<body class="text-grey-darkest text-sm leading-normal">
|
2017-07-11 00:08:32 +00:00
|
|
|
{% include 'nav' %}
|
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
<div class="container mx-auto">
|
|
|
|
<div class="">
|
|
|
|
<div class="">
|
|
|
|
<div class="md:flex -mx-4">
|
|
|
|
<main class="md:w-3/4 px-4">
|
|
|
|
{% block content_top %}{% endblock %}
|
|
|
|
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
|
|
|
|
{% block content_bottom %}{% endblock %}
|
|
|
|
</main>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
{% block sidebar_wrapper %}
|
|
|
|
<div class="md:w-1/4 px-4">
|
|
|
|
{% block sidebar %}
|
|
|
|
{% include 'badges' %}
|
|
|
|
{% include 'availability' %}
|
|
|
|
{% include 'posts/latest' %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2017-09-04 16:55:53 +00:00
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
<footer class="border-t border-grey-lighter pt-4 mt-4">
|
|
|
|
<p>
|
|
|
|
© 2010-{{ 'now'|date('Y') }} {{ site.title }}. Built with <a href="https://sculpin.io">Sculpin</a> and <a href="https://tailwindcss.com">Tailwind CSS</a>.
|
|
|
|
</p>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2017-11-09 22:44:30 +00:00
|
|
|
{% include 'meetups' %}
|
|
|
|
</footer>
|
|
|
|
</div>
|
2017-09-04 16:55:53 +00:00
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2017-10-08 08:26:41 +00:00
|
|
|
<script src="{{ site.url }}/assets/js/site.js"></script>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
|
|
|
{% if site.google_analytics_tracking_id %}
|
|
|
|
<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', '{{ site.google_analytics_tracking_id }}', 'auto'); ga('send', 'pageview');</script>
|
|
|
|
{% endif %}
|
|
|
|
|
2017-08-06 18:01:22 +00:00
|
|
|
{% block scripts %}{% endblock %}
|
2017-07-11 00:08:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|