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/_partials/opensource/projects.html.twig

28 lines
1 KiB
Twig
Raw Normal View History

2018-02-18 21:16:53 +00:00
<div class="md:flex md:flex-wrap md:-mx-2">
{% for project in projects %}
<div class="md:w-1/2 md:px-2 mb-4 flex">
<div class="border p-3 w-full flex flex-col {{ project.versions ? 'justify-between' }}">
<h3>
<a href="{{ project.url }}">
{{ project.name }}
</a>
</h3>
2018-02-18 21:32:41 +00:00
<div class="flex-1">
2018-02-18 21:16:53 +00:00
{{ project.description }}
</div>
{% if project.versions %}
<div class="mt-4 text-right">
{% for version in project.versions %}
2018-03-03 09:13:06 +00:00
<span class="text-xs ml-1 px-1 py-1 bg-grey-light text-grey-dark rounded">{% spaceless %}
2018-02-18 21:16:53 +00:00
Drupal {{ version }}
2018-03-03 09:13:06 +00:00
{% endspaceless %}</span>
2018-02-18 21:16:53 +00:00
{% endfor %}
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>