-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
41 lines (34 loc) · 1.42 KB
/
index.php
File metadata and controls
41 lines (34 loc) · 1.42 KB
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
<?php require_once("./components.php") ?>
<!DOCTYPE html>
<html lang="pl">
<head>
<?php component_head(); ?>
</head>
<body class="bg-dark text-light">
<div class="facebook-bottom" onclick="window.open('https://www.facebook.com/PizzoManiaWojcieszow/', '_blank');">
<i class="glyph-icon flaticon-facebook text-light"></i>
</div>
<?php
component_nav();
component_page_header();
?>
<main>
<div class="container">
<div class="row">
<?php
component_index_content();
component_footer_main();
?>
</div>
</div>
</main>
<footer class="text-center container-fluid" >
<p>
© 2020 Pizzomania | developer contact: <a href="mailto:grzegorz.klementowski@outlook.com" class="text-light">grzegorz.klementowski@outlook.com</a> SetWebUp Grzegorz Klementowski
</p>
</footer>
<?php
component_scripts();
?>
</body>
</html>