{% extends 'base.html' %} {% load static %} {% block title %}Blog{% endblock %} {% block content %}
{% if posts %}
{% for post in posts %}
{% if post.image %}
{{ post.title }}
{% endif %}

{{ post.published_date|date:"F j, Y" }} · By {{ post.author }}

{{ post.title }}

{{ post.excerpt|truncatewords:30 }}

Read More →
{% 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 %} {% else %}

Coming Soon

Our blog posts are on their way. Stay tuned for stories about our craftsmanship, jewelry care tips, and behind-the-scenes looks at our workshop.

{% endif %}
{% endblock %}