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

Latest Notices

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

{{ notice.contents|truncatechars:50 }}

View Notice
{% empty %}

No notices available.

{% endfor %}

Latest Blog Posts

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

{{ post.contents|truncatechars:50 }}

Read More
{% empty %}

No blog posts available.

{% endfor %}
{% endblock %}