etcher/lib/index.html
2016-03-10 14:38:58 -04:00

59 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Etcher</title>
<link rel="stylesheet" type="text/css" href="../node_modules/flexboxgrid/dist/flexboxgrid.css">
<link rel="stylesheet" type="text/css" href="../build/css/main.css">
<link rel="stylesheet" type="text/css" href="css/desktop.css">
<link rel="stylesheet" type="text/css" href="css/angular.css">
<link rel="import" href="components/hero-badge.html">
<link rel="import" href="components/hero-caption.html">
<link rel="import" href="components/hero-icon.html">
<link rel="import" href="components/hero-button.html">
<link rel="import" href="components/hero-progress-button.html">
<link rel="import" href="components/hero-tick.html">
<script>
window._trackJs = {
token: '032448bc3d9e4cffb1e9b43d29d6c142',
application: 'etcher'
};
</script>
<script src="../node_modules/trackjs/tracker.js"></script>
<script src="./browser/app.js"></script>
</head>
<body ng-app="Etcher" style="display: none">
<header class="section-header" ng-controller="NavigationController as navigation">
<button class="btn btn-link" ng-click="navigation.open('https://github.com/resin-io/etcher/blob/master/SUPPORT.md')">
<span class="glyphicon glyphicon-question-sign"></span> Need Help?
</button>
<button class="btn btn-link" ui-sref="settings" ng-hide="navigation.isState('settings')">
<span class="glyphicon glyphicon-cog"></span>
</button>
<button class="btn btn-link" ui-sref="main" ng-show="navigation.isState('settings')">
<span class="glyphicon glyphicon-chevron-left"></span> Back
</button>
</header>
<main class="wrapper" ui-view></main>
<footer class="section-footer row between-xs middle-xs" ng-controller="NavigationController as navigation">
<div class="col-xs">
<div class="box text-left">
<hero-icon path="images/resin.svg" width="85px" height="auto" ng-click="navigation.open('https://resin.io')"></hero-icon>
</div>
</div>
<div class="col-xs">
<div class="box text-right">
<hero-caption><span ng-click="navigation.open('https://github.com/resin-io/etcher')">AN OPEN SOURCE PROJECT</span> BY <span ng-click="navigation.open('https://resin.io')">RESIN.IO</span></hero-caption>
</div>
</div>
</footer>
</body>
</html>