buildbot: Homepage styling
This commit is contained in:
parent
40c1169d4c
commit
b11db62677
|
@ -98,6 +98,10 @@ pre > code {
|
|||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.Header {
|
||||
padding-bottom: 10px;
|
||||
margin-bottom: 20px;
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
||||
<title>Vagrant:CI</title>
|
||||
<title>Vagrant CI</title>
|
||||
|
||||
<meta name="description" content="Create and manage virtualized development environments." />
|
||||
<meta name="description" content="CI website for Vagrant, a tool for creating and distributing virtualized environments.">
|
||||
|
||||
<link rel="stylesheet" href="/static/css/bootstrap-1.4.0.min.css" type="text/css" media="screen" />
|
||||
<link rel="stylesheet" href="/static/css/syntax.css" type="text/css" media="screen" />
|
||||
|
@ -16,7 +16,7 @@
|
|||
<div class="container">
|
||||
<div class="row Header">
|
||||
<div class="span4 Module logo">
|
||||
<h1><a href="/">Vagrant<span class="subtype">:CI</span></a></h1>
|
||||
<h1><a href="/">Vagrant <span class="subtype">CI</span></a></h1>
|
||||
</div>
|
||||
<div class="span12">
|
||||
<div class="Module navigation">
|
||||
|
@ -25,7 +25,6 @@
|
|||
<li><a href="/builders">builders</a></li>
|
||||
<li><a href="/waterfall">waterfall</a></li>
|
||||
<li><a href="/buildslaves">build slaves</a></li>
|
||||
<li><a href="http://vagrantup.com">vagrant website</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,11 +1,42 @@
|
|||
{% extends "layouts/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div class="alert-message warning">
|
||||
<strong>Vagrant CI is under construction!</strong> This site is still
|
||||
brand new and the exact builders, build slaves, and stability of the CI
|
||||
will be in flux for the next few weeks.
|
||||
</div>
|
||||
|
||||
<img src="/static/images/vagrant_looking.png" class="right" />
|
||||
|
||||
<p>
|
||||
<strong>Vagrant CI, keeping Vagrant stable every step of the way.</strong>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Welcome to the CI for <a href="http://vagrantup.com">Vagrant</a>, a tool
|
||||
for building and distributing virtualized environments. In order to maintain
|
||||
a level of stability that users of Vagrant have come to expect, this
|
||||
the level of stability that users of Vagrant have come to expect, this
|
||||
CI system will run a wide range of tests against all commits to the
|
||||
<a href="https://github.com/mitchellh/vagrant">Vagrant project</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Here is a brief overview of the pages you may be interested in:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<a href="/waterfall">Waterfall</a> - This page will show you the status
|
||||
of all the builders in reverse chronological order so you can see what
|
||||
the CI is up to at this moment.
|
||||
</li>
|
||||
<li>
|
||||
<a href="/builders">Builders</a> - This page will show you the various
|
||||
builders. Builders are the things which know how to perform one kind of
|
||||
build (unit tests, acceptance tests, etc.). From here you can also see the
|
||||
status of the last build for each builder as well as the current status
|
||||
of the builder.
|
||||
</li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue