-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (72 loc) · 3.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-flat.min.css" />
<link rel="stylesheet" href="css/bootstrap-flat-extras.min.css" />
<link rel="stylesheet" href="css/bootstrap-extensions.css" />
<title>Hasami</title>
</head>
<body>
<!-- Static navbar -->
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Hasami</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="verb.html">Verb</a>
</li>
<li><a href="adjective.html">Adjective</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="about.html">About</a>
</li>
<li><a href="https://github.com/zoutachi/hasami">Github</a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
<div class="bs-masthead">
<div class="container">
<h1>Home</h1>
<p class="lead">ホーム</p>
</div>
</div>
<br/>
<div class="container">
<p>Hasami as of now is a set of automated tools for conjugating both verbs and adjectives in Japanese. </p>
<p class="text-left">Select a tool from the list below, or alternatively from the navigation bar above.
</p>
<p><a href=verb.html>Japanese Verb Conjugator</a>
</p>
<p><a href=adjective.html>Japanese Adjective Conjugator</a>
</p>
<p>Things to keep in mind:</p>
<ul>
<li>No Japanese IME is needed, as there is one built in to the site. If using a system IME, make sure that kanji is not used.</li>
<li>All conjugations are automatically generated. It should not be assumed that all conjugations are correct or commonly used.</li>
<li>The <a href="about.html"> About</a> page contains a few alternative tools that are probably more reliable and useful than this one.</li>
</ul>
</div>
<div class="footer">
<div class="container">
<p class="text-muted">This site is licensed under the <a href="http://opensource.org/licenses/MIT">MIT License.</a>
</p>
</div>
</div>
<script data-main="js/index-main" src="js/require.js"></script>
</body>
</html>