Move all files to 2019/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:20 +01:00
parent f59a1843de
commit 0b536af737
94 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/ dc: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ og: http://ogp.me/ns# rdfs: http://www.w3.org/2000/01/rdf-schema# schema: http://schema.org/ sioc: http://rdfs.org/sioc/ns# sioct: http://rdfs.org/sioc/types# skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema# ">
<head>
<meta charset="utf-8" />
<meta name="Generator" content="Drupal 8 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/core/misc/favicon.ico" type="image/vnd.microsoft.icon" />
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
<link rel="stylesheet" href="/sites/default/files/css/css_3lBjB9LxWGvT5F_MnCGazkuov6eT9QNhKr0hGqtNWTk.css?osicsv" media="all" />
<link rel="stylesheet" href="/sites/default/files/css/css_Vn8-2iqzJuEPqXgw0OVLQPx82pcc6QVkRoP0hW2MEWs.css?osicsv" media="all" />
<link rel="stylesheet" href="/dist/app.css" media="all" />
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Poppins:400,600,700" media="all" />
<!--[if lte IE 8]>
<script src="/sites/default/files/js/js_VtafjXmRvoUgAzqzYTA3Wrjkx9wcWhjP0G4ZnnqRamA.js"></script>
<![endif]-->
</head>
<body class="path-frontpage">
<div id="app">
{% block body %}{% endblock %}
</div>
</body>
</html>

View file

@ -0,0 +1,29 @@
{% extends 'app' %}
{% block body %}
<a href="#main-content" class="visually-hidden focusable skip-link">
Skip to main content
</a>
<div class="tw-min-h-screen tw-flex tw-flex-col">
{% include 'banner' %}
<div class="tw-flex tw-flex-col tw-flex-1">
{% block content_wrapper %}
{% block content %}{% endblock %}
{% endblock %}
{% block content_botton %}{% endblock %}
{% if page.update_text %}
{% include 'update-text' %}
{% endif %}
{% block content_bottom %}{% endblock %}
</div>
<div>
{% block footer_top %}{% endblock %}
{% include 'footer' %}
</div>
</div>
{% endblock %}

View file

@ -0,0 +1 @@
{% extends 'base' %}

View file

@ -0,0 +1,21 @@
{% extends 'base' %}
{% block content_wrapper %}
<main class="tw-justify-start">
<div class="tw-w-full tw-max-w-4xl tw-mx-auto tw-my-10">
<div class="tw-px-4 xl:tw-px-0">
<h1 class="tw-mt-0">
{% block title %}{{ page.title }}{% endblock %}
</h1>
{% block content_wrapper_inner %}
<div class="markup">
{% block content %}{% endblock %}
</div>
{% endblock %}
{% block content_bottom %}{% endblock %}
</div>
</div>
</main>
{% endblock %}

View file

@ -0,0 +1,7 @@
{% extends 'page' %}
{% block content_bottom %}
{% include 'session-speakers' with {
speakers: speakersForSession(page, data.speakers),
} %}
{% endblock %}

View file

@ -0,0 +1,53 @@
{% extends 'page' %}
{% block title %}{{ page.title }}{% endblock %}
{% block content_wrapper_inner %}
<div class="md:tw-flex tw--mx-4">
{% if page.image or page.links.twitter or page.links.drupalorg %}
<div class="tw-px-4 tw-flex-0 tw-w-32 md:tw-w-48 tw-mb-4">
{% if page.image %}
<div class="tw-mb-4">
<img class="tw-max-w-full tw-block tw-rounded-full tw-overflow-hidden tw-border-4 tw-border-solid tw-border-purple-500" src="/images/speakers/{{ page.image }}" alt="{{ page.name }}">
</div>
{% endif %}
{% if page.links %}
<div class="tw--mb-1">
{% if page.links.drupalorg %}
<div class="tw-pl-6 tw-mr-4 tw-bg-no-repeat tw-bg-left tw-mb-1" style="background-image: url(/themes/dcb2017/images/drop-1.png)">
<a href="https://www.drupal.org/u/{{ page.links.drupalorg }}">{{ page.links.drupalorg }}</a>
</div>
{% endif %}
{% if page.links.twitter %}
<div class="tw-pl-6 tw-mr-4 tw-bg-no-repeat tw-bg-left tw-mb-1" style="background-image: url(/themes/dcb2017/images/twitter-1.png)">
<a href="https://twitter.com/{{ page.links.twitter }}">{{ page.links.twitter }}</a>
</div>
{% endif %}
</div>
{% endif %}
</div>
{% endif %}
<div class="tw-px-4 tw-flex-1">
<div class="markup">
<div class="tw-font-bold tw-text-xl">
{% include 'speaker-role' with { speaker: page } %}
</div>
{% block content %}{% endblock %}
<div class="tw-mt-8 tw-block">
<a class="tw-text-purple-500 hocus:tw-text-pink-600 tw-no-underline hocus:tw-underline" href="/#speakers">View all speakers &rarr;</a>
</div>
</div>
<aside>
{% include 'speaker-session' with {
sessions: sessionsForSpeaker(page, data.sessions),
} %}
</aside>
</div>
</div>
{% endblock %}