{% extends "components/base.html" %} {% block title %}Landing Page{% endblock %} {% block main_area %}

Latest Notices

{% for notice in notices %}
{{ notice.title }}

{{ notice.content|truncatewords:20 }}

View Notice
{% empty %}

No notices available.

{% endfor %}

Latest Blog Posts

{% for post in blog_posts %}
{{ post.title }}

{{ post.summary|truncatewords:20 }}

Read More
{% empty %}

No blog posts available.

{% endfor %}
{% endblock %}