{% extends "base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

{% if session_user_id.as_ref() == Some(post.author_id) %}
{% endif %}
{% if let Some(modified) = post.last_modified %} Last modified on {{ modified.format("%B %d, %Y") }}, at {{ modified.format("%H:%M") }} {% endif %}
{% if session_user_id.as_ref() == Some(post.author_id) %} {% endif %}
{{ post_html | safe }}
{% include "posts/comments/list.html" %}

Enjoyed this post?

Subscribe to my newsletter for more insights on Rust backend development.

Subscribe
{% endblock %}