Child: [ebd798] (diff)

Download this file

neigh_nav_menu.html    18 lines (17 with data), 595 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% if not neighborhood %}
<div id="nav_menu_missing" />
{% else %}
<div class="column grid_1">
{% if neighborhood.icon %}
<img src="{{neighborhood.url()}}/icon" class="project_icon"/>
{% else %}
<img src="{{g.forge_static('images/project_default.png')}}" class="project_icon"/>
{% endif %}
</div>
<div class="column grid_9">
<h1>
<a href="{{neighborhood.url()}}">{{neighborhood.name}}</a><br/>
</h1>
</div>
<div class="column grid_2">&nbsp;</div>
{% endif %}