mirror of
https://github.com/ascribe/onion.git
synced 2024-11-14 17:15:08 +01:00
23 lines
932 B
HTML
23 lines
932 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>ascribe</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="//brick.a.ssl.fastly.net/Source+Sans+Pro:400,600,700,900">
|
|
<link rel="stylesheet" href="<%= BASE_URL %>static/css/main.css">
|
|
<link rel="stylesheet" href="<%= BASE_URL %>static/css/maps/main.css.map">
|
|
<script>
|
|
window.BASE_URL = '<%= BASE_URL %>';
|
|
window.API_ENDPOINT = '<%= API_ENDPOINT %>';
|
|
<% DEBUG && print('window.DEBUG = true'); %>
|
|
<% DEBUG && print('window.CREDENTIALS = \'' + CREDENTIALS + '\''); %>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="main" class="container"></div>
|
|
<script src="<%= BASE_URL %>static/js/app.js"></script>
|
|
</body>
|
|
</html>
|