We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b002d9c + 9075080 commit 8710cabCopy full SHA for 8710cab
README.md
@@ -27,18 +27,17 @@ restricting functionality too much.
27
28
## In A Nutshell
29
30
-.. code-block:: jinja
31
-
32
- {% extends "base.html" %}
33
- {% block title %}Members{% endblock %}
34
- {% block content %}
35
- <ul>
36
- {% for user in users %}
37
- <li><a href="{{ user.url }}">{{ user.username }}</a></li>
38
- {% endfor %}
39
- </ul>
40
- {% endblock %}
41
+```jinja
+{% extends "base.html" %}
+{% block title %}Members{% endblock %}
+{% block content %}
+ <ul>
+ {% for user in users %}
+ <li><a href="{{ user.url }}">{{ user.username }}</a></li>
+ {% endfor %}
+ </ul>
+{% endblock %}
+```
42
43
## Donate
44
0 commit comments