blob: e7200b84121613307cf51dad51c929ad82e809bb [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001{% extends "base.html" %}
2
3{% load static %}
4{% load projecttags %}
5{% load humanize %}
6
Patrick Williamsf1e5d692016-03-30 15:21:19 -05007{% block title %} Welcome to Toaster {% endblock %}
8
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009{% block pagecontent %}
10
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011 <div class="container">
12 <div class="row">
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013 <!-- Empty - no build module -->
14 <div class="page-header top-air">
15 <h1>
16 This page only works with Toaster in 'Build' mode
17 </h1>
18 </div>
19 <div class="alert alert-info lead">
20 <p">
21 The 'Build' mode allows you to configure and run your Yocto Project builds from Toaster.
22 <ul>
Andrew Geissler4c19ea12020-10-27 13:52:24 -050023 <li><a href="https://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html#intro-modes">
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024 Read about the 'Build' mode
25 </a></li>
26 <li><a href="/">
27 View your builds
28 </a></li>
29 </ul>
30 </p>
31 </div>
32 </div>
33
34{% endblock %}