forked from anyulled/BuscoCarro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
75 lines (74 loc) · 3.06 KB
/
index.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
include_once('includes/db.php');
$db = new db();
include_once('includes/class.krumo.php');
include_once ('includes/constants.php');
//include_once('includes/fixture.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-language" content="en" />
<title>BuscoCarro.com</title>
<link href="css/my_layout.css" rel="stylesheet" type="text/css" />
<link href="yaml/screen/forms.css" rel="stylesheet" type="text/css"/>
<script src="js/lib/jquery-1.3.js" type="text/javascript"></script>
<script src="js/lib/jquery.cycle.all.min.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
<!--[if lte IE 7]>
<link href="css/patches/patch_my_layout.css" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
<body>
<div class="page_margins">
<!--<div id="border-top" class="hideme">
<div id="edge-tl"></div>
<div id="edge-tr"></div>
</div>-->
<div class="page">
<div id="header">
<?php include_once 'templates/header.php';?>
</div>
<div id="nav">
<?php include_once 'templates/nav.php'; ?>
<div class="marcas">
<?php include_once 'templates/marcas.php'; ?>
</div>
</div>
<div id="teaser">
<?php include_once 'templates/teaser.php'; ?>
</div>
<div id="main">
<div id="col1">
<div id="col1_content" class="clearfix">
<?php include_once 'templates/fom1.php'; ?>
</div>
</div>
<div id="col2">
<div id="col2_content" class="clearfix">
<?php include_once 'templates/noticias.php'; ?>
</div>
</div>
<div id="col3">
<div id="col3_content" class="clearfix">
<?php include_once 'templates/ads.php'; ?>
</div>
<!-- IE Column Clearing -->
<div id="ie_clearing">   </div>
</div>
</div>
<!-- begin: #footer -->
<div id="footer">
<div class="center"><p class="center">BuscoCarro.com © <?php echo date('Y') ;?></p>
</div>
</div>
</div>
<!--<div id="border-bottom" class="hideme">
<div id="edge-bl"></div>
<div id="edge-br"></div>
</div>-->
</div>
</body>
</html>