update @ Fri 30 Jul 15:38:35 EEST 2021

This commit is contained in:
Ari Archer 2021-07-30 15:38:35 +03:00
parent b573801514
commit 6e32a0bba8
15 changed files with 0 additions and 95 deletions

View file

@ -45,7 +45,6 @@
<ul class="contents"> <ul class="contents">
<li><a href="#welcome">Welcome</a></li> <li><a href="#welcome">Welcome</a></li>
<li><a href="#minimum">Bare minimum</a></li> <li><a href="#minimum">Bare minimum</a></li>
<li><a href="#idc">Tbh, idc</a></li>
</ul> </ul>
<div class="content"> <div class="content">
@ -54,14 +53,6 @@
<a href="/page/random/minimal.txt">This page</a> is completely bare bones.<br/> <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. It's literally just text. No JavaScript, no CSS and no HTML at all. Just bare, plain English.
</p> </p>
<br/>
<h1 id="idc">#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> </div>
</div> </div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,14 +0,0 @@
"use strict";
var random_person_instagram = document.getElementById("random_person_instagram");
function create_img_elements(html_element, count, dir) {
for (var i = 1; i < count + 1; ++i) {
var img = document.createElement("img");
img.setAttribute("src", "".concat(dir, "/").concat(i, ".jpg"));
img.setAttribute("width", "200px");
html_element.appendChild(img);
}
}
create_img_elements(random_person_instagram, 11, '/page/random/page/tbh_idc/img/random_person_on_instagram');

View file

@ -1,60 +0,0 @@
<!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>
<div class="imageArea" id="random_person_instagram"></div>
</p>
</div>
</div>
</div>
</body>
</html>

View file

@ -1,12 +0,0 @@
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", "200px")
html_element.appendChild(img);
}
}
create_img_elements(random_person_instagram, 11, '/page/random/page/tbh_idc/img/random_person_on_instagram');