pbe/example-site/templates/post.html

5 lines
161 B
HTML
Raw Permalink Normal View History

2023-06-27 17:18:52 -04:00
{% extends "base.html" %}
2023-07-01 16:24:36 -04:00
{% block title %}{{ post.title }} :: {% endblock title %}
2023-06-27 17:18:52 -04:00
{% block content %}
{% include "partials/post.html" %}
{% endblock content %}