diff --git a/templates/components/post_renderer.html b/templates/components/post_renderer.html new file mode 100644 index 0000000..eb9ed22 --- /dev/null +++ b/templates/components/post_renderer.html @@ -0,0 +1,9 @@ +{% macro render_post(post) %} + + {% if post.template %} {% include post.template %} {% endif %} {{ post.content + | safe }} + + +