mirror of
https://github.com/kidoman/embd
synced 2025-02-02 08:43:19 +01:00
220 lines
8.5 KiB
HTML
220 lines
8.5 KiB
HTML
|
<!doctype html>
|
||
|
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
|
||
|
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
|
||
|
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
|
||
|
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
|
||
|
<!--[if IE 9]> <html class="no-js ie9" lang="en"> <![endif]-->
|
||
|
<!-- Consider adding an manifest.appcache: h5bp.com/d/Offline -->
|
||
|
<!--[if gt IE 9]><!--> <html class="no-js" lang="en" itemscope="" itemtype="http://schema.org/Product"> <!--<![endif]-->
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
|
||
|
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
|
||
|
More info: h5bp.com/b/378 -->
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
|
|
||
|
<title>EMBD - Superheroic Embedded Programming Framework</title>
|
||
|
<meta name="description" content="EMBD - Superheroic Embedded Programming Framework">
|
||
|
<meta name="keywords" content="embd embedded golang raspberrypi beaglebone black">
|
||
|
<meta name="author" content="humans.txt">
|
||
|
|
||
|
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
|
||
|
|
||
|
<!-- Facebook Metadata /-->
|
||
|
<meta property="fb:page_id" content="">
|
||
|
<meta property="og:image" content="">
|
||
|
<meta property="og:description" content="">
|
||
|
<meta property="og:title" content="">
|
||
|
|
||
|
<!-- Google+ Metadata /-->
|
||
|
<meta itemprop="name" content="">
|
||
|
<meta itemprop="description" content="">
|
||
|
<meta itemprop="image" content="">
|
||
|
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||
|
|
||
|
<!-- We highly recommend you use SASS and write your custom styles in sass/_custom.scss.
|
||
|
However, there is a blank style.css in the css directory should you prefer -->
|
||
|
<link rel="stylesheet" href="css/gumby.css">
|
||
|
<!-- <link rel="stylesheet" href="css/style.css"> -->
|
||
|
|
||
|
<script src="bower_components/gumby/js/libs/modernizr-2.6.2.min.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<!-- START: Site Header -->
|
||
|
<header role="banner" class="site-header parallax" gumby-parallax="0.5">
|
||
|
<div class="row">
|
||
|
<!-- START: Intro -->
|
||
|
<div class="twelve columns header-intro-wrap fadeUpIn">
|
||
|
<h1 class="logo">EMBD<span>.</span></h1>
|
||
|
<p>Superheroic Embedded Programming Framework</p>
|
||
|
<form action="" class="header-signup">
|
||
|
<a href="https://github.com/kidoman/embd" class="btn-side btn-code icon-right icon-github">Code</a>
|
||
|
<a href="#" class="skip btn-side btn-docs" gumby-goto="#demo">Demo</a>
|
||
|
<a href="http://godoc.org/github.com/kidoman/embd" class="btn-side">Docs</a>
|
||
|
|
||
|
<p class="hs-disclaimer"><strong>Star</strong> it, <strong>fork</strong> it, <strong>Contribute</strong> to it.</p>
|
||
|
</form>
|
||
|
<div class="catch-errors-top"></div>
|
||
|
</div>
|
||
|
<!-- /END: Intro -->
|
||
|
</div>
|
||
|
</header>
|
||
|
<!-- /END: Site Header -->
|
||
|
<main role="main" class="site-main-content">
|
||
|
<!-- START: Features Section -->
|
||
|
<section class="site-section section-features" data-target="features">
|
||
|
<!-- START: Features List -->
|
||
|
<ul class="row features-list">
|
||
|
<!-- START: Feature Item -->
|
||
|
<li class="features-item">
|
||
|
<span class="features-circle">
|
||
|
<span class="features-circle-icon">
|
||
|
<i class="icon-heart"></i>
|
||
|
</span>
|
||
|
</span>
|
||
|
<h3>Easy of Use</h3>
|
||
|
<p>The API is intuitive and at the same time, powerful. This allows for some quick prototying whilst ensuring that a majority of the initial codebase naturally flows into the final production mode.</p>
|
||
|
</li>
|
||
|
<!-- /END: Feature Item -->
|
||
|
<!-- START: Feature Item -->
|
||
|
<li class="features-item">
|
||
|
<span class="features-circle">
|
||
|
<span class="features-circle-icon">
|
||
|
<i class="icon-battery"></i>
|
||
|
</span>
|
||
|
</span>
|
||
|
<h3>Batteries Included</h3>
|
||
|
<p>EMBD comes with build in support for both the Raspberry Pi and the BeagleBone Black and with the ability to plugin in support for currently unsupported platforms.</p>
|
||
|
</li>
|
||
|
<!-- /END: Feature Item -->
|
||
|
<!-- START: Feature Item -->
|
||
|
<li class="features-item">
|
||
|
<span class="features-circle">
|
||
|
<span class="features-circle-icon">
|
||
|
<i class="icon-switch"></i>
|
||
|
</span>
|
||
|
</span>
|
||
|
<h3>Build in Go</h3>
|
||
|
<p>Build in Golang, the code is always readable and elegant. The ability to cross-compile your applications from your Mac / PC and directly deploy on the ARM based host is priceless.</p>
|
||
|
</li>
|
||
|
<!-- /END: Feature Item -->
|
||
|
</ul>
|
||
|
<!-- /END: Features List -->
|
||
|
</section>
|
||
|
|
||
|
<section id="demo" class="site-section section-testimonials">
|
||
|
<div class="row">
|
||
|
<div class="video-wrapper">
|
||
|
<iframe width="560" height="315" src="//www.youtube.com/embed/iMXjkZ4B3EM?rel=0;3&autohide=1&showinfo=0" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<!-- /END: Features Section -->
|
||
|
<!-- START: Signup Section -->
|
||
|
<section class="site-section section-signup">
|
||
|
<div class="row">
|
||
|
<div class="twelve columns animate-on-scroll" data-scrollanimation="fadeDownIn">
|
||
|
<h3 class="signup-title">Want to contribute?</h3>
|
||
|
<h4 class="signup-subtitle">File an issue, put up a pull request. Let's make EMBD awesome!</h4>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<!-- START: Signup Form Bottom -->
|
||
|
<div class="eight columns centered">
|
||
|
<div class="signup-form">
|
||
|
<a href="https://github.com/kidoman/embd" class="btn-side animate-on-scroll" data-scrollanimation="fadeInLeft">
|
||
|
<span><i class="icon-heart"></i></span>
|
||
|
Fork EMBD on Github
|
||
|
</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- /END: Signup Form Bottom -->
|
||
|
</div>
|
||
|
</section>
|
||
|
<!-- /END: Signup Section -->
|
||
|
|
||
|
</main>
|
||
|
<!-- START: Site Footer -->
|
||
|
<footer role="contentinfo" class="site-footer">
|
||
|
<div class="row footer-info">
|
||
|
<!-- START: Copyright Notice -->
|
||
|
<div class="six columns">
|
||
|
<p class="footer-copyright">EMBD is developed and maintained by <a href="https://kidoman.io">Karan Misra</a> and the various <a href="https://github.com/kidoman/embd/blob/master/AUTHORS">AUTHORS</a>. Development sponsored by <a href="http://www.thoughtworks.com">ThoughtWorks</a></p>
|
||
|
</div>
|
||
|
<!-- /END: Copyright Notice -->
|
||
|
</div>
|
||
|
</footer>
|
||
|
<!-- /END: Site Footer -->
|
||
|
|
||
|
<!-- Grab Google CDN's jQuery, fall back to local if offline -->
|
||
|
<!-- 2.0 for modern browsers, 1.10 for .oldie -->
|
||
|
<script>
|
||
|
var oldieCheck = Boolean(document.getElementsByTagName('html')[0].className.match(/\soldie\s/g));
|
||
|
if(!oldieCheck) {
|
||
|
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"><\/script>');
|
||
|
} else {
|
||
|
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"><\/script>');
|
||
|
}
|
||
|
</script>
|
||
|
<script>
|
||
|
if(!window.jQuery) {
|
||
|
if(!oldieCheck) {
|
||
|
document.write('<script src="bower_components/gumby/js/libs/jquery-2.0.2.min.js"><\/script>');
|
||
|
} else {
|
||
|
document.write('<script src="bower_components/gumby/js/libs/jquery-1.10.1.min.js"><\/script>');
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<script src="js/gumby.min.js"></script>
|
||
|
|
||
|
<!--
|
||
|
Google's recommended deferred loading of JS
|
||
|
gumby.min.js contains gumby.js, all UI modules and gumby.init.js
|
||
|
|
||
|
Note: If you opt to use this method of defered loading,
|
||
|
ensure that any javascript essential to the initial
|
||
|
display of the page is included separately in a normal
|
||
|
script tag.
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
function downloadJSAtOnload() {
|
||
|
var element = document.createElement("script");
|
||
|
element.src = "js/libs/gumby.min.js";
|
||
|
document.body.appendChild(element);
|
||
|
}
|
||
|
if (window.addEventListener)
|
||
|
window.addEventListener("load", downloadJSAtOnload, false);
|
||
|
else if (window.attachEvent)
|
||
|
window.attachEvent("onload", downloadJSAtOnload);
|
||
|
else window.onload = downloadJSAtOnload;
|
||
|
</script> -->
|
||
|
|
||
|
<script src="bower_components/gumby/js/plugins.js"></script>
|
||
|
<script src="bower_components/gumby/js/main.js"></script>
|
||
|
|
||
|
<script>
|
||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||
|
|
||
|
ga('create', 'UA-44459958-3', 'kidoman.io');
|
||
|
ga('send', 'pageview');
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
|
||
|
chromium.org/developers/how-tos/chrome-frame-getting-started -->
|
||
|
<!--[if lt IE 7 ]>
|
||
|
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
|
||
|
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
|
||
|
<![endif]-->
|
||
|
|
||
|
</body>
|
||
|
</html>
|