Skip to content

Commit

Permalink
Fixed #442 -- Added Elastic logo in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
girishkumarkh authored and bmispelon committed Jun 7, 2015
1 parent 793d415 commit c3faec6
Show file tree
Hide file tree
Showing 4 changed files with 129 additions and 2 deletions.
10 changes: 9 additions & 1 deletion djangoproject/scss/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1028,13 +1028,21 @@ blockquote {
background: url(../img/logo-rackspace.svg) no-repeat left center;
}
}

&.elastic {
background: url(../img/logo-elastic.png) no-repeat left center;
.mdzr-svg & {
background: url(../img/logo-elastic.svg) no-repeat left center;
background-size: contain;
}
}

&.threespot {
background: url(../img/logo-threespot.png) no-repeat left center;
.mdzr-svg & {
background: url(../img/logo-threespot.svg) no-repeat left center;
}
}

&.andrevv {
background: url(../img/logo-andrevv.png) no-repeat left center;
.mdzr-svg & {
Expand Down
Binary file added djangoproject/static/img/logo-elastic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
116 changes: 116 additions & 0 deletions djangoproject/static/img/logo-elastic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion djangoproject/templates/includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ <h2>Follow Us</h2>
<a class="logo" href="{% url 'homepage' %}">Django</a>
</div>
<ul class="thanks">
<li><span>Hosting by</span> <a class="rackspace" href="http://rackspace.com">Rackspace</a></li>
<li>
<span>Hosting by</span> <a class="rackspace" href="http://rackspace.com">Rackspace</a>
<span>Search by</span> <a class="elastic" href="https://www.elastic.co">Elastic Search</a>
</li>
<li class="design"><span>Design by</span> <a class="threespot" href="http://www.threespot.com">Threespot</a> <span class="ampersand">&amp;</span> <a class="andrevv" href="http://andrevv.com/"></a></li>
</ul>
<p class="copyright">&copy; 2005-{% now "Y" %}
Expand Down

0 comments on commit c3faec6

Please sign in to comment.