mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-10 01:58:22 +00:00
9 lines
197 B
HTML
9 lines
197 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1 class="title">
|
||
|
{{ page.title }}
|
||
|
</h1>
|
||
|
<p class="blog-date"><strong>{{ page.date }}</strong></p>
|
||
|
{{ page.content | safe }}
|
||
|
{% endblock content %}
|