Remove unused code: ajaxuploader, lightboxes, and other things
[oweals/karmaworld.git] / karmaworld / templates / header.html
1 {% load url from future %}
2
3 {# Logged out #}
4   <header id="global_header">
5     <div class="row">
6       <div id="logo_container" class="small-6 columns">
7         <a href="/">
8           <img src="{{ STATIC_URL }}img/global_header_logo.png" alt="global_header_logo" width="144" height="17" />
9         </a>
10       </div><!--/logo container-->
11
12       {% if display_add_course %}
13         <div class="small-2 columns small-offset-3 show-for-medium-up">
14           <a id="add_course_header_button" href="#"><img src="{{ STATIC_URL }}img/global_header_pluscourse.png" /></a>
15         </div>
16       {% endif %}
17
18       {% if display_add_note %}
19         <div class="small-2 columns small-offset-3 show-for-medium-up">
20           <a id="add_note_header_button" href="#" onclick="$('.add-note-btn').click();">
21             <img src="{{ STATIC_URL }}img/global_header_plusnote.png" /></a>
22         </div>
23       {% endif %}
24
25       <div id="login_container" class="small-1 columns">
26         <a class=white href="{% url 'about' %}">About</a>
27       </div>
28
29     </div>
30   </header><!--/global header-->