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/badges.html.twig

25 lines
1.2 KiB
Twig
Raw Normal View History

2017-11-30 15:50:03 +00:00
{% set badges = [
{ image: 'acquia-d8-grand-master.png', alt: 'Acquia Certified Grand Master - Drupal 8 Exam Badge' },
{ image: 'acquia-d8-developer.png', alt: 'Acquia Certified Developer - Drupal 8 Exam Badge' },
{ image: 'acquia-d8-back-end.png', alt: 'Acquia Certified Back End Specialist - Drupal 8 Exam Badge' },
{ image: 'acquia-d8-front-end.png', alt: 'Acquia Certified Front End Specialist - Drupal 8 Exam Badge' },
] %}
2017-11-09 22:44:30 +00:00
<div class="text-center">
2017-11-28 18:54:04 +00:00
<a href="https://assoc.drupal.org/membership" title="Im a Drupal Association member." class="block mb-4">
<img src="{{ site.images_url }}/assets/images/badges/da-individual-member.png" alt="Drupal Association Individual Member" width="200" />
2017-07-11 00:08:32 +00:00
</a>
2017-11-30 15:50:03 +00:00
<div class="mb-4 flex flex-wrap">
{% for badge in badges %}
2017-12-26 10:15:55 +00:00
<div class="w-1/4 lg:w-1/2 leading-none">
2017-11-28 18:54:04 +00:00
<img src="{{ site.images_url }}/assets/images/badges/{{ badge.image }}" alt="{{ badge.alt }}" />
2017-09-04 16:55:53 +00:00
</div>
{% endfor %}
2017-07-21 17:41:59 +00:00
</div>
2017-07-11 00:08:32 +00:00
2017-11-09 22:44:30 +00:00
<a href="http://conference.phpnw.org.uk/phpnw17" class="block mb-4">
2017-07-11 00:08:32 +00:00
<img src="{{ site.images_url }}/assets/images/badges/phpnw17.png" alt="">
</a>
</div>