forked from twlite/random-sites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 4.03 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 4.03 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="ytdl-core, ytdl, ytdl-core-discord, discord-ytdl-core, ytdl-ffmpeg, ytdl-bassboost, bassboost, ffmpeg">
<meta name="author" content="Snowflake Development ❄️">
<meta name="title" content="Discord YTDL Core">
<meta name=" theme-color" content=" #FFFF00">
<meta name="description" content="Simple ytdl wrapper for discord bots with custom ffmpeg args support.">
<title>Discord YTDL Core</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.9.1/showdown.min.js" integrity="sha256-jl1+DOsSs9uABTKppOJ2GF8kXoc3XQzBtFFyS0i9Xoo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.0/styles/default.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/monokai-sublime.min.css" integrity="sha256-nfuQSmJM/8wWM/S11LZmxszSv2HggH128IqmGD0hny8=" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.0.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/highlight.min.js" integrity="sha256-Uv3H6lx7dJmRfRvH8TH6kJD1TSK1aFcwgx+mdg3epi8=" crossorigin="anonymous"></script>
<script src="./index.js" defer></script>
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">YTDL</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/Snowflake107/discord-ytdl-core">GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://npmjs.com/package/discord-ytdl-core">NPM</a>
</li>
</ul>
</div>
</nav>
<!-- CONTENT -->
<div class="container">
<div class="jumbotron bg-dark text-white">
<center>
<img src="https://nodei.co/npm/discord-ytdl-core.png?downloads=true&downloadRank=true&stars=true" class="rounded img-fluid">
</center>
<h1 class="text-center">Discord YTDL Core</h1>
<p class="text-center">Simple ytdl wrapper for discord bots with custom ffmpeg args support.</p>
<br>
<center>
<a class="btn btn-danger mr-1 rounded" href="https://npmjs.com/package/discord-ytdl-core">NPMJS</a>
<a class="btn btn-dark mr-1 rounded" href="https://github.com/Snowflake107/discord-ytdl-core">GitHub</a>
<a class="btn btn-primary mr-1 rounded" href="https://discord.gg/uqB8kxh">Discord</a>
</center>
<hr><br>
<div class="jumbotron bg-not-quite-black text-white">
<div id="data"></div>
</div>
</div>
</div>
</body>
</html>