2017-07-11 00:08:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="no-js" lang="en-GB">
|
2018-05-27 20:54:45 +00:00
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
{% if page.title is defined and page.url != '/.' %}
|
|
|
|
{{ page.title }} |
|
|
|
|
{% endif %}
|
|
|
|
{{ site.title }} - {{ site.subtitle }}
|
|
|
|
</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 } %}
|
|
|
|
|
|
|
|
{% block stylesheets %}
|
|
|
|
<link rel="stylesheet" href="{{ site.url }}/build/css/site.css">
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% for size in site.apple_touch_icon_sizes %}
|
|
|
|
<link rel="apple-touch-icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for size in site.favicon_sizes %}
|
|
|
|
<link rel="icon" href="{{ site.favicon.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
|
|
|
{% endfor %}
|
|
|
|
</head>
|
2018-05-28 23:33:00 +00:00
|
|
|
<body class="text-black text-sm leading-normal">
|
2018-06-05 06:17:02 +00:00
|
|
|
{% include 'navbar.html.twig' %}
|
2017-12-26 10:26:10 +00:00
|
|
|
|
2017-11-16 08:44:08 +00:00
|
|
|
<div class="container mx-auto px-4">
|
2017-12-26 10:26:10 +00:00
|
|
|
<div class="md:flex -mx-4">
|
2018-05-12 23:13:06 +00:00
|
|
|
<main class="md:w-3/4 px-4 mb-8 lg:mb-0" role="main">
|
2017-12-26 10:26:10 +00:00
|
|
|
{% block content_top %}{% endblock %}
|
|
|
|
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
|
|
|
|
{% block content_bottom %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
|
2018-05-27 20:54:45 +00:00
|
|
|
{% block sidebar_wrapper %}
|
|
|
|
<div class="md:w-1/4 px-4" role="complementary">
|
|
|
|
{% block sidebar %}
|
|
|
|
{% include 'availability' %}
|
|
|
|
{% include 'posts/latest' %}
|
|
|
|
{% include 'badges' %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2017-11-09 22:44:30 +00:00
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-05-27 20:54:45 +00:00
|
|
|
<footer class="border-t border-grey-light pt-4 mt-4" role="contentinfo">
|
|
|
|
<p>
|
2018-05-28 23:33:00 +00:00
|
|
|
© 2010-{{ 'now'|date('Y') }} {{ site.title }}.
|
|
|
|
Built with <a class="link" href="https://sculpin.io">Sculpin</a> and <a class="link" href="https://tailwindcss.com">Tailwind CSS</a>.
|
2018-05-27 20:54:45 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="mt-2">
|
|
|
|
<h2 class="mb-2">Things that I organise</h2>
|
|
|
|
|
2018-05-28 20:45:27 +00:00
|
|
|
<ul class="list-reset inline-flex">
|
|
|
|
{% include 'meetup.html.twig' with {
|
|
|
|
name: 'Drupal Bristol',
|
|
|
|
logo: 'drupal-bristol.jpeg',
|
|
|
|
url: 'http://www.drupalbristol.org.uk',
|
|
|
|
} %}
|
|
|
|
|
|
|
|
{% include 'meetup.html.twig' with {
|
|
|
|
name: 'DrupalCamp Bristol',
|
|
|
|
logo: 'drupalcamp-bristol.png',
|
|
|
|
url: 'http://www.drupalcampbristol.co.uk',
|
|
|
|
} %}
|
|
|
|
|
|
|
|
{% include 'meetup.html.twig' with {
|
|
|
|
name: 'PHPSW',
|
|
|
|
logo: 'phpsw.jpeg',
|
|
|
|
url: 'http://phpsw.uk',
|
|
|
|
} %}
|
2018-05-27 20:54:45 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</footer>
|
2017-12-26 10:26:10 +00:00
|
|
|
</div>
|
2017-07-11 00:08:32 +00:00
|
|
|
|
2018-05-27 20:54:45 +00:00
|
|
|
<script>
|
|
|
|
document.querySelector('.nav-toggle').onclick = function() {
|
|
|
|
document.querySelector('.navbar nav').classList.toggle('hidden').toggle('block');
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
</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 %}
|
|
|
|
|
|
|
|
{% if page.has_tweets %}
|
|
|
|
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-06-01 21:42:43 +00:00
|
|
|
<script src="/build/js/all.js"></script>
|
2018-05-27 20:54:45 +00:00
|
|
|
{% block scripts %}{% endblock %}
|
2017-07-11 00:08:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|