Skip to content

Instantly share code, notes, and snippets.

@autrilla
Last active August 29, 2015 14:17
Show Gist options
  • Save autrilla/70864feb9d25e9c2b6d2 to your computer and use it in GitHub Desktop.
Save autrilla/70864feb9d25e9c2b6d2 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>
{% block title %}
</title>
</head>
<body>
<nav>
<a>Logo</a>
<ul>
{% for farm in farms %}
<li>{{ farm.name }}
<ul>
{% for device in farm.devices %}
<li>{{ device.name }}</li>
{% endfor %}
{% for zone in farm.zones %}
<li>{{ zone.name }}
<ul>
{% for device in zone.devices %}
<li>{{ device.name }}</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</nav>
{% block content %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment