summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/base.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-10-28 14:22:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-29 07:32:10 +0000
commit66d3c353f8e7103b0d60abdeb575cd3ac303e877 (patch)
treed274976092354bfe943fc82fd5e0932eef7e5ea0 /bitbake/lib/toaster/toastergui/templates/base.html
parent5724b2a651d22430b055dfcfa714fe412afa2dfc (diff)
downloadpoky-66d3c353f8e7103b0d60abdeb575cd3ac303e877.tar.gz
bitbake: toaster: templates Add meaningful title tags
Our title tags are all over the place, and have no relation to the page content. This commit adds a meaningful title tag to each Toaster page. (Bitbake rev: 1ab8827d684a19a70f3b788aed2327bf30edffe2) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/base.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/base.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/base.html b/bitbake/lib/toaster/toastergui/templates/base.html
index dfa6bba70f..11ac2a0355 100644
--- a/bitbake/lib/toaster/toastergui/templates/base.html
+++ b/bitbake/lib/toaster/toastergui/templates/base.html
@@ -4,7 +4,9 @@
4{% load project_url_tag %} 4{% load project_url_tag %}
5<html lang="en"> 5<html lang="en">
6 <head> 6 <head>
7 <title>{% if objectname %} {{objectname|title}} - {% endif %}Toaster</title> 7 <title>
8 {% block title %} Toaster {% endblock %}
9 </title>
8<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" type="text/css"/> 10<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" type="text/css"/>
9<link rel="stylesheet" href="{% static 'css/bootstrap-responsive.min.css' %}" type='text/css'/> 11<link rel="stylesheet" href="{% static 'css/bootstrap-responsive.min.css' %}" type='text/css'/>
10<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" type='text/css'/> 12<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" type='text/css'/>