etcher/lib/index.html
Juan Cruz Viotti 0dcc7b22b8 Implement SVGIcon Angular directive (#324)
* Inherit current scope in osOpenExternal directive

This directive attempts to create a new isolated scope, which leads the
errors when using this directive on top of another directive in the same
element.

Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>

* Implement SVGIcon Angular directive

This directive replaces part of `hero-icon`, the old Polymer component.

Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
2016-04-13 16:14:46 -04:00

54 lines
1.8 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">
<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">
<button class="btn btn-link" os-open-external="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" hide-if-state="settings">
<span class="glyphicon glyphicon-cog"></span>
</button>
<button class="btn btn-link" ui-sref="main" show-if-state="settings">
<span class="glyphicon glyphicon-chevron-left"></span> Back
</button>
</header>
<main class="wrapper" ui-view></main>
<footer class="section-footer">
<svg-icon path="../../../../../assets/images/etcher.svg"
width="83px"
height="13px"
os-open-external="http://etcher.io"></svg-icon>
<span class="caption">
IS <span os-open-external="https://github.com/resin-io/etcher">AN OPEN SOURCE PROJECT</span> BY
</span>
<svg-icon path="../../../../../assets/images/resin.svg"
width="79px"
height="23px"
os-open-external="https://resin.io"></svg-icon>
</footer>
</body>
</html>