Skip to content

Instantly share code, notes, and snippets.

@yuriy-yarvinen
Created March 17, 2019 22:26
Show Gist options
  • Save yuriy-yarvinen/bc303a7a75ccbfa46f1ad460b2121485 to your computer and use it in GitHub Desktop.
Save yuriy-yarvinen/bc303a7a75ccbfa46f1ad460b2121485 to your computer and use it in GitHub Desktop.
template
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>main</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="../css/style.css">
</head>
<body>
<ul>
{% for item in data %}
{% for item2 in item %}
<li>{{item2.id}}</li>
<li>{{item2.name}}</li>
{% endfor %}
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment