localgov_services-2.1.19/modules/localgov_services_status/templates/service-status-block.html.twig
modules/localgov_services_status/templates/service-status-block.html.twig
{% if items %}
<div class="servicehub--update">
<div class="servicehub--status">
<span>
<i class="fas fa-info-circle"></i>
<h3>Service updates</h3>
</span>
<a href="{{ see_all_link }}" aria-label="{{ 'See all updates for this service'|t }}" class="hidden-xs action-link pull-right"><i class="action-link--icon fas fa-chevron-right"></i>See all</a>
</div>
<div class="servicehub--update_inner">
{% for item in items %}
<ul>
<li>{{ item.date|date("d.m.Y") }}</li>
<li><strong>{{ item.title }} - </strong>{{ item.description }}</li>
<li><a class="read-more" aria-label="{{ 'Read more about status:'|t }} {{ item.title }}" href="{{ item.url }}">Read more</a></li>
</ul>
{% endfor %}
</div>
<a href="{{ see_all_link|render }}" aria-label="{{ 'See all updates for this service'|t }}" class="visible-xs action-link margin-top--20"><i class="action-link--icon fas fa-chevron-right"></i>See all</a>
</div>
{% endif %}
