Issue #11: Added messages

This commit is contained in:
Oliver Davies 2015-08-10 02:13:56 +01:00
parent f5878b3c2d
commit 9a5e00c842

View file

@ -0,0 +1,19 @@
<div class="availability">
<h2>Availability</h2>
<div class="content">
{% if (site.availability.day.available == 'no') %}
<p>Not available for day contract work.</p>
{% else %}
<p>Available for day contract work.</p>
{% endif %}
{% if (site.availability.evenings.available == 'yes') %}
<p>Available for weekend/evening freelance work.</p>
{% elseif (site.availability.evenings.available == 'limited') %}
<p>Limited availability for weekend/evening freelance work.</p>
{% else %}
<p>Not available for weekend/evening freelance work.</p>
{% endif %}
</div>
</div>