summaryrefslogtreecommitdiff
path: root/graveyard_of_the_drawings.html
blob: 2cb2adff40ea92bcdd4e2c566d2eeafb7864f93e (plain)
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 lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="aki">
<meta name="tags" content="gallery">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="style.css">
<style>
body { max-width: unset; }
header { display: block; }
header > nav { margin: unset; }
header, article {
	max-width: 43rem;
	margin: 0 auto;
}
.gallery {
	display: flex;
	padding: 2rem 1.5rem;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
}
.gallery > * {
	display: block;
	margin: -2rem -1.5rem;
	max-width: 100%;
}
</style>

<title>Graveyard of the Drawings</title>

<header>
<nav><a href="https://ignore.pl">ignore.pl</a></nav>
<h1>Graveyard of the Drawings</h1>
</header>

<article>
<p>I remove or rewrite articles every now and then. Because of how I operate I always draw something new for any new
post. This sometimes leaves orphaned drawings and I feel a tiny little bit bad about it. I do not claim they are good or
anything like this. I simply find it funny how they accumulate here without any context.
</article>

<div class="gallery">
<img src="graveyard_of_the_drawings-1.png">
<img src="graveyard_of_the_drawings-2.png">
<img src="graveyard_of_the_drawings-3.png">
<img src="graveyard_of_the_drawings-4.png">
<img src="graveyard_of_the_drawings-5.png">
<img src="graveyard_of_the_drawings-6.png">
<img src="graveyard_of_the_drawings-7.png">
<img src="graveyard_of_the_drawings-8.png">
<img src="graveyard_of_the_drawings-9.png">
<img src="graveyard_of_the_drawings-10.png">
<img src="graveyard_of_the_drawings-11.png">
<img src="graveyard_of_the_drawings-12.png">
<img src="graveyard_of_the_drawings-13.png">
<img src="graveyard_of_the_drawings-14.png">
</div>
<script>
function shuffle(element) {
	for (let i = element.children.length; i >= 0; --i)
		element.appendChild(element.children[Math.random() * i | 0]);
}
shuffle(document.querySelector(".gallery"));
</script>
<script src="https://stats.ignore.pl/track.js"></script>