-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (68 loc) · 3.85 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
81
82
83
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome to vimpr!</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<script language="javascript">
(function () {
var element = document.createElement('style');
document.getElementsByTagName('head')[0].appendChild(element);
var lang = 'default';
if (/^ja/.test(window.navigator.language))
lang = 'ja';
'default ja'.split(/\s+/).forEach(function (it) {
if (it != lang)
element.sheet.insertRule('.lang-' + it + ' { display: none !important }', 0);
});
}());
</script>
<body>
<div id="contents">
<div class="lang-default">
<h1>Welcome to vimpr!</h1>
<h2>What is this?</h2>
<p>This is the organization for Firefox add-on <a href="http://vimperator.org/" class="external">Vimperator</a> on github.</p>
<p>This organization has the repositories for plugins and color scheme. And anyone can join and commit.</p>
<h2>Who is operating this repo?</h2>
<p>See <a class="internal present" href="contactlist-en.html">contact list</a>.</p>
<h2>I would like to join this repo!!</h2>
<p>Tell us the your github user account. See <a class="internal present" href="contactlist-en.html">contact list</a> to get owner's contact informations and <a class="internal present" href="rules-en.html">rules</a> to get conventions when you pull / push.</p>
<h2>Repositories</h2>
<ul>
<li><a href="https://github.com/vimpr/vimperator-plugins">Plugins</a></li>
<li><a href="https://github.com/vimpr/vimperator-colors">Color schemes</a></li>
<li><a href="https://github.com/vimpr/vimperator-rc">rc files</a></li>
</ul>
<h2>Links</h2>
<ul>
<li><a href="plugins-en.html">Vimperator plugins</a></li>
</ul>
</div>
<div class="lang-ja">
<h1 class="topspace">精力遠点にようこそ!</h1>
<h2>なにこれ ?</h2>
<p>Firefox アドオンの <a href="http://vimperator.org/" class="external">Vimperator</a> に関する github 上の組織です。</p>
<p>この組織には、Vimperator のプラグインやカラースキームのリポジトリがあり、だれでも参加しコミットができます。</p>
<h2>誰がやってるの ?</h2>
<p><a class="internal present" href="contactlist-ja.html">連絡先</a> を見てください。</p>
<h2>このリポジトリ/組織に参加したいんだけど !!</h2>
<p>github のアカウント名を連絡してください。オーナーの連絡先は <a class="internal present" href="contactlist-ja.html">組織オーナーへの連絡先</a> を、 pull / push に関するルールは <a class="internal present" href="rules-ja.html">注意事項</a> を参照してください。</p>
<h2>リポジトリ</h2>
<ul>
<li><a href="https://github.com/vimpr/vimperator-plugins">プラグイン</a></li>
<li><a href="https://github.com/vimpr/vimperator-colors">カラースキーム</a></li>
<li><a href="https://github.com/vimpr/vimperator-rc">rc ファイル</a></li>
</ul>
<h2>その他リンク</h2>
<ul>
<li><a href="plugins-ja.html">Vimperator プラグインリスト</a></li>
<li><a href="https://addons.mozilla.org/ja/firefox/addon/123891/" class="external">Vimperator 日本語ヘルプ</a></li>
<li><a href="beginner-ja.html">はぢめての Vimpr</a></li>
<li><a href="http://wiki.livedoor.jp/shin_yan/" class="external">Vimperator - livedoor Wiki(ウィキ)</a></li>
</ul>
</div>
</div>
</body>
</html>