<h1>Our users</h1>
<ul>
<li>
<h2>Mickey Mouse</h2>
<p>[email protected]</p>
</li>
<li>
<h2>Daffy Duck</h2>
<p>[email protected]</p>
</li>
<ul>
<h1>{{ title }}</h1>
<ul>
{% for u in users %}
<li>
<h2>{{ u.name }}</h2>
<p>{{ u.email }}</p>
</li>
{% endfor %}
<ul>
{
"title": "Our users",
"users": [
{
"name": "Mickey Mouse",
"email": "[email protected]"
},
{
"name": "Daffy Duck",
"email": "[email protected]"
}
]
}
No notes defined.