forked from harish-io/Impressionist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (45 loc) · 1.8 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
<html lang="en">
<head>
<meta charset="utf-8" />
<title>impressionist - v 0.0.1.0</title>
<link href='http://fonts.googleapis.com/css?family=Armata' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Lustria' rel='stylesheet' type='text/css'>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" />
<script src="scripts/jquery.js"></script>
<link href="css/landingpage.css" rel="stylesheet" />
<script>
$(document).ready(
function(e)
{
if(Utilities.isSupportedUA())
{
//alert("Webkit");
$("#errorMessage").css("visibility", "hidden");
$("#goBtn").css("visibility","visible");
}
else
{
$("#errorMessage").css("visibility", "visible");
$("#goBtn").css("visibility","hidden");
}
}
)
</script>
</head>
<body>
<div class="hero-unit" id="container">
<h1>Impressionist<sup id="smallsup">0.1</sup></h1>
<p></p>
<p class="descr" id="moz">Impressionist is a WSIWYG (like) tool to create <a href="http://bartaz.github.com/impress.js/">impress.js</a> presentations. This is an early preview and has stability issues. Please do help me fix them by logging the issues you find at impressionist project on <a href="https://github.com/hsivaramx/Impressionist">github.</a> <span id="errorMessage">
At the moment, this preview of Impressionist works only with webkit based browsers (Chrome / Safari). Apologize the inconvenience.
</span></p>
<p class="descr">
A project by Harish Sivaramakrishnan (<a href="http://www.twitter.com/hsivaram">@hsivaram</a>).
<p>
<a class="btn btn-info btn-large" id="goBtn" href="app.html">
Create Presentation
</a>
</p>
</div>
<script type="text/javascript" src="scripts/utilities.js"></script>
</body>