-
Notifications
You must be signed in to change notification settings - Fork 0
/
categoria.php
51 lines (45 loc) · 1.56 KB
/
categoria.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
<?php
include "_/inc/datos-globales.php";
$plantilla='legumbres';
if ( isset($_GET['c']) && is_file( "views/plantilla-" . $_GET['c'] . ".php" ) ) {
$plantilla = $_GET['c'];
}
?><!doctype html>
<!--[if lt IE 8 ]> <html class="ie ie7 no-js" lang="es"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" lang="es"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" lang="es"> <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" lang="es"><!--<![endif]-->
<head>
<title><?php echo ucwords ( implode(' ', explode('-', $plantilla ) ) ); ?> – <?php echo $nombreMarca; ?></title>
<!--<meta name="description" content="Uno de los principales ">
Google will often use this as its description of your page/site. Make it good or delete it. -->
<meta name="author" content="<?php echo $nombreMarca.' '.$webDelAutor; ?>">
<meta name="Copyright" content="Copyright <?php echo $nombreMarca.' '.date('Y'); ?>. All Rights Reserved.">
<?php include "views/viewport-fav-setup.php"; ?>
<link rel="stylesheet" href="_/css/styles.css">
<?php include "views/modernizr.php"; ?>
</head>
<body>
<div class="amictus pagina-categoria">
<div class="wrapper">
<header>
<?php
$activo='productos';
include "views/header.php"; ?>
</header>
<div class="corporis">
<article>
<?php include "views/plantilla-$plantilla.php"; ?>
</article>
<nav class="productos">
<?php include "views/productos-lista.php"; ?>
</nav>
</div>
</div>
</div>
<footer>
<?php include "views/footer.php"; ?>
</footer>
<?php require("views/javascript-al-pie.php"); ?>
</body>
</html>