hc
2023-11-07 f45e756958099c35d6afb746df1d40a1c6302cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% 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="https://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 %}