13 lines
295 B
HTML
13 lines
295 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ section.title }}{% endblock title %}
|
|
|
|
{% block head %}
|
|
{% if section.extra.css %}
|
|
<link rel="stylesheet" href="{{ section.extra.css | safe }}">
|
|
{% endif %}
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
{% endblock content %}
|