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

21 lines
779 B
Twig
Raw Normal View History

2015-08-10 01:13:56 +00:00
<div class="availability">
<h2>Availability</h2>
<div class="content">
2015-08-10 01:15:34 +00:00
{% set day_available = site.availability.day.available %}
{% if (day_available == 'no') %}
2015-08-10 01:13:56 +00:00
<p>Not available for day contract work.</p>
{% else %}
<p>Available for day contract work.</p>
{% endif %}
2015-08-10 01:15:34 +00:00
{% set evenings_available = site.availability.evenings.available %}
{% if (evenings_available == 'yes') %}
2015-08-10 01:13:56 +00:00
<p>Available for weekend/evening freelance work.</p>
2015-08-10 01:15:34 +00:00
{% elseif (evenings_available == 'limited') %}
2015-08-10 01:13:56 +00:00
<p>Limited availability for weekend/evening freelance work.</p>
{% else %}
<p>Not available for weekend/evening freelance work.</p>
{% endif %}
</div>
</div>