-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (55 loc) · 2.19 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
<!DOCTYPE html>
<!-- vim: set sts=2 sw=2 et tw=0 : -->
<html lang="en">
<meta charset="UTF-8">
<head>
<title>(Beta) Bharati Braille Converter</title>
<meta name="description" content="A Bengali, Hindi, Gujarati, Marathi, Sanskrit, Tamil, Telugu to Bharati Braille converter">
<link rel="stylesheet" href="static/index.css" lang="text/css" media="screen" />
<link rel="stylesheet" href="static/braille-font.css" lang="text/css" media="screen" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div id="wrapper">
<div id="content">
<div id="header">
<div id="heading"><h1>Bharati Braille Converter</h1></div>
<div id="about"><h1><a href="about.html">About</a></h1></div>
</div>
<div id="text">
<div id="input">
<form action="" method="POST">
<div id="input_area">
<!-- BEGIN: Hack to make the textarea auto-resize -->
<div class="expandingArea">
<pre><span></span><br></pre>
<textarea name="devanagari" autofocus placeholder="Enter Bengali/Hindi/Gujarati/Marathi/Tamil/Telugu text here">{{input_text}}</textarea>
</div>
<!-- Comment-out the form autoresizing on IE8 and lower -->
<comment>
<script type="text/javascript" src="js/expandingarea.js"></script>
</script>
</comment>
<!-- END: Hack to make the textarea auto-resize -->
</div>
<p id="submit"><input type="submit" value="Submit"/> →</p>
</form>
</div>
<div id="output">
<!-- This div is white-space: pre; so be careful about whitespace inside it -->
<div id="output_area"><span id="warnings">{{!warnings}}</span><span id="braille_output">{{braille}}</span></div>
<p id="fake_submit"> </p>
</div>
</div>
</div>
<!-- This exists purely for the sticky footer. Keep it the last div. -->
<div id="push"></div>
</div>
<!-- TODO: Remove this. -->
<div id="footer">
<div id="footer_content">
<p id="madeby"> </p>
</div>
</div>
</body>
</html>