world/templates/custom/blog-post.html

19 lines
404 B
HTML

{% extends "base.html" %}
{% block content %}
<h2 style='margin-bottom:0'>{{ page.title }}</h2>
{% if page.description %}
<h4 style='margin-top:0;font-size:80%'>{{ page.description }}</h4>
{% endif %}
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'>
<a href='/blog'>go to posts</a>
{{ page.content | safe }}
</div>
{% endblock content %}