7 lines
193 B
HTML
7 lines
193 B
HTML
|
{% extends "layout.html" %}
|
||
|
{% from "macros/blog.html" import render_blog_post %}
|
||
|
{% block title %}{{ this.title }}{% endblock %}
|
||
|
{% block body %}
|
||
|
{{ render_blog_post(this) }}
|
||
|
{% endblock %}
|