Add joind.in buttons

This commit is contained in:
Oliver Davies 2017-03-14 08:01:54 +00:00
parent bfe71518a5
commit e23718a481
3 changed files with 20 additions and 3 deletions

View file

@ -9,3 +9,10 @@
min-height: 460px
+desktop
min-height: 680px
.talk-event-table
.date
width: 20%
.feedback
width: 15%

View file

@ -1,17 +1,18 @@
<div class="table-responsive">
<table class="table table-striped">
<table class="talk-event-table table table-striped">
<thead>
<tr>
<th>Date</th>
<th class="date">Date</th>
{% if show_talk %}<th>Talk</th>{% endif %}
<th>Event</th>
<th class="feedback">Feedback</th>
</tr>
</thead>
<tbody>
{% set events = reverse_order ? events|sortbyfield('date')|reverse : events|sortbyfield('date') %}
{% for event in events %}
<tr>
<td>
<td class="date">
{{ event.date|date('j F Y') }}
</td>
@ -28,6 +29,14 @@
{{ event.title }}
{% if event.website %}</a>{% endif %}
</td>
<td class="feedback">
{% if event.talk.joindin %}
<a href="{{ event.talk.joindin }}" class="btn btn-primary" title="Read or leave feedback for this talk">
<i class="fa fa-comment-o"></i> joind.in
</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>

View file

@ -7,6 +7,7 @@ slides:
video:
url: https://www.youtube.com/watch?v=5FYMRR61sdo
embed: '<iframe width="560" height="315" src="https://www.youtube.com/embed/5FYMRR61sdo" frameborder="0" allowfullscreen></iframe>'
joindin: https://joind.in/event/phpsw-new-skills-february-2017/it-started-with-a-patch
events:
- { id: phpsw, date: '2017-02-08' }
---