-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.php
39 lines (36 loc) · 1.11 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
<?php
require($_SERVER['DOCUMENT_ROOT'].'/private/config.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/init/mysql.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/init/memcache.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/init/session.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/init/var.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/func.php');
require($_SERVER['DOCUMENT_ROOT'].'/private/auth.php');
$var['description'] = 'Смотреть аниме онлайн в любимой озучке.';
$var['page'] = 'main';
require($_SERVER['DOCUMENT_ROOT'].'/private/header.php');
?>
<div style="margin-top: 10px;">
<style>
.youtubeTable {
width: 880px;
}
.youtubeTable tr td:nth-child(1){
text-align:left;
}
.youtubeTable tr td:nth-child(2) {
text-align:right;
}
.youtubeTable tr:not(:first-child) td {
padding-top: 10px;
}
.youtubeTable img { opacity:0.8; }
.youtubeTable img:hover { opacity:1; }
</style>
<table class="youtubeTable">
<tbody>
<?php echo youtubeShow(); ?>
</tbody>
</table>
</div>
<?php require($_SERVER['DOCUMENT_ROOT'].'/private/footer.php');