Add page template Signed-off-by: Ben Aaron Goldberg <ben@benaaron.dev>
1 files changed, 9 insertions(+), 0 deletions(-) A templates/page.html
A templates/page.html => templates/page.html +9 -0
@@ 0,0 1,9 @@ +{% extends "base.html" %} + + +{% block content %} +<h1>{{ page.title }}</h1> +<article> + {{ page.content | safe }} +</article> +{% endblock content %}