#logo { padding-top: 1ex; }
#logo a, #logo a:hover { border: none; background: transparent; }
+/*
#menu a, #menu a:hover { border: none;}
#menu {
text-align: right;
padding: 1px;
border-bottom: solid 1px black;
}
+*/
#submenu { clear: right; float: right; padding-top: 1em; }
#submenu a { color: #000066; }
background-position: 100% 50%;
background-repeat: no-repeat;
}
-table.listing th.asc a { background-image: url(../asc.png) }
-table.listing th.desc a { background-image: url(../desc.png) }
+table.listing th.asc a { background-image: url(../images/asc.png) }
+table.listing th.desc a { background-image: url(../images/desc.png) }
table.listing tbody td, table.listing tbody th {
border: 1px dotted #ddd;
padding: .33em .5em;
/* HTML dublin core display */
table.dublincore { width: auto; }
+
+/* Navigation (borrowed from Trac) */
+.nav h2, .nav hr { display: none }
+.nav ul { font-size: 10px; list-style: none; margin: 0; text-align: right }
+.nav li {
+ border-right: 1px solid #d7d7d7;
+ display: inline;
+ padding: 0 .75em;
+ white-space: nowrap;
+}
+.nav li.last { border-right: none }
+
+/* Main navigation bar (borrowed from Trac) */
+#menu {
+ background: #f7f7f7 url(../images/topbar_gradient.png) 0 0;
+ border: 1px solid #000;
+ font: normal 10px verdana,'Bitstream Vera Sans',helvetica,arial,sans-serif;
+ margin: .66em 0 .33em;
+ padding: .2em 0;
+}
+#menu li { border-right: none; padding: .25em 0 }
+#menu :link, #menu :visited {
+ background: url(../images/dots.gif) 0 0 no-repeat;
+ border-right: 1px solid #fff;
+ border-bottom: none;
+ border-left: 1px solid #555;
+ color: #000;
+ padding: .2em 20px;
+}
+* html #menu :link, * html #menu :visited { background-position: 1px 0 }
+#menu :link:hover, #menu :visited:hover {
+ background-color: #ccc;
+ border-right: 1px solid #ddd;
+}
+#menu .active :link, #menu .active :visited {
+ background: #333 url(../images/topbar_gradient2.png) 0 0 repeat-x;
+ border-top: none;
+ border-right: 1px solid #000;
+ color: #eee;
+ font-weight: bold;
+}
+#menu .active :link:hover, #menu .active :visited:hover {
+ border-right: 1px solid #000;
+}
+
+/* Footer (borrowed from Trac) */
+#footer {
+ clear: both;
+ color: #bbb;
+ font-size: 10px;
+ border-top: 1px solid;
+ height: 31px;
+ padding: .25em 0;
+ margin-top: 3em;
+}
+#footer :link, #footer :visited { color: #bbb; }
+#footer hr { display: none }
+#footer #telemeta_powered { border: 0; float: left }
+#footer #telemeta_powered:hover { background: transparent }
+#footer p { margin: 0 }
+#footer p.left {
+ float: left;
+ margin-left: 1em;
+ padding: 0 1em;
+ border-left: 1px solid #d7d7d7;
+ border-right: 1px solid #d7d7d7;
+}
+#footer p.right {
+ float: right;
+ text-align: right;
+}
+
+/* Homepage */
+
+.homelinks a { font-size: 140%;}
{% block extra_javascript %}{% endblock %}
</head>
{% load i18n %}
+{% load telemeta_utils %}
<body>
<!--
{% if user.is_authenticated and user.is_staff %}
</form>
</div>
-<div id="menu">
-<a href="{% url telemeta-geo-continents %}">Geo Navigator</a> |
-<a href="{% url telemeta-collections %}">All Collections</a> |
-<a href="{% url telemeta-items %}">All Items</a> |
-<a href="{% url telemeta-admin %}">Admin</a>
+<div id="menu" class="nav">
+<ul>
+{# spaces between li and a elements breaks layout #}
+<li class="first"><a href="{% url telemeta-geo-continents %}">Geo Navigator</a></li><li><a href="{% url telemeta-collections %}">All Collections</a></li><li><a href="{% url telemeta-items %}">All Items</a></li><li class="last"><a href="{% url telemeta-admin %}">Admin</a></li>
</div>
</div>
<div id="submenu">
{% block content %}{% endblock %}
</div>
+<div id="footer">
+ <hr />
+ <a id="telemeta_powered" href="http://svn.parisson.org/telemeta"><img src="{% url telemeta-images "logo_mini.png" %}" height="30" width="93"
+ alt="Telemeta Powered"/></a>
+ <p class="left">
+ Powered by <a href="http://svn.parisson.org/telemeta"><strong>Telemeta {% telemeta_version %}</strong></a><br />
+ By <a href="http://www.parisson.com/">Parisson</a> & <a href="http://www.samalyse.com/">Samalyse</a>.
+ </p>
+
+ <p class="right">
+ Visit the Telemeta open source project at<br /><a href="http://svn.parisson.org/telemeta">http://svn.parisson.org/telemeta</a>
+ </p>
+</div>
+
</body>
</html>