This repository has been archived on 2025-09-29. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/source/_layouts/speaker.html.twig

51 lines
1.5 KiB
Twig
Raw Normal View History

2019-05-03 13:20:34 +01:00
{% extends 'page' %}
{% block title %}{{ page.name }}{% endblock %}
2019-05-03 13:29:40 +01:00
2019-05-03 14:52:51 +01:00
{% block content_wrapper_inner %}
<div class="tw-flex tw--mx-4">
{% if page.image %}
<div class="tw-px-4 tw-flex-0 tw-w-48">
<img class="tw-max-w-full" src="/images/speakers/{{ page.image }}" alt="{{ page.name }}">
</div>
{% endif %}
<div class="tw-px-4 tw-flex-1">
{% if page.links %}
<div class="tw-flex">
{% if page.links.drupalorg %}
<div class="tw-pl-6 tw-mr-4" style="background: url(/themes/dcb2017/images/drop-1.png) no-repeat left center transparent">
<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" style="background: url(/themes/dcb2017/images/twitter-1.png) no-repeat left center transparent">
<a href="https://twitter.com/{{ page.links.twitter }}">{{ page.links.twitter }}</a>
</div>
{% endif %}
</div>
{% endif %}
<div class="markup">
{% if page.organisation %}
<b>Organisation</b>: {{ page.organisation }}
{% endif %}
{% block content %}{% endblock %}
</div>
</div>
</div>
{% endblock %}
2019-05-03 13:29:40 +01:00
{% block content_bottom %}
2019-05-03 14:52:51 +01:00
<h3>Session</h3>
2019-05-03 13:29:40 +01:00
2019-05-03 14:52:51 +01:00
{% for session in data.sessions if page.name in session.speakers %}
<a href="{{ session.url }}">
{{ session.title }}
</a>
{% endfor %}
</aside>
2019-05-03 13:29:40 +01:00
{% endblock %}