mirror of
https://git.yoctoproject.org/poky
synced 2026-03-20 22:29:40 +01:00
Convert all the HTML templates, JS and CSS in the project parts of toaster to use bootstrap 3. (Bitbake rev: 69527a731eada699d3f604ff8f3ae9410981ba9b) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
816 B
HTML
35 lines
816 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
|
|
{% block title %} Welcome to Toaster {% endblock %}
|
|
|
|
{% block pagecontent %}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<!-- 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 %}
|