Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
cleanup in ecosystem
Browse files Browse the repository at this point in the history
  • Loading branch information
potch committed Apr 26, 2012
1 parent e8dfe42 commit ff22177
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
10 changes: 10 additions & 0 deletions media/css/ecosystem/footer.less
Expand Up @@ -21,8 +21,18 @@
li + li {
margin-top: 2px;
}
margin-top: 0;
}
li {
list-style: none;
}
#footzilla {
background: url(../../img/hub/footzilla.png) no-repeat;
float: left;
height: 50px;
margin-top: 5px;
opacity: .5;
text-indent: -9999px;
width: 100px;
}
}
8 changes: 4 additions & 4 deletions mkt/ecosystem/templates/ecosystem/base.html
Expand Up @@ -11,7 +11,7 @@

<link rel="shortcut icon" type="image/x-icon"
href="{{ MEDIA_URL }}img/ecosystem/favicon.ico" sizes="32x32">


{% block site_css %}
{{ css('mkt/consumer') }}
Expand Down Expand Up @@ -51,7 +51,7 @@
</div>

{% block sitefooter %}

<footer id="site-footer">
<div class="center">
<ul>
Expand All @@ -73,12 +73,12 @@ <h1 id="footzilla">mozilla</h1>
</a> or any later version.
{% endtrans %}
</p>

{% block sitefooter_append %}
{% endblock %}
</div>
</footer>

{% endblock %}


Expand Down
7 changes: 4 additions & 3 deletions mkt/ecosystem/templates/ecosystem/header.html
@@ -1,21 +1,22 @@
<header id="site-header">
<section>
<h1><a href="{{ url('home') }}">{{ _('Mozilla Marketplace') }}</a></h1>

<nav>
{#
<a href="{{ url('ecosystem.tutorial') }}">Tutorials</a>
#}

{% if not request.user.is_authenticated() %}
<a href="{{ url('users.login') }}?to={{ url('ecosystem.landing') }}">Sign in/Register</a>
<a class="external" href="https://developer.mozilla.org/en-US/apps">Reference</a>
{% else %}
<a href="{{ url('submit.app') }}">Submit an App</a>
<a href="{{ url('mkt.developers.apps') }}">My Apps</a>
<a class="external" href="https://developer.mozilla.org/en-US/apps">Reference</a>
<a href="{{ url('users.logout') }}">Logout</a>
{% endif %}
</nav>

</section>
</header>

0 comments on commit ff22177

Please sign in to comment.