-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathblog.html
More file actions
67 lines (66 loc) · 3.31 KB
/
blog.html
File metadata and controls
67 lines (66 loc) · 3.31 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
<!DOCTYPE html>
<html>
<head>
<title>Google Drive - New document</title>
<link rel="icon" type="image/x-icon" href="https://ssl.gstatic.com/images/branding/product/1x/drive_2020q4_32dp.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div style="width: 100vw;">
<a onclick="switchtourl('main')">
<div style="float: left; width: 10vw;">
<p class="bartext">Universal UB</p>
</div>
</a>
<div onclick="cloaksite('/blog')" style="float: right; text-align: right; text-wrap: nowrap; transform: translateX(-300px);">
<p class="bartext">Open in About:Blank</p>
</div>
</div>
<div class="titleimage">
<h1 class="title">Blog</h1>
</div>
<hr class="dashedhr">
<div class="maincontent">
<h1 class="padding">Silly blog I made :)</h1>
<hr class="lighthr">
<h2 class="padding">Basically me rambling about exploits I find / spread</h2>
</div>
<hr class="dashedhr">
<div class="margin"></div>
<hr class="dashedhr">
<div class="maincontent">
<h1 class="padding">Blogs</h1>
<hr class="lighthr">
<div class="griddiv">
<div onclick="switchtourl('/blogs/kioskv3')" class="app">How I found KioskV3</div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
<div onclick="switchtourl('/blogs/')" class="app"></div>
</div>
</div>
<hr class="dashedhr">
</body>
<div class="footer">
<div class="smallmargin"></div>
<a style="text-decoration: none; color: #414d75;" onclick="openurl('https://www.github.com/' + currentname)"><p style="color: #414d75;"> Github </a><a style="text-decoration: none;" onclick="switchtourl('/terms')"><span style="color: #414d75;"> Terms </span></a></a><a style="text-decoration: none;" onclick="switchtourl('/about')"><span style="color: #414d75;"> About </span></a></a><a style="text-decoration: none;" onclick="switchtourl('/credits')"><span style="color: #414d75;"> Credits </span></a></p>
<div class="smallmargin"></div>
</div>
<script>
function pagesecurity(baseURL) {
var currentURL = window.location.href;
if (currentURL.startsWith(baseURL)) {
return;
} else {
document.body.innerHTML = '<p style="color: black; font-family: arial; font-weight: 400; font-size: 32px;">[WARNING] This page is not being hosted on its original location, please go to <a style="color: black; font-family: arial; font-weight: 400; font-size: 32px;" href="http://' + currentname + '.github.io" target="_blank">universalub</a> to visit the original site.</p>';
}
}
pagesecurity('https://' + currentname + '.github.io/');
</script>
<script src="aboutblank.js"></script>
</html>