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

28 lines
831 B
Twig
Raw Normal View History

2015-09-12 19:42:18 +00:00
<div class="panel panel-default">
<div class="panel-heading">Availability</div>
2015-08-10 21:53:00 +00:00
2015-09-12 19:42:18 +00:00
<div class="panel-body">
{% set now = "now"|date('U') %}
2015-08-10 21:53:00 +00:00
{% for type, data in site.availability.status %}
{% set text = site.availability.text[type][data.available] %}
{% if data.start %}
{% if data.start|date('U') > now %}
{% set text = text ~ ' starting ' ~ data.start|date('F Y') %}
{% if data.end %}
{% set text = text ~ ',' %}
{% endif %}
{% endif %}
{% endif %}
{% if data.end %}
{% set text = text ~ ' until ' ~ data.end|date('F Y') %}
{% endif %}
<p>{{ text|raw }}.</p>
{% endfor %}
2015-08-10 01:13:56 +00:00
</div>
</div>