You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
409 B
22 lines
409 B
{% extends "base_default.html" %} |
|
|
|
{% block title %} |
|
Blog — {{ page.title | safe }} |
|
{% endblock title %} |
|
|
|
{% block header %} |
|
<h1>{{ page.title | safe }}</h1> |
|
{% endblock header %} |
|
|
|
{% block content %} |
|
<p> |
|
<a href="/">Back to blog</a> |
|
</p> |
|
<p> |
|
Posted on {{ page.date | truncate(length=10, end="") }} |
|
</p> |
|
|
|
<hr> |
|
|
|
{{ page.content | safe }} |
|
{% endblock content %} |