You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

29 lines
392 B

<?php
$title = "E-shop";
include "include/header.php";
?>
<div class="container">
<h1>Drogerie</h1>
<div class="row">
<div class="col-md-4">
<?php include "include/menu.php"; ?>
</div>
<div class="col-md-8">
<?php include "include/products.php"; ?>
</div>
</div>
</div>
<?php
include "include/footer.php";
?>