-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
137 lines (137 loc) · 6.33 KB
/
layout.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
^^ head ^^
<meta name="theme-color" content="#6E3DD9">
<link rel="icon" href="/img/favicon.ico">
</head>
<body>
<header>
<a href="/" class="logo">RT Discord Bot</a>
<div class="margin"></div>
<label class="menu">
<input type="checkbox">
<div class="menu-btn">
<div></div>
<div></div>
<div></div>
</div>
<div class="menu-list">
<a href="/news.html" class="m">ニュース</a>
<a href="/help.html" class="m">ヘルプ</a>
<a href="https://discord.gg/ugMGw5w" class="m">サポートサーバー</a>
<a href="https://discord.com/api/oauth2/authorize?client_id=716496407212589087&permissions=8&redirect_uri=https%3A%2F%2Frt-bot.com&response_type=code&scope=bot%20applications.commands"
class="m">導入する</a>
<a href="/api/account/login" class="m login">ログイン</a>
<span class="m account">
<a class="name"></a>
<div class="dropdown">
<a href="/dashboard">ダッシュボード</a>
<a href="/api/account/logout">ログアウト</a>
</div>
</span>
</div>
</label>
</header>
^^ content ^^
<footer>
<div class="menu">
<a href="/">
<img src="/img/icon.png">
</a>
<div class="menu-list">
<div class="item">
<div class="m-title">メイン</div>
<div>
<a href="/news.html">ニュース</a>
</div>
<div>
<a href="/help.html">ヘルプ</a>
</div>
<div>
<a href="/credit.html">クレジット</a>
</div>
<div>
<a href="/terms.html">利用規約</a>
</div>
<div>
<a href="/privacy.html">プライバシーポリシー</a>
</div>
<div>
<a href="/status.html">ステータス</a>
</div>
</div>
<div class="item">
<div class="m-title">ヘルプ</div>
<div>
<a href="/help.html?g=bot">Bot関連</a>
</div>
<div>
<a href="/help.html?g=server-tool">サーバー(ツール)</a>
</div>
<div>
<a href="/help.html?g=server-panel">サーバー(パネル)</a>
</div>
<div>
<a href="/help.html?g=server-safety">サーバー(安全)</a>
</div>
<div>
<a href="/help.html?g=server-useful">サーバー(便利)</a>
</div>
<div>
<a href="/help.html?g=individual">個人</a>
</div>
<div>
<a href="/help.html?g=entertainment">娯楽</a>
</div>
<div>
<a href="/help.html?g=chplugin">チャンネルプラグイン</a>
</div>
<div>
<a href="/help.html?g=music">音楽再生</a>
</div>
<div>
<a href="/help.html?g=other">その他</a>
</div>
</div>
<div class="item">
<div class="m-title">リンク</div>
<div>
<a href="https://discord.gg/ugMGw5w" target="_blank">サポートサーバー</a>
</div>
<div>
<a href="https://discord.com/api/oauth2/authorize?client_id=716496407212589087&permissions=8&redirect_uri=https%3A%2F%2Frt-bot.com&response_type=code&scope=bot%20applications.commands"
target="_blank">導入URL</a>
</div>
<div>
<a href="https://twitter.com/RtDiscordBot" target="_blank">Twitter</a>
</div>
<div>
<a href="https://github.com/RT-Team" target="_blank">GitHub</a>
</div>
</div>
<div class="item">
<div class="m-title">ダッシュボード</div>
<div>
<a href="/dashboard">ホーム</a>
</div>
<div>
<a href="/dashboard">設定</a>
</div>
<div>
<a href="/api/account/login">ログイン</a>
</div>
<div>
<a href="/api/account/logout">ログアウト</a>
</div>
</div>
</div>
</div>
<div class="copyright">Copyright © 2020-2021 RT-Team. All Rights Reserved.</div>
</footer>
</body>
</html>