-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (65 loc) · 2.94 KB
/
index.html
File metadata and controls
75 lines (65 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PolyRolePlay</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!-- Materialize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Materialize Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Custom Styles -->
<link rel="stylesheet" href="https://polyextended.github.io/nav.css">
<style>
.col.s12.m6 {
flex: 0 0 calc(33.33% - 20px);
margin: 10px;
max-width: calc(33.33% - 20px);
}
.badge-live {
background-color: #28a745;
}
.badge-offline {
background-color: #6c757d;
border-radius: 15px;
}
#featuredListContainer {
margin-top: 20px;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
</style>
</head>
<body>
<header class="z-depth-1">
<nav class="z-depth-0 backer-dark">
<div class="nav-wrapper container">
<ul class="left">
<li><a href="https://polyextended.github.io/">Home</a></li>
<li><a href="https://polyextended.github.io/live/">PolyLive</a></li>
<li><a href="https://polyextended.github.io/streamlookup/">PolyLookup</a></li>
<li><a href="https://polyextended.github.io/roleplay/">PolyRolePlay</a></li>
</ul>
</div>
</nav>
</header>
<div class="container" id="featuredListContainer">
<h4>Nopixel</h4>
<a href="https://twitch.tv/whippy" target="_blank">
<img alt="Twitch Status" src="https://img.shields.io/twitch/status/Whippy?style=for-the-badge&label=Whippy&color=Green&link=twitch.tv%2Fwhippy">
</a>
<!-- Repeat the same for other images with their respective Twitch links -->
<a href="https://twitch.tv/abdulhd" target="_blank">
<img alt="Twitch Status" src="https://img.shields.io/twitch/status/AbdulHD?style=for-the-badge&label=AbdulHD&color=Green&link=twitch.tv%2Fabdulhd">
</a>
<a href="https://twitch.tv/uhsnow" target="_blank">
<img alt="Twitch Status" src="https://img.shields.io/twitch/status/UhSnow?style=for-the-badge&label=UhSnow&color=Green&link=twitch.tv%2Fuhsnow">
</a>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>