forked from muut/language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
49 lines (36 loc) · 1.22 KB
/
test.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Muut Language</title>
<!-- (1) Optimize for mobile versions -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- (1) Muut look and feel -->
<link rel="stylesheet" href="http://cdn.moot.it/latest/moot.css"/>
<!-- (4) Custom CSS -->
<style>
body {
font-family: "myriad pro", tahoma, verdana, arial, sans-serif;
font-size: 18px; margin: 0; padding: 0;
}
header { text-align: center; background-color: #262626; padding: .6em; color: #eee; font-size: 14px;}
header a { color: yellow; text-decoration: none;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- <script src="../ui/dist/moot.nolang.min.js"></script> -->
<script src="http://cdn.moot.it/latest/moot.nolang.min.js"></script>
<script>
document.write('<script src=' + (location.search.substring(1) || 'fi') +'.js><\/script>');
</script>
</head>
<body>
<div id="content">
<header>
Please provide your language on query string. For example:
<a href="?fi">Finnish</a>
<a href="?ch">Chinese</a>
</header>
<a class="moot" href="https://playground.moot.it/goma"></a>
</div>
</body>
</html>