<!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 } %} <link rel="stylesheet" href="{{ site.url }}/assets/css/site.css"> {% block stylesheets '' %} {% for size in site.apple_touch_icon_sizes %} <link rel="apple-touch-icon" href="{{ site.avatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}"> {% endfor %} {% for size in site.favicon_sizes %} <link rel="icon" href="{{ site.avatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}"> {% endfor %} </head> <body class="helvetica black-80 {{ page.blocks.body_classes }}"> {% include 'nav' %} <div class="w-100 pa3 ph4-ns"> <div class="f6 mw9 center"> <div class="flex-l"> <main class="flex-auto pr4-l lh-copy"> {% block content_top %}{% endblock %} {% block content_wrapper %}{% block content %}{% endblock %}{% endblock %} {% block content_bottom %}{% endblock %} </main> {% block sidebar_wrapper %} <div class="flex-none w-25-m mw5-l ph3-m pt4 pt0-l"> {% block sidebar %} {% include 'badges' %} {% include 'availability' %} {% include 'posts/latest' %} {% endblock %} </div> {% endblock %} </div> </div> <footer class="mw9 center mt4 bt b--black-20"> <p class="f6"> © 2010-{{ 'now'|date('Y') }} {{ site.title }}. Built with <a href="https://sculpin.io">Sculpin</a>. </p> {% include 'meetups' %} </footer> </div> <script src="{{ site.url }}/assets/js/site.js"></script> {% 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 %} {% block scripts %}{% endblock %} </body> </html>