Merge branch 'master' into add-skills
This commit is contained in:
commit
51251dc3fc
5 changed files with 31 additions and 14 deletions
|
@ -1,9 +1,15 @@
|
|||
<div class="panel badges">
|
||||
<a class="badges__badge--da-member" href="https://assoc.drupal.org/membership" title="I’m a Drupal Association member.">
|
||||
<div class="panel badges text-center">
|
||||
<a class="badge--da-member" href="https://assoc.drupal.org/membership" title="I’m a Drupal Association member.">
|
||||
<img src="{{ site.images_url }}/assets/images/da-individual-member.png" alt="Drupal Association Individual Member">
|
||||
</a>
|
||||
|
||||
<a href="https://www.drupal.org/8">
|
||||
<a href="http://drupalcores.com/#{{ site.drupalorg.name }}">
|
||||
<img alt="I built Drupal 8 with hand holding a wrench on blue background" src="{{ site.images_url }}/assets/images/drupal-8.jpg"/>
|
||||
</a>
|
||||
|
||||
<img
|
||||
src="{{ site.images_url }}/assets/images/badges/acquia-certified-developer-drupal-8.png"
|
||||
alt="Acquia Certified Developer - Drupal 8 Exam Badge"
|
||||
height="147" width="147"
|
||||
/>
|
||||
</div>
|
||||
|
|
|
@ -12,7 +12,9 @@
|
|||
{% for event in events %}
|
||||
<tr>
|
||||
<td class="column-date">
|
||||
{{ event.date|date('j F Y') }}
|
||||
<div class="event-date display-block">
|
||||
{{ event.date|date('j F Y') }}
|
||||
</div>
|
||||
|
||||
{% if event.time %}
|
||||
<small class="talk-type">
|
||||
|
@ -23,13 +25,15 @@
|
|||
|
||||
{% if not hide_talk %}
|
||||
<td>
|
||||
{% if not event.talk.hide_page %}
|
||||
<a href="{{ event.talk.url }}">
|
||||
<div class="display-block">
|
||||
{% if not event.talk.hide_page %}
|
||||
<a href="{{ event.talk.url }}">
|
||||
{{ event.talk.title }}
|
||||
</a>
|
||||
{% else %}
|
||||
{{ event.talk.title }}
|
||||
</a>
|
||||
{% else %}
|
||||
{{ event.talk.title }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if event.talk.type %}
|
||||
<small class="talk-type">
|
||||
|
@ -40,9 +44,11 @@
|
|||
{% endif %}
|
||||
|
||||
<td class="column-event">
|
||||
{% if event.url %}<a href="{{ event.url }}">{% endif %}
|
||||
{{ event.title }}
|
||||
{% if event.url %}</a>{% endif %}
|
||||
<div class="display-block">
|
||||
{% if event.url %}<a href="{{ event.url }}">{% endif %}
|
||||
{{ event.title }}
|
||||
{% if event.url %}</a>{% endif %}
|
||||
</div>
|
||||
|
||||
{% if event.location %}
|
||||
<small class="event-location">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue