-
Notifications
You must be signed in to change notification settings - Fork 0
/
resource_home.php
26 lines (26 loc) · 1.1 KB
/
resource_home.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
<html lang="ca">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1.0, width=device-width, user-scalable=yes"/>
<title>Disc Shop | Botiga Musical</title>
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="estils/home.css"/>
<link rel="stylesheet" href="/estils/detailproduct.css"/>
<script src="/js/jquery-3.6.0.min.js"></script>
<script src="/js/funcions.js"></script>
</head>
<body>
<?php if(!isset($_GET["id"])){ ?> <!-- Si hi ha ID, no mostris nav, apareix nav extra-->
<header>
<?php include_once __DIR__.'/controller/nav.php'; ?>
</header>
<?php }?>
<div class="layout">
<?php include_once __DIR__.'/controller/home.php'; ?>
</div>
<?php if(!isset($_GET["id"])){ ?> <!-- Si hi ha ID, no mostris nav, apareix nav extra-->
<?php include_once __DIR__.'/controller/footer.php'; ?>
<?php }?>
</body>
</html>