{% extends 'base.html.twig' %} {% block title %}{% if section.metaTitle %}{{ section.metaTitle }}{% else %}{{ section.name }} | universities.com{% endif %}{% endblock %} {% block meta_description %}{% if section.metaDescription %}{{ section.metaDescription }}{% else %}{{ parent() }}{% endif %}{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block scripts %} {{ parent() }} {% endblock %} {% block body %}

{{ section.name }}

{% if section.posts|length > 0 %} {% for post in section.posts|sort((a, b) => b.published <=> a.published) %}
{% if post.image %} {% endif %}
{{ post.title }}
Written by {{ post.writer.firstName }} {{ post.writer.lastName }}
{% endfor %} {% else %}
Sorry, no posts have been published yet.
{% endif %}
{% endblock %}