2022-11-11 04:16:46 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
{% include title.html %}
|
|
|
|
<div class="row">
|
2022-11-11 04:31:56 +00:00
|
|
|
<div class="col-md-8 margin--bottom">
|
2022-11-11 04:16:46 +00:00
|
|
|
<div class="page {{page.cssClass}}">
|
|
|
|
{{ content | switcheroo }}
|
|
|
|
{% assign news_items = site.news | sort: "date" | reverse %}
|
|
|
|
<hr>
|
|
|
|
{% for news_item in news_items %}
|
|
|
|
<p>
|
|
|
|
<strong>
|
|
|
|
<a href="{{news_item.url}}">
|
|
|
|
{{news_item.date|date: "%b %d %Y"}}:
|
|
|
|
{{news_item.title}}
|
|
|
|
</a>
|
|
|
|
</strong>
|
|
|
|
</p>
|
|
|
|
{{news_item.meta_description}}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-11 04:31:56 +00:00
|
|
|
<div class="col-md-4 margin--bottom">
|
2022-11-11 04:16:46 +00:00
|
|
|
{% include contact-links.html %}
|
|
|
|
{% include cqc-widget.html %}
|
|
|
|
</div>
|
|
|
|
</div>
|