staticrustator/templates/blog_entry.html
2024-08-29 11:04:04 -04:00

15 lines
187 B
HTML

{% extends "layout.html" %}
{% block title %}
{{front_matter.title}} -
{% endblock %}
{% block content %}
<h1> {{front_matter.title}} </h1>
{{ blog_content|safe }}
{% endblock %}