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

42 lines
1.5 KiB
Twig
Raw Normal View History

2015-08-10 01:13:56 +00:00
<div class="availability">
<h2>Availability</h2>
2015-08-10 21:53:00 +00:00
2015-08-10 01:13:56 +00:00
<div class="content">
2015-08-11 06:02:26 +00:00
{% set now = "now"|date('U') %}
2015-08-10 21:53:00 +00:00
{% for type, data in site.availability %}
{% if type == 'day' %}
2015-08-11 06:02:26 +00:00
{% if data.available == 'yes' %}
2015-08-10 22:13:20 +00:00
{% set text = 'Available for day contract work' %}
2015-08-11 06:02:26 +00:00
{% elseif data.available == 'no' %}
2015-08-10 22:13:20 +00:00
{% set text = 'Not available for day contract work' %}
{% endif %}
2015-08-10 21:53:00 +00:00
{% elseif type == 'evenings' %}
2015-08-11 06:02:26 +00:00
{% if data.available == 'yes' %}
2015-08-10 22:13:20 +00:00
{% set text = 'Available for weekend/evening freelance work' %}
2015-08-11 06:02:26 +00:00
{% elseif data.available == 'limited' %}
2015-08-10 22:13:20 +00:00
{% set text = 'Limited availability for weekend/evening freelance work' %}
2015-08-11 06:02:26 +00:00
{% elseif data.available == 'no' %}
2015-08-10 22:13:20 +00:00
{% set text = 'Not available for weekend/evening freelance work' %}
{% endif %}
2015-08-10 21:53:00 +00:00
{% endif %}
2015-08-10 08:04:38 +00:00
2015-08-11 06:02:26 +00:00
{% if data.start %}
{% if data.start|date('U') > now %}
{% set text = text ~ ' starting ' ~ data.start|date('F Y') %}
2015-08-10 08:04:38 +00:00
2015-08-11 06:02:26 +00:00
{% if data.end %}
2015-08-10 22:28:33 +00:00
{% set text = text ~ ',' %}
{% endif %}
2015-08-10 22:13:20 +00:00
{% endif %}
2015-08-10 22:28:33 +00:00
{% endif %}
2015-08-11 06:02:26 +00:00
{% if data.end %}
{% set text = text ~ ' until ' ~ data.end|date('F Y') %}
{% endif %}
2015-08-10 08:10:50 +00:00
2015-08-11 06:02:26 +00:00
<p class="availability__{{ data.available }}">{{ text }}.</p>
2015-08-10 22:13:20 +00:00
{% endfor %}
2015-08-10 01:13:56 +00:00
</div>
</div>