rophako/rophako/modules/blog/templates/blog/entry.html

11 regels
224 B
HTML

{% extends "layout.html" %}
{% block title %}{{ post["subject"] }}{% endblock %}
{% block content %}
<h1>{{ post["subject"] }}</h1>
{% from "blog/entry.inc.html" import blog_entry %}
{{ blog_entry(post) }}
{% endblock %}