{% extends "base.html" %} {% block title %}Posts - zero2prod{% endblock %} {% block content %}

Posts

Insights on Rust backend development, performance tips, and production stories.

{% if posts.is_empty() %}

No posts yet

Check back later for new content!

{% else %}
{% for post in posts %} {% endfor %}
{% endif %}
{% endblock %}