mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
fd4085f380
Set the links to the Toaster manual in the base.html and landing_not_managed.html templates to the URL of the new Toaster manual. (Bitbake rev: 88b1201a2f6dec53970b120cc8e13c0eb5ae21e1) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
775 B
HTML
33 lines
775 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
|
|
{% 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 %}
|