gmemstr.github.io/index.html

80 lines
3.7 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2016-04-30 19:15:23 +01:00
<head>
<title>Gabriel Simmer</title>
<meta name="description" content="Gabriel Simmer's Portfolio / Landing Page" />
<meta charset="UTF-8">
2016-04-30 19:15:23 +01:00
<meta name="author" content="Gabriel Simmer" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link rel="stylesheet" href="assets/custom.css">
</head>
<body>
<div class="container">
<header>
<img src="https://avatars2.githubusercontent.com/u/1878840?s=400&u=b433687936e1e1c1bfd858737d8323c6a5b58c33&v=4" alt="Github Profile Picture" class="profile-img">
<span class="name">Gabriel Simmer</span>
<div class="status">
<span id="time">10:32 <small>AM</small></span>
2018-03-03 20:46:55 +00:00
<span id="wifi"><i class="fas fa-wifi" id="wifi"></i></span>
<span id="battery">100% <i class="fas fa-battery-full"></i></span>
</div>
</header>
<main>
<div class="games">
<div class="project" id="pogo">
<h2 class="projectname">POGO</h2>
<a href="https://github.com/gmemstr/pogo"><img src="assets/pogo.png" alt="Pogo Logo" class="project-img"></a>
</div>
<div class="project" id="platypus">
<h2 class="projectname">PLATYPUS</h2>
<a href="https://github.com/gmemstr/platypus"><img src="assets/platypus.png" alt="Platypus Logo" class="project-img"></a>
</div>
<div class="project" id="gitgalaxy">
<h2 class="projectname">GIT GALAXY</h2>
2018-03-03 21:51:22 +00:00
<a href="https://gitgalaxy.com"><img src="assets/gitgalaxy.png" alt="Git Galaxy Logo" class="project-img"></a>
</div>
<div class="project" id="nodemc">
<h2 class="projectname">NODEMC</h2>
2018-03-03 21:51:22 +00:00
<a href="https://github.com/NodeMC"><img src="assets/nodemc.png" alt="NodeMC Logo" class="project-img"></a>
</div>
<div class="project" id="other">
<h2 class="projectname">MORE</h2>
2018-03-03 21:51:22 +00:00
<a href="https://github.com/gmemstr"><img src="assets/other.png" alt="Other Stuff" class="project-img"></a>
</div>
</div>
<div class="buttons">
<div class="button" id="twitter">
<a href="https://twitter.com/gmem_"><i class="fab fa-twitter" style="color:#1da1f2;"></i></a>
</div>
<div class="button" id="github">
<a href="https://github.com/gmemstr"><i class="fab fa-github-alt"></i></a>
</div>
<div class="button" id="twitch">
<a href="https://twitch.tv/gmem_"><i class="fab fa-twitch" style="color:#b9a3e3;"></i></a>
</div>
<div class="button" id="reddit">
<a href="https://reddit.com/gmemstr"><i class="fab fa-reddit-alien" style="color:#ff4500;"></i></a>
</div>
<div class="button" id="email">
<a href="mailto:gabriel@gitgalaxy.com"><i class="far fa-envelope"></i></a>
</div>
</div>
</main>
<hr />
<center><p>Hand built with <i class="fas fa-heart"></i> by Gabriel Simmer</p></center>
</div>
<script>
var date = new Date();
var hours = date.getHours();
var minutes = date.getMinutes();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12; // the hour '0' should be '12'
minutes = minutes < 10 ? '0'+minutes : minutes;
var strTime = hours + ':' + minutes + ' <small>' + ampm.toUpperCase() + '</small>';
document.getElementById("time").innerHTML=strTime;
</script>
</body>