-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
160 lines (150 loc) · 5.34 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Disnake - A Discord API Wrapper written in Python</title>
<link rel="icon" type="image/x-icon" href="assets/disnake-logo.ico" />
<!-- Primary Meta Tags -->
<meta
name="title"
content="Disnake - A Discord API Wrapper written in Python"
/>
<meta
name="description"
content="A modern, easy to use, feature-rich, and async API wrapper for Discord written in Python."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://disnake.dev/" />
<meta
property="og:title"
content="Disnake - A Discord API Wrapper written in Python"
/>
<meta
property="og:description"
content="A modern, easy to use, feature-rich, and async API wrapper for Discord written in Python."
/>
<meta property="og:image" content="assets/disnake-banner-thin.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://disnake.dev/" />
<meta
property="twitter:title"
content="Disnake - A Discord API Wrapper written in Python"
/>
<meta
property="twitter:description"
content="A modern, easy to use, feature-rich, and async API wrapper for Discord written in Python."
/>
<meta property="twitter:image" content="/assets/disnake-banner-thin.png" />
<meta
name="description"
content="Disnake - A Discord API Wrapper written in Python"
/>
<!-- Fonts -->
<link rel="stylesheet" href="https://rsms.me/inter/inter-ui.css" />
<!-- Stylesheets -->
<link rel="stylesheet" href="/css/default.css" id="theme-color" />
</head>
<body>
<!-- Navigation -->
<section class="smart-scroll">
<div class="container-fluid">
<nav class="navbar navbar-expand-md navbar-dark">
<a class="navbar-brand heading-black" href="#">
<img src="assets/disnake-logo.png" class="navbar-img" />
Disnake
</a>
<button
class="navbar-toggler navbar-toggler-right border-0"
type="button"
data-toggle="collapse"
data-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle Navigation"
>
<span data-feather="grid"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a
class="nav-link page-scroll"
href="https://discord.gg/disnake"
target="_blank"
>Discord</a
>
</li>
<li class="nav-item">
<a class="nav-link page-scroll" href="https://docs.disnake.dev/"
>Documentation</a
>
</li>
<li class="nav-item">
<a
class="nav-link page-scroll"
href="https://github.com/DisnakeDev/disnake/issues"
target="_blank"
>Issues</a
>
</li>
<li class="nav-item">
<a
class="nav-link page-scroll"
href="https://guide.disnake.dev/"
>Guide</a
>
</li>
</ul>
</div>
</nav>
</div>
</section>
<!-- Hero Header -->
<section class="py-7 py-md-0 bg-hero" id="home">
<div class="container">
<div class="row vh-md-100">
<div class="col-md-8 col-sm-10 col-12 mx-auto my-auto text-center">
<h1 class="heading-black typewriter">
<a href="https://pypi.org/project/disnake/" target="_blank"
><code>pip install disnake</code></a
>
</h1>
<p class="lead py-3">
A modern, easy to use, feature-rich, and async API wrapper
for Discord written in Python.
</p>
<a href="https://github.com/DisnakeDev/disnake" target="blank">
<button
class="
btn btn-primary
d-inline-flex
flex-row
align-items-center
"
>
Visit Github
<em class="ml-2" data-feather="arrow-right"></em>
</button>
</a>
<noscript>
<p style="text-align:center;padding:2rem">
JavaScript is disabled in your browser. It is recommended that you enable it for a better user experience. Here are the <a href="https://www.enable-javascript.com/">instructions to enable JavaScript.</a>
</p>
</noscript>
</div>
</div>
</div>
</section>
<!-- Javascripts -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.7.3/feather.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>