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
2017-12-26 10:15:55 +00:00

25 lines
1.2 KiB
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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' },
] %}
<div class="text-center">
<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" />
</a>
<div class="mb-4 flex flex-wrap">
{% for badge in badges %}
<div class="w-1/4 lg:w-1/2 leading-none">
<img src="{{ site.images_url }}/assets/images/badges/{{ badge.image }}" alt="{{ badge.alt }}" />
</div>
{% endfor %}
</div>
<a href="http://conference.phpnw.org.uk/phpnw17" class="block mb-4">
<img src="{{ site.images_url }}/assets/images/badges/phpnw17.png" alt="">
</a>
</div>