-
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.
Formatted pages, As well as added readme to home
- Loading branch information
tay
committed
Sep 20, 2024
1 parent
8b53390
commit 34a7045
Showing
15 changed files
with
544 additions
and
506 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 |
---|---|---|
@@ -1,56 +1,63 @@ | ||
<link rel="stylesheet" href="/assets/css/about/style.css"> | ||
<main> | ||
<div class="about"> | ||
<div> | ||
<body> | ||
<div class="content"> | ||
<h1>Hiya, Call me Tee!</h1> | ||
<iframe width="570" height="230" src="https://lanyard.cnrad.dev/api/1050531216589332581" frameborder="0" allowfullscreen style="margin-left: 35px;"></iframe> | ||
<div id="images"> | ||
<a href="https://discord.com/users/1050531216589332581" target="_blank"><img src="/assets/imgs/discord.png" class="social-logo" alt="Discord"></a> | ||
<a href="https://github.com/tayrp" target="_blank"><img src="/assets/imgs/github.png" class="social-logo" alt="Github"></a> | ||
<a href="https://discord.gg/gjypyNkPPp" target="_blank"><img src="/assets/imgs/haven.png" class="social-logo" alt="Haven"></a> | ||
<a href="https://www.last.fm/user/MystixMew" target="_blank"><img src="/assets/imgs/lastfm.png" class="social-logo" alt="Last.fm"></a> | ||
<a href="https://www.youtube.com/@MystixMew" target="_blank"><img src="/assets/imgs/youtube.png" class="social-logo" alt="YouTube"></a> | ||
<!-- <a class="btn btn-link-3" button id="aboutpauseBtn" onclick="togglePause()">⏸️</a></p> --> | ||
</div> | ||
</div> | ||
<video autoplay loop id="aboutvideo"> | ||
<source src="https://index.havenmc.org/website/assets/mp4/fightsong.mp4" type="video/mp4"> | ||
This browser does not support HTML5 video or the server is offline. | ||
</video> | ||
|
||
<label for="volumeControl">Volume:</label> | ||
<input type="range" id="volumeControl" min="0" max="1" step="0.01" value="0.01"> | ||
<span id="volumePercentage">1%</span> | ||
|
||
<script> | ||
var video = document.getElementById("aboutvideo"); | ||
var btn = document.getElementById("aboutpauseBtn"); | ||
var volumeControl = document.getElementById("volumeControl"); | ||
var volumePercentage = document.getElementById("volumePercentage"); | ||
<link rel="stylesheet" href="/assets/css/about/style.css"> | ||
<main> | ||
<div class="about"> | ||
<div> | ||
|
||
// Initialize the video volume and percentage display | ||
video.volume = volumeControl.value; // Set initial volume based on the slider value | ||
volumePercentage.innerHTML = Math.round(volumeControl.value * 100) + "%"; // Set initial percentage | ||
<body> | ||
<div class="content"> | ||
<h1>Hiya, Call me Tee!</h1> | ||
<iframe width="570" height="230" src="https://lanyard.cnrad.dev/api/1050531216589332581" | ||
frameborder="0" allowfullscreen style="margin-left: 35px;"></iframe> | ||
<div id="images"> | ||
<a href="https://discord.com/users/1050531216589332581" target="_blank"><img | ||
src="/assets/imgs/discord.png" class="social-logo" alt="Discord"></a> | ||
<a href="https://github.com/tayrp" target="_blank"><img src="/assets/imgs/github.png" | ||
class="social-logo" alt="Github"></a> | ||
<a href="https://discord.gg/gjypyNkPPp" target="_blank"><img src="/assets/imgs/haven.png" | ||
class="social-logo" alt="Haven"></a> | ||
<a href="https://www.last.fm/user/MystixMew" target="_blank"><img src="/assets/imgs/lastfm.png" | ||
class="social-logo" alt="Last.fm"></a> | ||
<a href="https://www.youtube.com/@MystixMew" target="_blank"><img src="/assets/imgs/youtube.png" | ||
class="social-logo" alt="YouTube"></a> | ||
<!-- <a class="btn btn-link-3" button id="aboutpauseBtn" onclick="togglePause()">⏸️</a></p> --> | ||
</div> | ||
</div> | ||
<video autoplay loop id="aboutvideo"> | ||
<source src="https://index.havenmc.org/website/assets/mp4/fightsong.mp4" type="video/mp4"> | ||
This browser does not support HTML5 video or the server is offline. | ||
</video> | ||
|
||
function togglePause() { | ||
if (video.paused) { | ||
video.play(); | ||
btn.innerHTML = "⏸️"; | ||
} else { | ||
video.pause(); | ||
btn.innerHTML = "▶️"; | ||
} | ||
} | ||
<label for="volumeControl">Volume:</label> | ||
<input type="range" id="volumeControl" min="0" max="1" step="0.01" value="0.01"> | ||
<span id="volumePercentage">1%</span> | ||
|
||
volumeControl.addEventListener("input", function() { | ||
video.volume = volumeControl.value; | ||
var percentage = Math.round(volumeControl.value * 100); | ||
volumePercentage.innerHTML = percentage + "%"; | ||
}); | ||
</script> | ||
</body> | ||
</div> | ||
</div> | ||
</main> | ||
<script> | ||
var video = document.getElementById("aboutvideo"); | ||
var btn = document.getElementById("aboutpauseBtn"); | ||
var volumeControl = document.getElementById("volumeControl"); | ||
var volumePercentage = document.getElementById("volumePercentage"); | ||
|
||
// Initialize the video volume and percentage display | ||
video.volume = volumeControl.value; // Set initial volume based on the slider value | ||
volumePercentage.innerHTML = Math.round(volumeControl.value * 100) + "%"; // Set initial percentage | ||
|
||
function togglePause() { | ||
if (video.paused) { | ||
video.play(); | ||
btn.innerHTML = "⏸️"; | ||
} else { | ||
video.pause(); | ||
btn.innerHTML = "▶️"; | ||
} | ||
} | ||
|
||
volumeControl.addEventListener("input", function () { | ||
video.volume = volumeControl.value; | ||
var percentage = Math.round(volumeControl.value * 100); | ||
volumePercentage.innerHTML = percentage + "%"; | ||
}); | ||
</script> | ||
</body> | ||
</div> | ||
</div> | ||
</main> |
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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<div> | ||
<div class="about"> | ||
<div> | ||
<p>My personal README.</p> | ||
<p>Please do not contact me without reading.</p> | ||
<li><a href="https://nohello.net/en/">No Hello</a> - Read this please</li> | ||
<li><a href="https://dontasktoask.com/">Don't Ask To Ask</a> - Read this please</li> | ||
<li><a href="https://xyproblem.info/">XY Problem</a> - Read this please</li> | ||
<div> | ||
<p>My personal README.</p> | ||
<p>Please do not contact me without reading.</p> | ||
<li><a href="https://nohello.net/en/">No Hello</a> - Read this please</li> | ||
<li><a href="https://dontasktoask.com/">Don't Ask To Ask</a> - Read this please</li> | ||
<li><a href="https://xyproblem.info/">XY Problem</a> - Read this please</li> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -1,14 +1,16 @@ | ||
<div> | ||
<div class="about"> | ||
<div> | ||
|
||
<body> | ||
<div class="content"> | ||
<h2>Look at this person eating their salad, You like this gif? You should replicate it.</h2> | ||
<iframe width="450" height="350" src="https://c.tenor.com/HZ_mu1zU3-UAAAAd/tenor.gif" frameborder="0" allowfullscreen style="margin-left: 65px;"></iframe> | ||
<iframe width="450" height="350" src="https://c.tenor.com/HZ_mu1zU3-UAAAAd/tenor.gif" | ||
frameborder="0" allowfullscreen style="margin-left: 65px;"></iframe> | ||
<div id="images"> | ||
</div> | ||
</div> | ||
</body> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -1,53 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<head> | ||
|
||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>tee's website</title> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/assets/font-awesome/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="/assets/css/animate.css"> | ||
<link rel="stylesheet" href="/assets/css/about/style.css"> | ||
<link rel="stylesheet" href="/assets/css/style.css"> | ||
<link rel="shortcut icon" href="/assets/imgs/favicon.png"> | ||
</head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>tee's website</title> | ||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/assets/font-awesome/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="/assets/css/animate.css"> | ||
<link rel="stylesheet" href="/assets/css/about/style.css"> | ||
<link rel="stylesheet" href="/assets/css/style.css"> | ||
<link rel="shortcut icon" href="/assets/imgs/favicon.png"> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top navbar-no-bg" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#top-navbar-1"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="/">Tee</a> | ||
<link rel="home" href="/" /> | ||
</div> | ||
<div class="collapse navbar-collapse" id="top-navbar-1"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li><a class="btn btn-link-3" href="/">Home</a></li> | ||
<li><a class="btn btn-link-3" href="/about">About</a></li> | ||
<li><a class="btn btn-link-3" href="/projects">Projects</a></li> | ||
<li><a class="btn btn-link-3" href="/discord">Discord</a></li> | ||
<li><a class="btn btn-link-3" href="/pages">Pages</a></li> | ||
<li><a class="btn btn-link-3" href="https://tayrp.substack.com/">Blog</a></li> | ||
</ul> | ||
</div> | ||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top navbar-no-bg" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" | ||
data-target="#top-navbar-1"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="/">Tee</a> | ||
<link rel="home" href="/" /> | ||
</div> | ||
</nav> | ||
{{ block "main" . }} | ||
{{ end }} | ||
<footer> | ||
<div class="container"> | ||
<div class="row"> | ||
© <b>2024 | ||
<a href="https://github.com/tayrp/tayrp.github.io">TayRP</a>. All rights reserved.</b> | ||
</div> | ||
</div> | ||
</footer> | ||
<div class="collapse navbar-collapse" id="top-navbar-1"> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li><a class="btn btn-link-3" href="/">Home</a></li> | ||
<li><a class="btn btn-link-3" href="/about">About</a></li> | ||
<li><a class="btn btn-link-3" href="/projects">Projects</a></li> | ||
<li><a class="btn btn-link-3" href="/discord">Discord</a></li> | ||
<li><a class="btn btn-link-3" href="/pages">Pages</a></li> | ||
<li><a class="btn btn-link-3" href="https://tayrp.substack.com/">Blog</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
{{ block "main" . }} | ||
{{ end }} | ||
<footer> | ||
<div class="container"> | ||
<div class="row"> | ||
© <b>2024 | ||
<a href="https://github.com/tayrp/tayrp.github.io">TayRP</a>. All rights reserved.</b> | ||
</div> | ||
</div> | ||
</footer> |
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
Oops, something went wrong.