mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-21 05:47:18 +00:00

We currently compile CSS into `build/css`, however we plan to use node-gyp in this project, which can't be configured to build to a directory other than `build`, therefore, the compiled CSS must move somewhere else. Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
58 lines
2.0 KiB
HTML
58 lines
2.0 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="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="./app.js"></script>
|
|
</head>
|
|
<body ng-app="Etcher">
|
|
<header class="section-header" ng-controller="HeaderController as header">
|
|
<button class="button button-link" ng-click="header.openHelpPage()">
|
|
<span class="glyphicon glyphicon-question-sign"></span> Need Help?
|
|
</button>
|
|
|
|
<button class="button button-link" ui-sref="settings" hide-if-state="settings">
|
|
<span class="glyphicon glyphicon-cog"></span>
|
|
</button>
|
|
|
|
<button class="button button-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/etcher.svg"
|
|
width="83px"
|
|
height="13px"
|
|
os-open-external="https://etcher.io?ref=etcher_footer"></svg-icon>
|
|
|
|
<span class="caption">
|
|
IS <span class="caption" os-open-external="https://github.com/resin-io/etcher">AN OPEN SOURCE PROJECT</span> BY
|
|
</span>
|
|
|
|
<svg-icon path="../../../assets/resin.svg"
|
|
width="79px"
|
|
height="23px"
|
|
os-open-external="https://resin.io?ref=etcher"></svg-icon>
|
|
|
|
<span class="caption footer-right"
|
|
manifest-bind="version"
|
|
os-open-external="https://github.com/resin-io/etcher/blob/master/CHANGELOG.md"></span>
|
|
</footer>
|
|
</body>
|
|
</html>
|