{% extends "website/base.html" %} {% block content %}

Blog / Resources

Home care tips, elderly health education, mental wellness, and family support.

{% for p in posts %}

{{ p.title }}

{% if p.published_at %}{{ p.published_at|date:"M d, Y" }}{% endif %}

{{ p.excerpt|default:p.body|truncatechars:140 }}

Read more →
{% empty %}
No posts yet. Add posts in Admin → Blog Posts.
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next {% endif %}
{% endif %} {% endblock %}