-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (62 loc) · 2.89 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!--
* Inuktitut Transliterator by Mark Walle, 2016
* This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
* http://creativecommons.org/licenses/by-sa/4.0/
-->
<!DOCTYPE html>
<html ng-app="language">
<head>
<meta charset="utf-8">
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.4/angular.min.js"></script>
<script src="language.js"></script>
<link rel='stylesheet' href="bower_components/angular-socialshare/angular-socialshare.min.css">
<script src="bower_components/angular-socialshare/angular-socialshare.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76229555-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body ng-controller="LanguageController" style="font-family: proxima-nova, "Helvetica Neue", Helvetica, Arial, sans-serif;">
<div class="container">
<h1>Inuktitut Transliterator</h1>
<div ng-controller='LanguageController'>
<label for="usr">ᖃᓕᐅᔮᖅᐸᐃᑦ | Orthography:</label>
<div class="form-group">
<textarea type='text' ng-model='roman' class="form-control inputValue" rows="4" whitelist></textarea>
</div>
<label for="usr">ᖃᓂᐅᔮᖅᐸᐃᑦ | Syllabics:</label>
<p style="white-space: pre-wrap;" class="container-fluid bg-success">{{roman | transliterate}}</p>
<ul class="nav nav-pills">
<li role="presentation">
<a href="#"
socialshare
socialshare-provider="twitter"
socialshare-text="{{roman | transliterate}}"
socialshare-hashtags="inuktitut, nunavut"
socialshare-url="http://transliterator.maakusii.com">
<i class="fa fa-twitter"></i> Tweet</a>
</li>
</ul>
<p></p>
</div>
<p></p>
<label for="usr">Notes:</label>
<div class="text-muted well well-sm">
<small>
<ul class="nav nav-pills">
<li role="presentation"><a class="text-muted" href="https://github.com/maakusii/inuktitut-transliterator"><i class="fa fa-github"></i></span> Github</a></li>
</ul>
Mark Walle, 2016. This work is licensed under the <a class="text-muted" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</a>
</small>
</div>
</div>
<script src="bower_components/angular-socialshare/src/js/angular-socialshare.js"></script>
</body>
</html>