feat: make templates extend common layout
1 file changed, 4 insertions(+), 0 deletions(-)
changed files
M src/views/term.njk → src/views/term.njk
@@ -1,3 +1,7 @@ +{% extends "layouts/main.njk" %} + +{% block body %} {% for post in posts %} {{ post.data.get('title') }} {% endfor %} +{% endblock %}