forked from Infinito-IIT-Patna/Infinito2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.php
118 lines (104 loc) · 4.31 KB
/
gallery.php
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
session_start();
include "connect.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gallery</title>
<?php
require('./templates/header.php');
?>
<link rel="stylesheet" href="css/gallery.css">
</head>
<body style="background:rgb(243 243 243);">
<!--
=============================================
Theme Header
==============================================
-->
<div class="bac" style="background: #172134; position:fixed; width:100%; top:0px; z-index:100; margin-bottom:100px;">
<div class="container" style="padding:10px 0">
<a href="index.php" class="logo float-left tran4s"><img src="images/logo/logo.png" alt="Logo" style="border-radius:100%; height:56px; width:56px;" /></a>
<!-- ========================= Theme Feature Page Menu ======================= -->
<nav class="navbar float-right theme-main-menu one-page-menu">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1" aria-expanded="false" >
<span class="sr-only">Toggle navigation</span>
Menu
<i class="fa fa-bars" aria-hidden="true"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="navbar-collapse-1" style="margin-top:8px;">
<ul class="nav navbar-nav">
<li ><a href="./index.php">Home</a></li>
<li><a href="./events.php">Events</a></li>
<li><a href="./team.php">Team</a></li>
<li class="active"><a href="./gallery.php">Gallery</a></li>
<li><a href="./registration.php">Register</a></li>
<?php
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true) {
echo '<li><a href="./profile.php">Profile</a></li>
<li><a href="./logout.php">Logout</a></li>';
}
else{
echo '
<li><a href="./signIn.php">Sign In</a></li>';
}
?>
</ul>
</div>
<!-- /.navbar-collapse -->
</nav>
<!-- /.theme-feature-menu -->
</div>
</div>
<!-- /.theme-main-header -->
<div class="theme-title">
<h2>Gallery</h2>
</div>
<div class="container">
<script>
lightbox.option({
resizeDuration: 400,
fadeDuration: 100,
imageFadeDuration: 400,
})
//all this ensures that the page becomes unscrollable when the modal is open
//and becomes scrollable when it is closed
function lock_body() {
$('body').css('overflow', 'hidden')
};
function unlock_body() {
$('body').css('overflow', 'auto')
};
$('body').ready(() => $('.lightbox, .lightboxOverlay').click(() => unlock_body())) //this can be improved
</script>
<div class="gallery">
<?php
$directory = "./images/gallery";
$images = glob($directory . "/*.jpeg");
foreach ($images as $image) {
$tall = substr($image, 2, 4) === "tall";
?>
<div class="image <?php if ($tall) {
echo "tall";
} else {
echo "wide";
} ?>" onclick="lock_body()">
<a href="<?php echo $image ?>" data-lightbox="some image">
<img src="<?php echo $image ?>" alt="">
</a>
</div>
<?php
}
?>
</div>
</div>
<?php
require('./templates/footer.php')
?>
</body>
</html>