-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-logged.php
46 lines (46 loc) · 1.96 KB
/
contact-logged.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
<!DOCTYPE html>
<html lang="pl">
<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>MACMA - Kontakt</title>
<link rel="shortcut icon" href="./assets/icons/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="./css/select2.min.css" />
<link rel="stylesheet" href="./scss/main.css">
</head>
<body>
<header>
<?php include "./components/common/topbar.php"; ?>
<?php include "./components/common/nav.php"; ?>
</header>
<main id="main-wrapper">
<div class="breadcrumbs container">
<ul>
<li class="breadcrumb-item">
<a href="./index.php">Home</a>
</li>
<li class="breadcrumb-item">
<a href="#">Kontakt</a>
</li>
</ul>
</div>
<?php include "./components/contact/contact_content.php"; ?>
<?php include "./components/contact/contact_sales_department_content.php"; ?>
<?php include "./components/contact/contact_other_departments_content.php"; ?>
</main>
<footer>
<?php include "./components/common/footer.php"; ?>
</footer>
<script>
document.querySelector('#topbar .container .topbar-links a:nth-of-type(6)').classList.add('active')
</script>
<script src="./js/jquery.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="./js/bootbox.min.js"></script>
<script src="./js/select2.min.js"></script>
<script src="./js/script.js"></script>
</body>
</html>