-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
97 lines (82 loc) · 3 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html><html lang="ru"><head>
<meta charset="utf-8">
<title>Новости</title>
<meta name="keywords" content="новости,шоу-бизнес,общество,культура,экономика,политика,звёзды,скандалы">
<meta name="description" content="Новости">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/mr_crabs.css" media="screen">
<script src="js/jquery.min.js"></script>
<script src="js/crabs_main.js"></script>
<script src="https://api-maps.yandex.ru/2.0-stable/?load=package.standard&lang=ru-RU" type="text/javascript"></script>
</head>
<body id="main">
<header class>
<div class="center-wrapper">
<div class="content clearfix">
<div class="logotype">
<a href="/" class="logotype logo_link">СРОЧНЫЕ НОВОСТИ</a>
</div>
<nav>
</nav>
</div>
</div>
</header>
<main>
<div class="center-wrapper">
<div class="content" id="jsContentWrapper">
<div class="container" id="app"><!-- Контент -->
<!--noindex-->
<div id="br_autoload">
</div>
<!--/noindex-->
<section class="clearfix">
<h1>ПРОКРУТИТЕ СТРАНИЦУ ВНИЗ</h1>
</section>
</div>
</div>
<!-- /Контент -->
</div>
</main>
<script>
$(document).ready(function () {
var inProgress = false;
$(window).scroll(function () {
if ($(window).scrollTop() + $(window).height() >= $(document).height() - 300 && !inProgress) {
var newsID = '<?php echo ''; ?>';
$.ajax({
url: 'config/news_load.php',
method: 'POST',
data: {'nid': newsID},
beforeSend: function () {
inProgress = true;
}
}).done(function (data) {
$("#br_autoload").append(data);
inProgress = false;
});
}
});
});
</script>
<script>
var crabs_modalled = '1';
var crabs_modalled_tab = '0';
var crabs_modalled_id = '41';
</script>
<script src="js/buildall.js"></script>
<footer style="display:none">
<div class="center-wrapper">
<div class="content clearfix">
<div class="column">
<a href="/" class="logotype logo_link">СРОЧНЫЕ НОВОСТИ</a>
<div class="copyright">
Copyright © 2021 «СРОЧНЫЕ НОВОСТИ». Все права защищены.<br>Для детей старше 16 лет.
</div>
</div>
<div class="column clearfix"></div>
</div>
</div>
</footer>
<script src="js/bootstrap.min.js"></script>
<script src="js/crabs_best.js"></script>
</body></html>