update @ Wed 28 Jul 04:52:31 EEST 2021
|
@ -12,7 +12,6 @@
|
|||
|
||||
<script src="/content/js/commands/index.js" defer></script>
|
||||
<script src="/content/js/generic/generic.js" defer></script>
|
||||
<script src="/help/index.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav-main" id="bar">
|
||||
|
@ -54,6 +53,14 @@
|
|||
<a href="/page/random/minimal.txt">This page</a> is completely bare bones.<br/>
|
||||
It's literally just text. No JavaScript, no CSS and no HTML at all. Just bare, plain English.
|
||||
</p>
|
||||
|
||||
<br/>
|
||||
|
||||
<h1 id="minimum">#2 Tbh idc</h1>
|
||||
<p>
|
||||
<a href="/page/random/page/tbh_idc">This page</a> is just a page where people ask me to add them.<br/>
|
||||
So I did.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/1.jpg
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/10.jpg
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/11.jpg
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/2.jpg
Normal file
After Width: | Height: | Size: 50 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/3.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/4.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/5.jpg
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/6.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/7.jpg
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/8.jpg
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
page/random/page/tbh_idc/img/random_person_on_instagram/9.jpg
Normal file
After Width: | Height: | Size: 31 KiB |
58
page/random/page/tbh_idc/index.html
Normal file
|
@ -0,0 +1,58 @@
|
|||
<!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>Aris_Web::Random</title>
|
||||
|
||||
<link rel="stylesheet" href="/content/styles/generic/generic.css">
|
||||
<link rel="stylesheet" href="/content/styles/box/box.css">
|
||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.min.css">
|
||||
|
||||
<script src="/content/js/commands/index.js" defer></script>
|
||||
<script src="/content/js/generic/generic.js" defer></script>
|
||||
<script src="/page/random/page/tbh_idc/index.js" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav-main" id="bar">
|
||||
<ul class="nav-list" id="bar-list">
|
||||
</ul>
|
||||
|
||||
<noscript>
|
||||
<style>
|
||||
.nav-list {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="error">
|
||||
For full functionality of this site it is necessary to enable JavaScript.<br/>
|
||||
Here are the <a href="https://www.enable-javascript.com/" target="_blank">
|
||||
instructions how to enable JavaScript in your web browser</a>.
|
||||
</div>
|
||||
</noscript>
|
||||
</nav>
|
||||
|
||||
<div id="menus">
|
||||
<div class="mobile-menu hiddenMobile-noanim" id="mobile-menu">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content" id="content" name="content">
|
||||
<div class="box">
|
||||
<h1 class="heading" id="welcome">Welcome to <i>"To be honest, I don't care"</i>!</h1>
|
||||
|
||||
<ul class="contents">
|
||||
<li><a href="#welcome">Welcome</a></li>
|
||||
<li><a href="#instagram_random_person">Random person on instagram</a></li>
|
||||
</ul>
|
||||
|
||||
<div class="content">
|
||||
<h1 id="instagram_random_person">#1 Some random person on instagram</h1>
|
||||
<p id="random_person_instagram"></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
12
page/random/page/tbh_idc/index.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const random_person_instagram = document.getElementById("random_person_instagram");
|
||||
|
||||
function create_img_elements(html_element, count, dir) {
|
||||
for (let i = 1; i < count + 1; ++i) {
|
||||
let img = document.createElement("img");
|
||||
img.setAttribute("src", `${dir}/${i}.jpg`);
|
||||
img.setAttribute("width", "100px")
|
||||
html_element.appendChild(img);
|
||||
}
|
||||
}
|
||||
|
||||
create_img_elements(random_person_instagram, 11, '/page/random/page/tbh_idc/img/random_person_on_instagram');
|