{% extends "base.html" %} {% block title %}Posts{% 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 %}
{% block posts %} {% for post in posts %} {% include "post_card_fragment.html" %} {% endfor %}
{% if let Some(n) = next_page %} {% else %}

No more posts. Check back later for more!

{% endif %}
{% endblock %}
{% endif %}
{% endblock %}