forked from blek/world
14 lines
237 B
HTML
14 lines
237 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h2>{{ page.title }}</h2>
|
||
|
<noscript>
|
||
|
Your browser doesn't support JS. This is so cool!
|
||
|
</noscript>
|
||
|
|
||
|
<div class='md-content'>
|
||
|
{{ page.content | safe }}
|
||
|
</div>
|
||
|
|
||
|
{% endblock content %}
|