-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathengine_page.php
More file actions
26 lines (26 loc) · 1.01 KB
/
Copy pathengine_page.php
File metadata and controls
26 lines (26 loc) · 1.01 KB
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
<?php
session_start();
require_once('engine/engine.php');
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Wikicountries | Движок</title>
<link rel="stylesheet" type="text/css" href="/lib/scripts/style.css">
<link rel="icon" type="image/x-icon" href="/lib/lib/images/icon.jpg">
</head>
<body>
<?php show_menu(); ?>
<header class="top">
<?php
check_user_status();
show_account_name();
show_account_links();
?>
</header> <br>
<div class="created_article">
<span class="aname">Движок</span> <br> <br> <br><hr style="margin-top:30px">
Скоро здесь появится информация о движке, на котором написан проект Wikicountries, а также инструкция о том, как его использовать для своего сайта
</div>
</body>
</html>