-
Notifications
You must be signed in to change notification settings - Fork 6
/
initindex.html
69 lines (63 loc) · 3.15 KB
/
initindex.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<meta http-equiv="refresh" content="5" />
<title>Your server is building</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> </head>
<style>
.jumbotron { background-color: {{ buildtitlecolor }} ; }
</style>
<body>
<div class="container">
<div class="header">
<!--<ul class="nav nav-pills pull-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>-->
<h3 class="text-muted"><a href="http://github.com/stevage/saltymill">Saltymill</a></h3>
</div>
<div class="jumbotron col-lg-10">
<h1>{{ buildtitle }}</h1>
<p class="lead">{{ buildsubtitle }}</p>
</div>
<div class="row marketing">
<div class="col-lg-5">
<h4>Services</h4>
<p>Your new server will contain:</p>
<dl>
<dt><a href="http://{{grains.fqdn}}/tilemill">http://{{grains.fqdn}}/tilemill</a></dt>
<dd>TileMill, an excellent map creation studio. We've loaded some OpenStreetMap data, a water polygon shapefile and some fonts to help get you started.</dd>
<dt><a href="http://{{grains.fqdn}}/osrm">http://{{grains.fqdn}}/osrm</a></dd>
<dd> OSRM (the Open Source Routing Machine) - a simple map + routing website, using the data you've downloaded.</dd>
</dl>
<h4>Configuration</h4>
<table class="table table-condensed table-striped">
<tr><td>OSM extract source</td><td><small>{{ pillar.tm_osmsourceurl|default('N/A') }}</small></td></tr>
{% if pillar.tm_osrminstances is defined %}{% for instance in pillar.tm_osrminstances %}
<tr><td>OSRM routing profile</td><td><small>{{ instance.name }}, {{instance.profile}}, {{instance.port}}</small></td></tr>
{% endfor %}{% endif %}
<tr><td>TileMill sample projects</td><td><small>{{ pillar.tm_projects|default('N/A')|join(', ') }}</small></td></tr>
<tr><td>TileMill development version</td><td><small>{{ pillar.tm_dev|default('No')}}</small></td></tr>
<tr><td>TileMill fonts installed</td><td><small>{{ pillar.tm_fonts|default('N/A')|join(', ') }}</small></td></tr>
</table>
</div>
<div class="col-lg-5">
<h4>Progress</h4>
<pre>{# Dammit, I really want to do this but I don't think it will work {% include 'buildlog.html' %} #}<!-- logend -->
</pre>
</div>
</div>
</div>
</body>
</html>