49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
|
|
<script type="text/javascript" src="js/bootstrap.min.js"></script>
|
|
<title>Git Center</title>
|
|
</head>
|
|
<body data-spy="scroll">
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="span3">
|
|
<ul class="nav nav-list well">
|
|
<li class="nav-header">France</li>
|
|
<li><a href="#magento-prod">Magento Prod</a></li>
|
|
<li><a href="#magento-preprod">Magento Preprod</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="span9">
|
|
<section id="magento-prod">
|
|
<h3>Magento Prod <span class="label label-success">OK</span></h3>
|
|
<div class="btn-group">
|
|
<button class="btn"><i class="icon-refresh"></i> Status</button>
|
|
<button class="btn"><i class="icon-arrow-up"></i> Push</button>
|
|
<button class="btn"><i class="icon-arrow-down"></i> Pull</button>
|
|
</div>
|
|
<pre><b>coucou</b></pre>
|
|
</section>
|
|
<section id="magento-preprod">
|
|
<h3>Magento Preprod <span class="label label-important">En attente</span></h3>
|
|
<div class="btn-group">
|
|
<button class="btn"><i class="icon-refresh"></i> Status</button>
|
|
<button class="btn"><i class="icon-arrow-up"></i> Push</button>
|
|
<button class="btn"><i class="icon-arrow-down"></i> Pull</button>
|
|
</div>
|
|
<pre><b>coucou</b></pre>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|