This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_includes/meetups.html.twig

21 lines
643 B
Twig
Raw Normal View History

2017-09-04 16:55:53 +00:00
<div class="mt4">
<h2 class="mb3">Things that I organise</h2>
<ul class="list flex pa0 mt0">
2017-07-11 00:08:32 +00:00
{% for meetup in site.meetups %}
2017-09-04 16:55:53 +00:00
<li>
<a
href="{{ meetup.url }}"
title="{{ meetup.name }}"
class="dib {% if not loop.last %}mr2{% endif %}">
2017-07-11 06:33:09 +00:00
<img
src="{{ site.images_url }}/assets/images/meetups/{{ meetup.logo }}"
alt="{{ meetup.name }} logo"
2017-09-04 16:55:53 +00:00
class="h3"
2017-07-11 06:33:09 +00:00
>
2017-07-11 00:08:32 +00:00
</a>
</li>
{% endfor %}
</ul>
</div>