Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
new_tlmf /
resources /
views /
frontend /
[ HOME SHELL ]
Name
Size
Permission
Action
about_organization.blade.php
4.05
KB
-rw-rw-r--
aboutus.blade.php
6.68
KB
-rw-rw-r--
advisory_board.blade.php
1.86
KB
-rw-rw-r--
app.blade.php
9.95
KB
-rw-rw-r--
books.blade.php
2.65
KB
-rw-rw-r--
committee.blade.php
2.11
KB
-rw-rw-r--
gallery.blade.php
1.64
KB
-rw-rw-r--
index.blade.php
11.61
KB
-rw-rw-r--
member.blade.php
3.92
KB
-rw-rw-r--
news.blade.php
1.91
KB
-rw-rw-r--
patrons.blade.php
1.77
KB
-rw-rw-r--
publication.blade.php
2.08
KB
-rw-rw-r--
reports.blade.php
2.29
KB
-rw-rw-r--
show_gallery.blade.php
3.34
KB
-rw-rw-r--
show_news.blade.php
1.82
KB
-rw-rw-r--
show_publication.blade.php
3.7
KB
-rw-rw-r--
video.blade.php
1.55
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : show_gallery.blade.php
@extends('frontend.app') @section('content') <!-- Header Start --> <div class="container-fluid bg-primary py-5 mb-5 page-header"> <div class="container py-5"> <div class="row justify-content-center"> <div class="col-lg-10 text-center"> <h1 class="display-3 text-white animated slideInDown">gallery </h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb justify-content-center"> <li class="breadcrumb-item"><a class="text-white" href="/">Home</a></li> <li class="breadcrumb-item text-white active" aria-current="page"> <a href="/gallery">gallery</a></li> <li class="breadcrumb-item text-white active" aria-current="page"> <a >View</a></li> </ol> </nav> </div> </div> </div> </div> <!-- Header End --> <h1> {{ $single_gallery->name}}</h1><hr> <div id="gallery" class="container-fluid"> @if (is_null($single_gallery->cover_image)) <p style="font-size: 16pt;color:brown; padding-left:20%; padding-bottom:10px"> No photos to show </p> @else <a href="/album/{{$single_gallery->cover_image }}" data-lightbox="image-1" data-title="{{$single_gallery->description}}"> <img src="/album/{{$single_gallery->cover_image}}" class="img-responsive" alt="{{$single_gallery->description}}"> </a> @endif @foreach ($images as $data) <a href="/album/{{$data->image }}" data-lightbox="image-1" data-title="{{$data->description}}"> <img src="/album/{{$data->image}}" class="img-responsive" alt="{{$data->description}}"> </a> @endforeach </div> @endsection @section('scripts') <script> $('div a').click(function(e) { var url = $(this).data('img').url; var des = $(this).data('img').description; console.log(url); console.log(des); $('#myModal img').attr('src',url); $("#myModal p").html( des ); }); </script> <script src="/frontend/lightbox2/src/js/lightbox.js"></script> @endsection @section('head') <link href="/frontend/lightbox2/src/css/lightbox.css" rel="stylesheet" /> <style> h1{ font-family: Satisfy; font-size:50px; text-align:center; color:black; padding:1%; } #gallery{ -webkit-column-count:4; -moz-column-count:4; column-count:4; -webkit-column-gap:20px; -moz-column-gap:20px; column-gap:20px; } @media (max-width:1200px){ #gallery{ -webkit-column-count:3; -moz-column-count:3; column-count:3; -webkit-column-gap:20px; -moz-column-gap:20px; column-gap:20px; } } @media (max-width:800px){ #gallery{ -webkit-column-count:2; -moz-column-count:2; column-count:2; -webkit-column-gap:20px; -moz-column-gap:20px; column-gap:20px; } } @media (max-width:600px){ #gallery{ -webkit-column-count:1; -moz-column-count:1; column-count:1; } } #gallery img,#gallery video { width:100%; height:auto; margin: 4% auto; box-shadow:-3px 5px 15px #000; cursor: pointer; -webkit-transition: all 0.2s; transition: all 0.2s; } .modal-img,.model-vid{ width:100%; height:auto; } .modal-body{ padding:0px; } a { position: relative } .image_hover span { display: none; position: absolute; bottom: 0; width: 100%; padding: 10px; background: rgba(255,255,255,.8); } .image_hover:hover span { display: block } </style> @endsection
Close