staticrustator/templates/blog_entry.html

16 lines
187 B
HTML
Raw Normal View History

2024-08-29 15:04:04 +00:00
{% extends "layout.html" %}
{% block title %}
{{front_matter.title}} -
{% endblock %}
{% block content %}
<h1> {{front_matter.title}} </h1>
{{ blog_content|safe }}
{% endblock %}