-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
51 lines (51 loc) · 1.79 KB
/
index.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Beaker lab automation project</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="header">
<div class="body_element">
<div class="title">
<a href="."><img src="images/logo.png" alt="Beaker" width="110" height="40" /></a>
</div>
<nav class="menu">
<form class="search" method="get" action="search.html">
<input type="search" name="q" placeholder="search" />
</form>
<a href="docs/">docs</a>
<a href="dev/">develop</a>
<a href="download.html">download</a>
</nav>
</div>
</div>
<div class="main_content">
<div class="body_element">
<p class="slogan">Beaker is open-source software for managing and
automating labs of test computers.</p>
<div class="screenshot"></div>
<div class="blurb">
<p>With Beaker, users and administrators can:</p>
<ul>
<li>Manage systems across multiple labs</li>
<li>Maintain an automated inventory of system hardware details</li>
<li>Provision task execution environments on systems</li>
<li>Schedule tasks to run on one or more systems</li>
<li>Store and view task results</li>
</ul>
<p>Beaker currently supports Anaconda and RPM-based Linux distributions,
including <a href="http://fedoraproject.org/">Fedora</a> and
<a href="http://www.redhat.com/products/enterprise-linux/">Red Hat
Enterprise Linux</a>, across a wide range of hardware architectures.</p>
</div>
</div>
</div>
</body>
<!-- vim: set sw=2 : -->
</html>