-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (45 loc) · 1.72 KB
/
Copy pathindex.html
File metadata and controls
54 lines (45 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Marina</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<!-- Required by Mozilla's Personna (https://developer.mozilla.org/en-US/Persona/Quick_setup) -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,400italic,500italic,700italic' rel='stylesheet' type='text/css'>
<script type='text/javascript' src='tide/bower_components/amber/support/amber.js'></script>
<script type='text/javascript' src='tide/bower_components/amber/support/requirejs/require.min.js'></script>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/marina.css">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="https://login.persona.org/include.js"></script>
</head>
<body>
<script type='text/javascript'>
require.config({ paths: {
'tide': 'tide/Tide-Amber/src',
'marina': 'Marina-Amber'
}});
require(
[
"amber/devel",
"amber/helpers",
"tide/Tide-Amber-Core",
"tide/Tide-Amber-Exceptions",
"tide/Tide-Amber-Examples",
"tide/Tide-Amber-Tests",
"marina/Marina-Widgets-Core",
"marina/Marina-Widgets-Bootstrap",
"marina/Marina-Widgets-Login",
"marina/Marina-Widgets-Structures",
"marina/Marina-Widgets-Users"
],
function (smalltalk) {
smalltalk.initialize({defaultAmdNamespace: 'marina'});
smalltalk.MRLoginDispatcher._start();
smalltalk.popupHelios();
}
);
</script>
</body>
</html>