-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (130 loc) · 5.93 KB
/
index.html
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>raydeet: the funpage of the web</title>
<link rel="stylesheet" href="index.css" />
<link rel="icon" type="image/x-icon" href="images/logo-small.png">
<!--Just to be ready to outsource a good alternative font-->
<link rel="preconnect" href="https://api.fonts.coollabs.io" crossorigin>
<link href="https://api.fonts.coollabs.io/css2?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<header>
<!--The thin dashboard on top-->
<!--External links are all "broken". Yay.-->
<div class="upper-menu">
<a class="upper-menu-link" href="broken_site.html">MY SUBRAYDEETS</a>
-
<a class="upper-menu-link" href="broken_site.html">DASHBOARD</a>
-
<a class="upper-menu-link" href="#"><b><font color="orangered">HOME</font></b></a>
-
<a class="upper-menu-link" href="broken_site.html">POPULAR</a>
-
<a class="upper-menu-link" href="broken_site.html">ALL</a>
-
<a class="upper-menu-link" href="broken_site.html">RANDOM</a>
-
<a class="upper-menu-link" href="broken_site.html">USERS</a>
-
<a class="upper-menu-link" href="broken_site.html">FRIENDS</a>
-
<a class="upper-menu-link" href="broken_site.html">MOD</a>
-
<a class="upper-menu-link" href="broken_site.html">MODQUEUE</a>
-
<a class="upper-menu-link" href="broken_site.html">SAVED</a>
-
<a class="upper-menu-link" href="broken_site.html">EDIT</a>
| add shortcuts from the my subraydeets menu at left or click the button by the subraydeet name, drag and drop to sort
</div>
<nav>
<!--Site logo-->
<div>
<a href="index.html" id="logo"><img src="images/logo.png" alt="This site is bad for you" width="166" height="61"></a>
</div>
<!--Pageview options (also with broken links, of course)-->
<div>
<ul class="nav-link-box">
<li>
<a href="#" class="selected">best</a>
<a href="broken_site.html">hot</a>
<a href="broken_site.html">new</a>
<a href="broken_site.html">rising</a>
<a href="broken_site.html">controversial</a>
<a href="broken_site.html">top</a>
<a href="broken_site.html">guilded</a>
<a href="broken_site.html">wiki</a>
</li>
</ul>
</div>
<!--Login menu-->
<aside class="login">
<small><font color="gray"> Want to join? <a href="broken_site.html" class="blue-link">Log in</a> or <a href="broken_site.html" class="blue-link">sign up</a> in seconds. | <b><a href="broken_site.html" class="blue-link">English</a></b> </font></small>
</aside>
</nav>
</header>
<main>
<!--Sidebar-->
<aside>
<ul>
<li><input type="search" action="#" role="search" placeholder="search"></li>
<li><a href="broken_site.html"><img src="images/newlink.png" class="submit"/></a></button></li>
<li><a href="broken_site.html"><img src="images/newpost.png" class="submit"/></a></button></li>
<li><a href="broken_site.html"><img class="aside-pic" src="images/premium.png" alt="Get premium" /></a></li>
<li><a href="broken_site.html"><img src="images/createsub.png" class="submit"/></a></button></li>
<li><img class="aside-pic" src="images/create-for.png" /></li>
</ul>
</aside>
<section id="post-list">
<!--TEMPLATE FOR POSTS-->
<!--variables: [post-number, nvotes, thumbnail, title, post-source, age, OP, sub, ncomments, plural]-->
<!--page will be filled with instances of this via javascript-->
<template id="article-template">
<article class="post" tabindex="1">
<span class="post-number">0</span>
<div class="arrows-votes">
<a href="broken_site.html"><img src="images/upvote.png" alt="up" class="upvote"></a>
<span class="nvotes">69</span>
<a href="broken_site.html"><img src="images/downvote.png" alt="down" class="downvote"></a>
</div>
<img src="images/logo-small.png" alt="thumbnail" class="thumbnail">
<a href="broken_site.html" class="post-title">
<h1 class="title">Post title</h1>
</a>
<span class="post-source">(somewhere)</span>
<p class="submission-details">
submitted
<span class="age">100 years</span>
ago by
<a href="broken_site.html" class="blue-link"><span class="OP">someone</span></a>
to
<a href="broken_site.html" class="blue-link">r/<span class="sub">webdev</span></a>
</p>
<p class="post-options">
<a href="broken_site.html" class="gray-link"><span class="ncomments">1000000</span> comment<span class="plural">s</span></a>
<a href="broken_site.html" class="gray-link">share</a>
<a href="broken_site.html" class="gray-link">save</a>
<a href="broken_site.html"><font color=#a79128>give award</font></a>
<a href="broken_site.html" class="gray-link">report</a>
<a href="broken_site.html" class="gray-link">crosspost</a>
</p>
</article>
</template>
<!--Script used to make said filling-->
<script src="loadposts.js"></script>
</section>
</main>
<!--And don't forget the footer-->
<footer>
<div>
view more: <button><a href="broken_site.html" class="blue-link">next></a> </button>
</div>
</footer>
</body>
</html>