add missing closing p tag to flow doc example

This commit is contained in:
Brian Cappello 2015-12-31 12:16:53 -05:00
parent 2a1cf120c7
commit a46a74a305
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ using their templates:
```html+jinja ```html+jinja
{% for blk in this.demo_flow.blocks %} {% for blk in this.demo_flow.blocks %}
{% if blk._flowblock == 'text' %} {% if blk._flowblock == 'text' %}
<p>{{ blk.text }} <p>{{ blk.text }}</p>
{% elif blk._flowblock == 'image' %} {% elif blk._flowblock == 'image' %}
<img src="{{ blk.image }}" alt="{{ blk.alt }}"> <img src="{{ blk.image }}" alt="{{ blk.alt }}">
{% endif %} {% endif %}