-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrukturorg.php
68 lines (61 loc) · 2.25 KB
/
strukturorg.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
<?php
require_once 'koneksi.php';
$query = mysqli_query($koneksi, "SELECT * FROM tbl_struktur");
$aktif = 'visi_misi';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SMA Negeri 9 Kupang</title>
<!-- Link Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.2.1/css/all.css" />
<!-- Link Box Icon -->
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<!-- Link CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Link JS -->
<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<!-- Link JS -->
<script src="main.js"></script>
<!-- BS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Link JQuery -->
<script src="https://code.jquery.com/jquery-3.6.3.js" integrity="sha256-nQLuAZGRRcILA+6dMBOvcRh5Pe310sBpanc6+QBmyVM=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"></script>
</head>
<body>
<!-- NAVIGATION -->
<?php include 'header.php'; ?>
<div class="tree">
<?php while($artikel = mysqli_fetch_assoc($query)) : ?>
<ul>
<img style="height: 1200px;" src="images/struktur/<?= $artikel['foto'] ?>" alt="" class="post-img" />
</ul>
<?php endwhile; ?>
</div>
<!-- FOOTER -->
<?php include 'footer.php'; ?>
<script src="main.js"></script>
<script>
$(document).ready(function () {
$('.num').counterup({
Delay: 10,
time: 1200,
});
});
</script>
<script>
$('#menu-btn').click(function () {
$('nav .navigation ul').addClass('active');
});
$('#menu-close').click(function () {
$('nav .navigation ul').removeClass('active');
});
</script>
</body>
</html>