Skip to content

Commit e4dd22d

Browse files
committed
add missing section.html template for /documentation/ path
1 parent bcb718d commit e4dd22d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

templates/section.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{% extends "base.html" %}
2+
3+
{% block body %}
4+
{% include "header.html" %}
5+
6+
<div class="page">
7+
{% block content %}
8+
<div class="page__content">
9+
{{ section.content | safe }}
10+
</div>
11+
{% endblock %}
12+
13+
{% include "footer.html" %}
14+
</div>
15+
16+
{% endblock body %}

0 commit comments

Comments
 (0)