summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Mitchell <jack@embed.me.uk>2014-08-24 14:39:24 +0100
committerJack Mitchell <jack@embed.me.uk>2014-08-24 14:39:24 +0100
commit30734aefffa8207f8170440c2b3aeebb59134abb (patch)
tree5d053755fa4d275dfbc9528a91d197d315e316f3
parent48abcc734ec954008982b4b40cef0271eaaae6be (diff)
downloadopenembedded-web-frontpages-30734aefffa8207f8170440c2b3aeebb59134abb.tar.gz
add other skeleton pagesHEADmaster
-rw-r--r--community.php53
-rw-r--r--documentation.php53
-rw-r--r--download.php53
-rw-r--r--faq.php53
4 files changed, 212 insertions, 0 deletions
diff --git a/community.php b/community.php
new file mode 100644
index 0000000..0e2e7e4
--- /dev/null
+++ b/community.php
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>OpenEmbedded.org</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <!-- Bootstrap -->
+ <link href="bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
+
+ <!-- Custom CSS -->
+ <link href="css/navbar.css" rel="stylesheet">
+ <link href="css/custom.css" rel="stylesheet">
+
+ <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
+ <![endif]-->
+ </head>
+ <body>
+
+ <div class="container">
+
+ <?php include("includes/navbar.php"); ?>
+
+ <div class="row">
+ <div class="col-md-12">
+ <p>Community Area</p>
+ </div>
+ </div>
+
+ <div class="row">
+ <div class="col-md-12">
+ <hr>
+ <p class="text-center text-muted">OpenEmbedded 2013</p>
+ </div>
+ </div>
+ </div>
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="https://code.jquery.com/jquery.js"></script>
+ <!-- Include all compiled plugins (below), or include individual files as needed -->
+ <script src="bootstrap/dist/js/bootstrap.min.js"></script>
+ <script>
+ // Hack to get the panels the same height as the row
+ boxes = $('.panel');
+ maxHeight = Math.max.apply(
+ Math, boxes.map(function() {
+ return $(this).height();
+ }).get());
+ boxes.height(maxHeight);
+ </script>
+ </body>
+</html>
diff --git a/documentation.php b/documentation.php
new file mode 100644
index 0000000..18cbed2
--- /dev/null
+++ b/documentation.php
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>OpenEmbedded.org</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <!-- Bootstrap -->
+ <link href="bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
+
+ <!-- Custom CSS -->
+ <link href="css/navbar.css" rel="stylesheet">
+ <link href="css/custom.css" rel="stylesheet">
+
+ <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
+ <![endif]-->
+ </head>
+ <body>
+
+ <div class="container">
+
+ <?php include("includes/navbar.php"); ?>
+
+ <div class="row">
+ <div class="col-md-12">
+ <p>Documentation Area</p>
+ </div>
+ </div>
+
+ <div class="row">
+ <div class="col-md-12">
+ <hr>
+ <p class="text-center text-muted">OpenEmbedded 2013</p>
+ </div>
+ </div>
+ </div>
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="https://code.jquery.com/jquery.js"></script>
+ <!-- Include all compiled plugins (below), or include individual files as needed -->
+ <script src="bootstrap/dist/js/bootstrap.min.js"></script>
+ <script>
+ // Hack to get the panels the same height as the row
+ boxes = $('.panel');
+ maxHeight = Math.max.apply(
+ Math, boxes.map(function() {
+ return $(this).height();
+ }).get());
+ boxes.height(maxHeight);
+ </script>
+ </body>
+</html>
diff --git a/download.php b/download.php
new file mode 100644
index 0000000..7cde711
--- /dev/null
+++ b/download.php
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>OpenEmbedded.org</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <!-- Bootstrap -->
+ <link href="bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
+
+ <!-- Custom CSS -->
+ <link href="css/navbar.css" rel="stylesheet">
+ <link href="css/custom.css" rel="stylesheet">
+
+ <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
+ <![endif]-->
+ </head>
+ <body>
+
+ <div class="container">
+
+ <?php include("includes/navbar.php"); ?>
+
+ <div class="row">
+ <div class="col-md-12">
+ <p>Download Area</p>
+ </div>
+ </div>
+
+ <div class="row">
+ <div class="col-md-12">
+ <hr>
+ <p class="text-center text-muted">OpenEmbedded 2013</p>
+ </div>
+ </div>
+ </div>
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="https://code.jquery.com/jquery.js"></script>
+ <!-- Include all compiled plugins (below), or include individual files as needed -->
+ <script src="bootstrap/dist/js/bootstrap.min.js"></script>
+ <script>
+ // Hack to get the panels the same height as the row
+ boxes = $('.panel');
+ maxHeight = Math.max.apply(
+ Math, boxes.map(function() {
+ return $(this).height();
+ }).get());
+ boxes.height(maxHeight);
+ </script>
+ </body>
+</html>
diff --git a/faq.php b/faq.php
new file mode 100644
index 0000000..342c394
--- /dev/null
+++ b/faq.php
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>OpenEmbedded.org</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <!-- Bootstrap -->
+ <link href="bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
+
+ <!-- Custom CSS -->
+ <link href="css/navbar.css" rel="stylesheet">
+ <link href="css/custom.css" rel="stylesheet">
+
+ <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
+ <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
+ <!--[if lt IE 9]>
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
+ <![endif]-->
+ </head>
+ <body>
+
+ <div class="container">
+
+ <?php include("includes/navbar.php"); ?>
+
+ <div class="row">
+ <div class="col-md-12">
+ <p>FAQ Area</p>
+ </div>
+ </div>
+
+ <div class="row">
+ <div class="col-md-12">
+ <hr>
+ <p class="text-center text-muted">OpenEmbedded 2013</p>
+ </div>
+ </div>
+ </div>
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="https://code.jquery.com/jquery.js"></script>
+ <!-- Include all compiled plugins (below), or include individual files as needed -->
+ <script src="bootstrap/dist/js/bootstrap.min.js"></script>
+ <script>
+ // Hack to get the panels the same height as the row
+ boxes = $('.panel');
+ maxHeight = Math.max.apply(
+ Math, boxes.map(function() {
+ return $(this).height();
+ }).get());
+ boxes.height(maxHeight);
+ </script>
+ </body>
+</html>