Skip to content

Commit

Permalink
Fixed few bad <body> closing tags in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gst committed May 5, 2015
1 parent ed986d2 commit 63c40c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/index.rst
Expand Up @@ -97,7 +97,7 @@ Example Template::
{% endaddtoblock %}
And even more content.
{% render_block "js" %}
<body>
</body>
</html>

Above example would roughly render like this::
Expand All @@ -114,7 +114,7 @@ Above example would roughly render like this::
<script type="text/javascript">
alert("Hello django-sekizai");
</script>
<body>
</body>
</html>

.. note::
Expand Down Expand Up @@ -166,7 +166,7 @@ Example::
Maybe you want to throw in some css:
{% add_data "css-data" "css/stylesheet.css" %}
Some more content here.
<body>
</body>
</html>

Above example would roughly render like this::
Expand All @@ -180,7 +180,7 @@ Above example would roughly render like this::
Maybe you want to throw in some css:
Some more content here.
And even more content.
<body>
</body>
</html>

.. warning::
Expand Down

0 comments on commit 63c40c7

Please sign in to comment.