Parent: [7536f4] (diff)

Child: [a242e8] (diff)

Download this file

neigh_nav_menu.html    14 lines (12 with data), 466 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{% if not neighborhood %}
<div id="nav_menu_missing"></div>
{% else %}
<a href="{{neighborhood.url()}}">
{% if neighborhood.icon %}
<img src="{{neighborhood.url()}}/icon" class="project_icon" alt="{{neighborhood.name}} Logo"/>
{% else %}
<img src="{{g.forge_static('images/project_default.png')}}" class="project_icon" alt="Default Neighborhood Icon"/>
{% endif %}
<h1 class="project_title">{{neighborhood.name}}</h1>
</a>
{% endif %}