You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2012/07/13 08:15:41 UTC

[4/14] git commit: Add rough index.html

Add rough index.html


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/commit/233d9951
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/tree/233d9951
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/diff/233d9951

Branch: refs/heads/hello-cordova
Commit: 233d9951d2a4889d78a89dc53e59ed8e67922d6e
Parents: 3fe9c13
Author: Michael Brooks <mi...@michaelbrooks.ca>
Authored: Thu Jul 12 23:03:57 2012 -0700
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Thu Jul 12 23:03:57 2012 -0700

----------------------------------------------------------------------
 www/css/index.css   |   16 ++++++++++++++++
 www/img/cordova.png |  Bin 0 -> 45273 bytes
 www/index.html      |   16 ++++++++++++++++
 3 files changed, 32 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/233d9951/www/css/index.css
----------------------------------------------------------------------
diff --git a/www/css/index.css b/www/css/index.css
new file mode 100644
index 0000000..89db1c3
--- /dev/null
+++ b/www/css/index.css
@@ -0,0 +1,16 @@
+body {
+    background-color:#EEEEEE;
+    font-family:monospace;
+    font-size:1em;
+}
+
+h1 {
+    background:url(../img/cordova.png) center center no-repeat;
+    background-size:contain;
+    height:200px;
+    width:100%;
+}
+
+p {
+    text-align:center;
+}

http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/233d9951/www/img/cordova.png
----------------------------------------------------------------------
diff --git a/www/img/cordova.png b/www/img/cordova.png
new file mode 100644
index 0000000..5fe7292
Binary files /dev/null and b/www/img/cordova.png differ

http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/233d9951/www/index.html
----------------------------------------------------------------------
diff --git a/www/index.html b/www/index.html
new file mode 100644
index 0000000..9b20e17
--- /dev/null
+++ b/www/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <title>Hello Cordova</title>
+        <link rel="stylesheet" type="text/css" href="css/index.css" />
+        <script type="text/javascript" src="js/index.js"></script>
+        <script type="text/javascript" src="spec/helper.js"></script>
+        <script type="text/javascript">
+            app.initialize();
+        </script>
+    </head>
+    <body>
+        <h1></h1>
+        <p>deviceready... <span id="deviceready">initializing</span></p>
+    </body>
+</html>