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

{{ post.title }}

{% if session_username.as_deref() == Some(post.author) %}
{% endif %}
{% if session_username.as_deref() == Some(post.author) %} {% 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 %}