-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new file: community.html modified: index.html
- Loading branch information
Showing
2 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link href="https://vjs.zencdn.net/8.16.1/video-js.css" rel="stylesheet" /> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Community | FreakyTube</title> | ||
<!-- If you'd like to support IE8 (for Video.js versions prior to v7) --> | ||
<script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script> | ||
<!-- thanks https://videojs.com/getting-started <3--> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet"> | ||
<meta content="FreakyTube | Community" property="og:title" /> | ||
<meta content="The place for freakybob-related videos!" property="og:description" /> | ||
<meta content="https://videos.freakybob.site/community" property="og:url" /> | ||
<meta content="https://embed.com/embedimage.png" property="og:image" /> | ||
<meta content="#43B581" data-react-helmet="true" name="theme-color" /> | ||
<style> | ||
* { | ||
font-family: "Noto Sans", sans-serif; | ||
} | ||
#loading { | ||
position: fixed; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
height: 100%; | ||
top: 0; | ||
left: 0; | ||
opacity: 0.7; | ||
background-color: #fff; | ||
z-index: 99; | ||
} | ||
|
||
#loading-image { | ||
z-index: 100; | ||
} | ||
.logo { | ||
width: 180px; | ||
height: auto; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<a href="index"><img class="logo" src="logo.png"></a> | ||
<h1>Welcome to the Community!</h1> | ||
<p>To submit a video, join the <a href="https://discord.gg/T9z27hv7FN">Discord server</a> and make a thread in #video-submissions!</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters