forked from dmitriitux/anilibria
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·47 lines (41 loc) · 1.22 KB
/
Copy pathindex.php
File metadata and controls
executable file
·47 lines (41 loc) · 1.22 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
<?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;
width: 435px;
object-fit: cover;
border-radius: 4px;
}
.youtubeTable img:hover { opacity:1; }
</style>
<table class="youtubeTable">
<tbody>
<?php echo youtubeShow(); ?>
</tbody>
</table>
</div>
<?php require($_SERVER['DOCUMENT_ROOT'].'/private/footer.php');