onion/index.html

35 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2015-05-13 16:26:12 +02:00
<!doctype html>
2015-06-23 14:15:47 +02:00
2015-05-13 16:26:12 +02:00
<html>
<head>
2015-10-22 16:51:49 +02:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#D3DEE4">
2015-05-13 16:26:12 +02:00
<title>ascribe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2015-06-09 17:53:44 +02:00
<link rel="stylesheet" href="<%= BASE_URL %>static/css/main.css">
<% DEBUG && print('<link rel="stylesheet" href="' + BASE_URL + 'static/css/maps/main.css.map">') %>
2015-07-14 18:34:46 +02:00
<!-- This is for sluice -->
2015-07-15 18:47:11 +02:00
<link href='//fonts.googleapis.com/css?family=Nunito:400,700,300' rel='stylesheet' type='text/css'>
2015-06-09 17:53:44 +02:00
<script>
window.BASE_URL = '<%= BASE_URL %>';
window.SERVER_URL = '<%= SERVER_URL %>';
2015-06-24 18:02:32 +02:00
window.API_ENDPOINT = '<%= API_ENDPOINT %>';
2015-06-10 17:28:36 +02:00
<% DEBUG && print('window.DEBUG = true'); %>
<% DEBUG && print('window.CREDENTIALS = \'' + CREDENTIALS + '\''); %>
2015-06-09 17:53:44 +02:00
</script>
2015-10-08 11:12:15 +02:00
<!-- Typekit gibson font -->
<link rel="stylesheet" href="https://use.typekit.net/gma2yhj.css">
2015-05-13 16:26:12 +02:00
</head>
<body>
2015-07-13 14:29:20 +02:00
<div id="main"></div>
2015-07-14 21:47:14 +02:00
<!-- actual app -->
2015-06-09 17:53:44 +02:00
<script src="<%= BASE_URL %>static/js/app.js"></script>
2015-05-13 16:26:12 +02:00
</body>
</html>