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