Add event locations
This commit is contained in:
parent
e23718a481
commit
8dc17841ce
|
@ -145,17 +145,17 @@ youtube:
|
||||||
channel_url: https://www.youtube.com/channel/UCkeK0qF9HHUPQH_fvn4ghqQ
|
channel_url: https://www.youtube.com/channel/UCkeK0qF9HHUPQH_fvn4ghqQ
|
||||||
|
|
||||||
talks_events:
|
talks_events:
|
||||||
drupal-bristol: { title: Drupal Bristol, website: https://www.drupalbristol.org.uk }
|
drupal-bristol: { title: Drupal Bristol, website: https://www.drupalbristol.org.uk, location: 'Bristol, UK' }
|
||||||
drupalcamp-brighton-2015: { title: DrupalCamp Brighton 2015 }
|
drupalcamp-brighton-2015: { title: DrupalCamp Brighton 2015, location: 'Brighton, UK' }
|
||||||
drupalcamp-bristol-2016: { title: DrupalCamp Bristol 2016, website: https://www.drupalcampbristol.org.uk }
|
drupalcamp-bristol-2016: { title: DrupalCamp Bristol 2016, website: https://www.drupalcampbristol.org.uk, location: 'Bristol, UK' }
|
||||||
drupalcamp-london-2014: { title: DrupalCamp London 2014 }
|
drupalcamp-london-2014: { title: DrupalCamp London 2014, location: 'London, UK' }
|
||||||
drupalcamp-london-2015: { title: DrupalCamp London 2015 }
|
drupalcamp-london-2015: { title: DrupalCamp London 2015, location: 'London, UK' }
|
||||||
drupalcamp-london-2016: { title: DrupalCamp London 2016 }
|
drupalcamp-london-2016: { title: DrupalCamp London 2016, location: 'London, UK' }
|
||||||
drupalcamp-london-2017: { title: DrupalCamp London 2017, website: https://drupalcamp.london }
|
drupalcamp-london-2017: { title: DrupalCamp London 2017, website: https://drupalcamp.london, location: 'London, UK' }
|
||||||
drupalcamp-north-2015: { title: DrupalCamp North 2015, website: http://drupalcampnorth.org }
|
drupalcamp-north-2015: { title: DrupalCamp North 2015, website: http://drupalcampnorth.org, location: 'Sunderland, UK' }
|
||||||
nwdug: { title: NWDUG, website: http://nwdrupal.org.uk }
|
nwdug: { title: NWDUG, website: http://nwdrupal.org.uk, location: 'Manchester, UK' }
|
||||||
phpsc-16: { title: PHP South Coast 2016, website: http://2016.phpsouthcoast.co.uk }
|
phpsc-16: { title: PHP South Coast 2016, website: http://2016.phpsouthcoast.co.uk, location: 'Portsmouth, UK' }
|
||||||
phpsw: { title: PHPSW, website: https://phpsw.uk }
|
phpsw: { title: PHPSW, website: https://phpsw.uk, location: 'Bristol, UK' }
|
||||||
swdug: { title: 'SWDUG (South Wales Drupal user group)' }
|
swdug: { title: 'SWDUG (South Wales Drupal user group)', location: 'Cardiff, UK' }
|
||||||
umbristol: { title: 'umBristol (Bristol Umbraco user group)', website: http://umbristol.co.uk }
|
umbristol: { title: 'umBristol (Bristol Umbraco user group)', website: http://umbristol.co.uk, location: 'Bristol, UK' }
|
||||||
udiff: { title: Unified Diff, website: http://unifieddiff.co.uk }
|
udiff: { title: Unified Diff, website: http://unifieddiff.co.uk, location: 'Cardiff, UK' }
|
||||||
|
|
|
@ -16,3 +16,6 @@
|
||||||
|
|
||||||
.feedback
|
.feedback
|
||||||
width: 15%
|
width: 15%
|
||||||
|
|
||||||
|
.event-location
|
||||||
|
display: block
|
||||||
|
|
|
@ -28,6 +28,12 @@
|
||||||
{% if event.website %}<a href="{{ event.website }}">{% endif %}
|
{% if event.website %}<a href="{{ event.website }}">{% endif %}
|
||||||
{{ event.title }}
|
{{ event.title }}
|
||||||
{% if event.website %}</a>{% endif %}
|
{% if event.website %}</a>{% endif %}
|
||||||
|
|
||||||
|
{% if event.location %}
|
||||||
|
<small class="event-location">
|
||||||
|
{{- event.location -}}
|
||||||
|
</small>
|
||||||
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="feedback">
|
<td class="feedback">
|
||||||
|
|
Loading…
Reference in a new issue