{% extends "base.html" %} {%- import "macros.html" as macros -%} {% 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 "card.html" %} {% endfor %}
{% if let Some(n) = next_page %}
{% call macros::spinner(class="text-blue-300 w-8 h-8", highlight_class="text-blue-700", size=30) %}
{% else %}

No more posts. Check back later for more!

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