| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> |
|---|
| 3 | <head> |
|---|
| 4 | <title>Telemeta</title> |
|---|
| 5 | {% block stylesheets %} |
|---|
| 6 | <link rel="stylesheet" type="text/css" href="{% url telemeta-css "telemeta.css" %}" /> |
|---|
| 7 | <!--[if IE]> |
|---|
| 8 | <link rel="stylesheet" type="text/css" href="{% url telemeta-css "telemeta_ie.css" %}" /> |
|---|
| 9 | <![endif]--> |
|---|
| 10 | <!--[if lte IE 6]> |
|---|
| 11 | <link rel="stylesheet"type="text/css" href="{% url telemeta-css "telemeta_ie6.css" %}" /> |
|---|
| 12 | <![endif]--> |
|---|
| 13 | {% endblock %} |
|---|
| 14 | {% block extra_javascript %}{% endblock %} |
|---|
| 15 | </head> |
|---|
| 16 | {% load i18n %} |
|---|
| 17 | {% load telemeta_utils %} |
|---|
| 18 | <body> |
|---|
| 19 | <!-- |
|---|
| 20 | {% if user.is_authenticated and user.is_staff %} |
|---|
| 21 | <div id="user-tools">{% trans 'Welcome,' %} <strong>{% if user.first_name %}{{ user.first_name|escape }}{% else %}{{ user.username }}{% endif %}</strong>. {% block userlinks %}<a href="doc/">{% trans 'Documentation' %}</a> / <a href="password_change/">{% trans 'Change password' %}</a> / <a href="logout/">{% trans 'Log out' %}</a>{% endblock %}</div> |
|---|
| 22 | {% endif %} |
|---|
| 23 | --> |
|---|
| 24 | <div id="layout"> |
|---|
| 25 | <div id="header"> |
|---|
| 26 | <div id="logo"> |
|---|
| 27 | {% block logo %} |
|---|
| 28 | <a href="{% url telemeta-home %}"><img src="{% url telemeta-images "logo.png" %}" alt="" /></a> |
|---|
| 29 | {% endblock %} |
|---|
| 30 | </div> |
|---|
| 31 | |
|---|
| 32 | <div id="quick_search"> |
|---|
| 33 | <form action="{% url telemeta-search %}" method="GET"> |
|---|
| 34 | <input type="text" id="quick_search_pattern" name="pattern" /> |
|---|
| 35 | <input type="submit" value="Search" /> |
|---|
| 36 | </form> |
|---|
| 37 | <p><a href="{% url telemeta-search-criteria %}">Advanced search</a></p> |
|---|
| 38 | </div> |
|---|
| 39 | |
|---|
| 40 | <div id="menu" class="nav"> |
|---|
| 41 | <ul> |
|---|
| 42 | {# spaces between li and a elements breaks layout #} |
|---|
| 43 | <li><a href="{% url telemeta-collections %}">All Collections</a></li><li><a href="{% url telemeta-items %}">All Items</a></li><li class="first"><a href="{% url telemeta-geo-continents %}">Geo Navigator</a></li><li class="last"><a href="{% url telemeta-admin %}">Admin</a></li> |
|---|
| 44 | </ul> |
|---|
| 45 | </div> |
|---|
| 46 | </div> |
|---|
| 47 | <div id="submenu"> |
|---|
| 48 | {% block submenu %}{% endblock %} |
|---|
| 49 | </div> |
|---|
| 50 | |
|---|
| 51 | <div id="content"> |
|---|
| 52 | {% block content %}{% endblock %} |
|---|
| 53 | <div class="nett"></div> |
|---|
| 54 | </div> |
|---|
| 55 | |
|---|
| 56 | <div id="footer"> |
|---|
| 57 | {% block footer %} |
|---|
| 58 | <hr /> |
|---|
| 59 | <a id="telemeta_powered" href="{% telemeta_url %}"><img src="{% url telemeta-images "logo_mini.png" %}" height="30" width="93" |
|---|
| 60 | alt="Telemeta Powered"/></a> |
|---|
| 61 | <p class="left"> |
|---|
| 62 | Powered by <a href="{% telemeta_url %}"><strong>Telemeta {% telemeta_version %}</strong></a><br /> |
|---|
| 63 | By <a href="http://www.parisson.com/">Parisson</a> & <a href="http://www.samalyse.com/">Samalyse</a>. |
|---|
| 64 | </p> |
|---|
| 65 | |
|---|
| 66 | <p class="right"> |
|---|
| 67 | Visit the Telemeta open source project at<br /><a href="{% telemeta_url %}">{% telemeta_url %}</a> |
|---|
| 68 | </p> |
|---|
| 69 | {% endblock %} |
|---|
| 70 | </div> |
|---|
| 71 | </div> |
|---|
| 72 | </body> |
|---|
| 73 | </html> |
|---|