2016-07-08 22:40:29 +00:00
|
|
|
<!DOCTYPE html>
|
2017-07-18 16:27:20 +00:00
|
|
|
<html lang="en">
|
2016-07-08 22:40:29 +00:00
|
|
|
<head>
|
2017-07-18 16:27:20 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="author" content="bradrydzewski">
|
|
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
|
|
|
|
|
|
|
|
<link rel="shortcut icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="shortcut icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
|
|
|
|
<title></title>
|
|
|
|
<script>
|
|
|
|
window.ENV = {};
|
|
|
|
window.ENV.server = window.location.protocol+"//"+window.location.host;
|
|
|
|
{{ if .csrf }}window.ENV.csrf = "{{ .csrf }}"{{ end }}
|
|
|
|
{{ if .user }}
|
|
|
|
window.USER = {{ json .user }};
|
|
|
|
{{ end }}
|
|
|
|
</script>
|
|
|
|
<script src="/bower_components/webcomponentsjs/webcomponents-loader.js"></script>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
|
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
|
|
|
|
<link rel="import" href="/src/drone/drone-app.html">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
html, body {
|
|
|
|
padding:0px;
|
|
|
|
margin:0px;
|
|
|
|
}
|
|
|
|
</style>
|
2016-07-08 22:40:29 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-07-18 16:27:20 +00:00
|
|
|
<drone-app></drone-app>
|
2016-07-08 22:40:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|