world/templates/section.html

14 lines
243 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>{{ section.title }}</h2>
<noscript>
Your browser doesn't support JS. This is so cool!
</noscript>
<div class='md-content'>
{{ section.content | safe }}
</div>
{% endblock content %}