| Server IP : 157.230.181.24 / Your IP : 216.73.217.11 Web Server : Apache/2.4.58 (Ubuntu) System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/vhosts/ceagon/public/gif/ |
Upload File : |
<head>
<title>gifs on gifs on gifs</title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/masonry/3.3.2/masonry.pkgd.min.js"></script>
<script src="assets/imagesloaded.pkgd.min.js"></script>
<script>
(function($) {
"use strict";
$(document).ready(function() {
$('.grid').imagesLoaded(function() {
$('.grid').masonry({
itemSelector: '.grid-item',
percentPosition: true
});
});
});
})(jQuery);
</script>
<style>
html, body {
width: 100%;
background: #000;
}
.grid-item {
width: 20%;
float: left;
}
.grid-item img {
max-width: 100%;
}
</style>
</head>
<body>
<div class="grid">
<?
$ignore = [
'.',
'..',
'index.php',
'assets',
];
if($handle = opendir('./')) {
while (false !== ($entry = readdir($handle))) {
if(!in_array($entry, $ignore)) {
$entryStripped = preg_replace('/^(.*?)\.(.*?)$/', '$1', $entry);
echo "<div class=\"grid-item\"><a href=\"http://ceagon.com/g/$entryStripped\"><img src=\"$entry\"/></a></div>";
}
}
closedir($handle);
}
?>
</div>
</body>