Revert "Fixed favicon issues by changing the renderer.html template."

This reverts commit 6309f32b6b.
This commit is contained in:
Adam Nelson 2011-10-11 16:15:21 -04:00
parent 6309f32b6b
commit 86033e5504

View File

@ -13,15 +13,14 @@
</style>
<link rel="stylesheet" type="text/css" href='{{ADMIN_MEDIA_PREFIX}}css/base.css'/>
<link rel="stylesheet" type="text/css" href='{{ADMIN_MEDIA_PREFIX}}css/forms.css'/>
<link rel="shortcut icon" href="/media/img/favicon.ico" type="image/x-icon" />
<title>Yipit's RESTful Framework - {{ name }}</title>
<title>Django REST framework - {{ name }}</title>
</head>
<body>
<div id="container">
<div id="header">
<div id="branding">
<h1 id="site-name"><a href='http://django-rest-framework.org'>Yipit's RESTful Framework</a> <span class="version"> v {{ version }}</span></h1>
<h1 id="site-name"><a href='http://django-rest-framework.org'>Django REST framework</a> <span class="version"> v {{ version }}</span></h1>
</div>
<div id="user-tools">
{% if user.is_active %}Welcome, {{ user }}.{% if logout_url %} <a href='{{ logout_url }}'>Log out</a>{% endif %}{% else %}Anonymous {% if login_url %}<a href='{{ login_url }}'>Log in</a>{% endif %}{% endif %}