-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
52 lines (45 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<title>Uniter</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/base.css">
</head>
<body>
<article>
<heading>
<ul class="nav nav-pills pull-right">
<li class="active"><a href="">Home</a></li>
<li><a href="demo/interactive.html">Demo</a></li>
</ul>
<h1 class="text-muted">Uniter</h1>
</heading>
<section class="jumbotron">
<h1>Run PHP in JavaScript.</h1>
<p class="lead">Execute PHP in real-time in the browser.</p>
<p><a class="btn btn-lg btn-success" href="demo/interactive.html" role="button">Interactive demo</a></p>
</section>
<section class="row marketing">
<h1>What can I use it for?</h4>
<div class="col-lg-6">
<h2>For developers</h2>
<ul>
<li>Run your PHP-based data validators client-side.</li>
<li>Reuse your PHP components (like dependency injection containers) client-side.</li>
</ul>
</div>
<div class="col-lg-6">
<h2>For businesses</h2>
<ul>
<li>Utilize your existing PHP engineering strength to write client-side PHP for a unified stack.</li>
</ul>
</div>
</section>
</article>
<a href="https://github.com/asmblah/uniter">
<img style="position: absolute; top: 0; left: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_left_green_007200.png" alt="Fork me on GitHub">
</a>
<script src="//code.jquery.com/jquery.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</body>
</html>