forked from jaredsohn/mutetab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="js/jquery-2.0.0.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/main.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<style type="text/css">
.container-narrow {
margin: 0 auto;
max-width: 700px;
padding: 20px;
}
.container-narrow > hr {
margin: 30px 0;
}
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 50px;
line-height: 1;
}
p {
font-size: 1.2em;
}
</style>
</head>
<body>
<div class="navbar navbar-static-top navbar-inverse">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="#">Example app</a>
</div>
</div>
</div>
<div class="container-narrow">
<div class="jumbotron">
<h1>Hello, world!</h1>
<p class="lead">Congratulations on creating a new Trigger.io App.</p>
<p class="lead">This is a simple example project to help you get started, you can either edit this file, or replace it entirely with your own code.</p>
</div>
<hr>
<div class="row-fluid">
<div class="span12">
<h4>Getting started</h4>
<p>To get started with Forge the best place to look is our <a href="https://trigger.io/docs/current/index.html">documentation</a>. We also regularly post tips and updates to our <a href="http://trigger.io/cross-platform-application-development-blog/">blog</a>.</p>
<h4>Next steps</h4>
<p>Look through our <a href="https://trigger.io/docs/current/getting_started/tutorial/index.html">tutorials</a>, view our wide range of <a href="https://trigger.io/docs/current/api/modules/index.html">available modules</a>, or consider writing a <a href="https://trigger.io/docs/current/api/native_plugins/index.html">native plugin</a> of your own.</p>
<h4>Getting help</h4>
<p>If you run into problems you can ask a question on our <a href="http://stackoverflow.com/questions/tagged/trigger.io">StackOverflow tag</a>, or <a href="mailto:[email protected]">send us an email</a>.</p>
</div>
</div>
</div>
</body>
</html>