Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: django/contrib/admin/media/img/admin/favicon.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
|
|
|
1 | 1 | {% load url from future %}<!DOCTYPE html> |
2 | 2 | <html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}> |
3 | | <head> |
| 3 | <head profile="http://www.w3.org/2005/10/profile"> |
4 | 4 | <title>{% block title %}{% endblock %}</title> |
5 | 5 | <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% load adminmedia %}{% admin_media_prefix %}css/base.css{% endblock %}" /> |
6 | 6 | {% block extrastyle %}{% endblock %} |
… |
… |
|
9 | 9 | <script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% admin_media_prefix %}{% endfilter %}";</script> |
10 | 10 | {% block extrahead %}{% endblock %} |
11 | 11 | {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %} |
| 12 | <link rel="icon" type="image/png" href="{% admin_media_prefix %}img/admin/favicon.png" /> |
| 13 | |
12 | 14 | </head> |
13 | 15 | {% load i18n %} |
14 | 16 | |