-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
67 lines (67 loc) · 2.34 KB
/
Copy pathindex.php
File metadata and controls
67 lines (67 loc) · 2.34 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
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
<?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">
<div class="welcome">
<h1>Добро пожаловать в <span>Wikicountries</span>! <br> Свободная энциклопедия для публикации информации о странах(в том числе выдуманных) на русском языке</h1>
</div>
<div class="main_articles">
<p>Избранные статьи</p>
<ul>
<?php
show_articles('favourite');
?>
</ul>
</div>
<div class="main_articles">
<p>Хорошие статьи</p>
<ul>
<?php
show_articles('good');
?>
</ul>
</div>
<div class="main_articles">
<p>Новые статьи</p>
<ul>
<?php
show_articles('new');
?>
</ul>
</div>
<div class="main_articles">
<p>Будущие статьи</p>
<ul>
<?php
show_articles('future');
?>
</ul>
</div>
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
<footer>
<?php
global $notice;
echo $notice;
?>
</footer>
</div>
</body>
<script src="/lib/scripts/main.js"></script>
</html>