aboutsummaryrefslogtreecommitdiffstats
path: root/lib/yp/templates/yp_hello.html
blob: 95ee8e4382b09d6a78e06ab58433ac294b691a5e (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base.html" %}

{% load static %}
{% load jobtags %}
{% load humanize %}

{% block title %} Yocto Project {% endblock %}
{% block pagecontent %}
  <div class="row">
		<div class="col-md-7" style="padding-left: 50px;">
		  <h1>Hello from Yocto Project!</h1>
		</div>
  </div>

  <!-- Design copied from "srtgui/templates/landing.html -->

  <div class="row">
	<div class="jumbotron well-transparent">

		<div class="col-md-6">
			<div>
			<table class="table table-striped table-condensed" data-testid="landing-hyperlinks-table">
				<thead>
					<tr>
						<th>Table</th>
						<th>Description</th>
					</tr>
				</thead>

				<tr>
					<td><a class="btn btn-info btn-lg" href="https://wiki.yoctoproject.org/wiki/SRTool_User_Page">SRTool User Guide</a></td>
					<td>SRTool User Guide</td>
				</tr>

				<tr>
					<td><a class="btn btn-info btn-lg" href="https://bugzilla.yoctoproject.org/buglist.cgi?list_id=609538&bug_status=__all__&query_format=specific&order=relevance%20desc&product=Security%20Response%20Tool">SRTool Bugzilla</a></td>
					<td>SRTool Bugzilla Defects and Enhancement Requests</td>
				</tr>

				<tr>
					<td><a class="btn btn-info btn-lg" href="https://www.yoctoproject.org/">Yocto Project Home</a></td>
					<td>Yocto Project Home Page</td>
				</tr>

			</table>
			</div>
		</div>

	</div>
  </div>
{% endblock %}