Files
poky/bitbake/lib/toaster/toastergui/templates/landing_not_managed.html
Belen Barros Pena 66d3c353f8 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>
2015-10-29 07:32:10 +00:00

35 lines
828 B
HTML

{% extends "base.html" %}
{% load static %}
{% load projecttags %}
{% load humanize %}
{% block title %} Welcome to Toaster {% endblock %}
{% block pagecontent %}
<div class="container-fluid">
<div class="row-fluid">
<!-- Empty - no build module -->
<div class="page-header top-air">
<h1>
This page only works with Toaster in 'Build' mode
</h1>
</div>
<div class="alert alert-info lead">
<p">
The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster.
<ul>
<li><a href="http://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html#intro-modes">
Read about the 'Build' mode
</a></li>
<li><a href="/">
View your builds
</a></li>
</ul>
</p>
</div>
</div>
{% endblock %}