{% extends 'main/base.html' %} {% block title %}News & Events - Monaco Institute{% endblock %} {% block content %}

News & Events

All {% for cat_key, cat_name in categories %} {{ cat_name }} {% endfor %}
{% for item in news %}
{% if item.image %}
{{ item.title }}
{% else %}
{% endif %}
{{ item.get_category_display }} {{ item.published_date|date:"d M Y" }}
{{ item.title|truncatewords:12 }}

{{ item.excerpt|default:item.content|truncatewords:30 }}

Read More
{% empty %}

No news articles available yet.

{% endfor %}
{% if news.has_other_pages %} {% endif %}
{% endblock %}