summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/landing.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/landing.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/landing.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/landing.html b/bitbake/lib/toaster/toastergui/templates/landing.html
new file mode 100644
index 0000000000..071edf86ef
--- /dev/null
+++ b/bitbake/lib/toaster/toastergui/templates/landing.html
@@ -0,0 +1,66 @@
1{% extends "base.html" %}
2
3{% load static %}
4{% load projecttags %}
5{% load humanize %}
6
7{% block pagecontent %}
8
9 <div class="container-fluid">
10 <div class="row-fluid">
11 <!-- Empty - no data in database -->
12 <div class="hero-unit span12">
13 <button class="close" data-dismiss="alert" type="button">
14 ×
15 </button>
16 <div class="row-fluid">
17 <div class="span6">
18 <h1>
19 This is Toaster
20 </h1>
21 <p>
22 A web interface to
23 <a href="http://www.yoctoproject.org/tools-resources/projects/bitbake">
24 BitBake
25 </a>
26 , the
27 <a href="http://www.yoctoproject.org">
28 Yocto Project
29 </a>
30 build system.
31 </p>
32 <p class="hero-actions">
33 <a class="btn btn-primary btn-large" href="https://www.yoctoproject.org/documentation/toaster-manual">
34 Show me the manual
35 </a>
36 <a class="btn btn-large" href="https://wiki.yoctoproject.org/wiki/Contribute_to_Toaster">
37 I want to contribute
38 </a>
39 </p>
40 </div>
41 <div class="span5">
42 <a href="http://www.yoctoproject.org">
43 <img alt="Yocto Project" class="thumbnail" src="/static/img/toaster.png"/>
44 </a>
45 </div>
46 </div>
47 </div>
48 <!-- Empty - no data in database -->
49 <div class="page-header top-air">
50 <h1>
51 All builds
52 </h1>
53 </div>
54 <div class="alert alert-info lead">
55 Toaster has not recorded any builds yet. Go build something with
56 <a href="http://www.yoctoproject.org/docs/current/yocto-project-qs/yocto-project-qs.html#test-run">
57 Knotty
58 </a>
59 or
60 <a href="https://www.yoctoproject.org/documentation/hob-manual">
61 Hob
62 </a>
63 </div>
64 </div>
65
66{% endblock %}