Add OE favicon

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
Paul Eggleton 2013-02-25 12:05:20 +00:00
parent 516e3d198f
commit f6c10424e4
4 changed files with 2 additions and 1 deletions

1
TODO
View File

@ -23,7 +23,6 @@ TODO:
* Layout for maintainers (js collapse?)
* Captcha
* Show unpublished layers in a different style in the dependency list?
* Favicon
Later:
* Provide a delete function for unpublished layers?

View File

@ -17,6 +17,7 @@
<link rel="stylesheet" href="/static/css/bootstrap.css" />
<link rel="stylesheet" href="/static/css/bootstrap-responsive.css" />
<link rel="stylesheet" href="/static/css/additional.css" />
<link rel="icon" type="image/vnd.microsoft.icon" href="/static/img/favicon.ico" />
<title>{% block title %}OpenEmbedded metadata index{% endblock %}</title>
</head>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@ -45,4 +45,5 @@ urlpatterns = patterns('',
template_name='layerindex/rawrecipes.txt'),
name='recipe_list_raw'),
url(r'^about$', 'layerindex.views.about', name="about"),
url(r'^favicon\.ico$', 'django.views.generic.simple.redirect_to', {'url': 'layerindex/static/img/favicon.ico'}),
)