Added cat gallery

This commit is contained in:
LeBiterino 2024-03-22 20:44:32 +01:00
parent 02f0c698fd
commit 9723a422dd
51 changed files with 41 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 545 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

View File

@ -14,6 +14,7 @@
<h3>Hello, I'm biterr, a linux nerd. I have atleast 20 websites on WWW.</h3>
<span style="color: red;">BIRD HAS A JOINT</span>
<a href="https://socel.net/@biterr"><img src="img/biterr.svg" class="pure-img" alt="OC"></a><br>
<a href="/pages/gallery.html"><button class="button">My cat gallery</button></a>
<a href="pages/metal.html"><button class="button">MY NEWEST STORY</button></a>
<a href="pages/faq.html"><button class="button">Would suggest ya to read FAQ</button></a>
<a href="pages/contact.html"><button class="button">Also here're my contacts</button></a>

2
jquery.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -12,7 +12,7 @@
</head>
<body>
<a href="https://www.cancer.org/healthy/stay-away-from-tobacco/guide-quitting-smoking.html">
<img src="img/cigar.svg" alt="Here!">
<img src="/img/cigar.svg" alt="Here!">
</a>
</body>
</html>

31
pages/gallery.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Biterr's cave!</title>
<link href="/style/base.css" rel="stylesheet" type="text/css" media="all">
<script src="/jquery.js" />
</head>
<body>
<header>
<script src="/header.js"></script>
</header>
<main>
<h1>My cat's gallery</h1>
<h4>Pictures go from youngest to oldest</h4>
<script>
var folder = "/img/bacva/";
$.ajax({
url : folder,
success: function (data) {
$(data).find("a").attr("href", function (i, val) {
if( val.match(/\.(jpe?g|png|gif)$/) ) {
$("main").append( "<a href='"+ folder + val +"'><img class='catimg' src='"+ folder + val +"'></a>" );
}
});
}
});
</script>
</main>
</body>

View File

@ -39,4 +39,10 @@ hr {
-moz-transform: scale(1.5, 1);
transform: scale(1.5, 1);
}
}
.catimg {
max-width: 20%;
height: 20%;
display: inline-block;
margin: 2px;
}