-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (31 loc) · 774 Bytes
/
index.php
File metadata and controls
31 lines (31 loc) · 774 Bytes
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
<?
require_once('engine.php');
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>CarCreator | <?php echo $MainPageTitle; ?></title>
<?php
check_os();
?>
<link rel="icon" type="image/x-icon" href="lib/images/icon.jpg">
</head>
<body>
<header class="menu">
<?php
show_menu();
?>
</header>
<center>
<div class="last_news">
<script src="lib/scripts/main.js">
get_last_news();
</script>
</div>
</center>
<footer>
</footer>
<script src="lib/scripts/main.js"></script>
</body>
</html>