File tree 1 file changed +6
-18
lines changed 1 file changed +6
-18
lines changed Original file line number Diff line number Diff line change 1
- {% from 'macros/example-navbar.html' import example_navbar %}
2
- {% extends 'base.html' %}
3
- {% block header %}
4
- {{ example_navbar() }}
5
- {% endblock %}
1
+ {% from "macros/example-navbar.html" import example_navbar %}
2
+ {% extends "base.html" %}
3
+ {% block header %}{{ example_navbar() }}{% endblock %}
6
4
{% block body %}
7
5
< main class ="dbcd-main mb-5 mx-2 mx-md-4 my-4 ">
8
- {% block size_warning %}
9
-
10
- {% endblock %}
6
+ {% block size_warning %}{% endblock %}
11
7
< div data-bs-theme ="light " style ="transform:translateZ(0);box-shadow:0 0 10px 5px #9c9c9c;min-height:calc(700px); ">
12
- {% block content %}
13
-
14
- {% endblock %}
8
+ {% block content %}{% endblock %}
15
9
</ div >
16
10
< div >
17
11
< h2 > Source Code</ h2 >
@@ -20,13 +14,7 @@ <h2>Source Code</h2>
20
14
This code is available
21
15
< a href ="{{ example_link }} "> in the examples directory</ a > of our GitHub repository.
22
16
</ p >
23
- < pre class ="mt-3 ">
24
- < code class ="language-python ">
25
- {% block code %}
26
-
27
- {% endblock %}
28
- </ code >
29
- </ pre >
17
+ < pre class ="mt-3 "> < code class ="language-python "> {% block code %}{% endblock %}</ code > </ pre >
30
18
</ div >
31
19
</ main >
32
20
{% endblock %}
You can’t perform that action at this time.
0 commit comments