-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
60 additions
and
3 deletions.
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 |
---|---|---|
|
@@ -3,12 +3,42 @@ | |
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>YAUTC</title> | ||
<script> | ||
var input = window.location.pathname.split('/'); | ||
var chnl = input[1]; | ||
|
||
if (!chnl) { | ||
chnl = "psp1g"; | ||
} | ||
|
||
document.title = chnl + " - YAUTC"; | ||
</script> | ||
<link rel="stylesheet" type="text/css" href="followList.css"> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
<style> | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap'); | ||
</style> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Color+Emoji" rel="stylesheet"> | ||
<!-- Include Twemoji --> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/twemoji.min.js" crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="emote-container"></div> | ||
|
||
<div id="frame"> | ||
<img id="frame-img" src="" alt="Profile Image"> | ||
<div id="frame-text" class="text"></div> | ||
</div> | ||
|
||
<div class="container"> | ||
<div class="followList"> | ||
<div id="followed"> | ||
|
||
</div> | ||
</div> | ||
<div class="embed"> | ||
<div id="twitch-embed"></div> | ||
<script src="https://player.twitch.tv/js/embed/v1.js"></script> | ||
|
@@ -17,9 +47,6 @@ | |
var input = window.location.pathname.split('/'); | ||
var chnl = input[2]; | ||
|
||
console.log(input) | ||
console.log(chnl) | ||
|
||
if (!chnl) { | ||
chnl = "psp1g"; | ||
} | ||
|
@@ -38,6 +65,36 @@ | |
console.error(error); | ||
} | ||
</script> | ||
<div class="stream-info"> | ||
<div class="stream-title">buh</div> | ||
<div class="stream-viewers">0</div> | ||
</div> | ||
<div class="stream-info"> | ||
<div class="stream-category">buh</div> | ||
<div class="stream-time">4Hours OVERWORKING MONKA</div> | ||
</div> | ||
</div> | ||
<div id="chat" class="chat"> | ||
<div id="display" class="display"> | ||
<div id="ComboDisplay" class="combo-messages"></div> | ||
|
||
<div id="ChatDisplay" class="chat-messages"></div> | ||
|
||
<div id="EmotePicker" class="emote-picker"> | ||
</div> | ||
|
||
<div class="chat-pause"> | ||
</div> | ||
|
||
<div class="chat-box-display"> | ||
<div class="chat-box"> | ||
<input type="text" id="chatInput" placeholder="Type your message..."> | ||
<button id="reloadButton"> | ||
<i class="material-icons">loop</i> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
|