60 lines
904 B
PHP
60 lines
904 B
PHP
<?php
|
|
|
|
//if ($_SERVER['REMOTE_ADDR'] !== '62.210.138.29') {
|
|
die();
|
|
//}
|
|
|
|
function title() {
|
|
echo "News - 4chan";
|
|
}
|
|
|
|
function stylesheet() {
|
|
if (IS_4CHANNEL) {
|
|
echo('//s.4cdn.org/css/news_blue.1.css');
|
|
}
|
|
else {
|
|
echo('//s.4cdn.org/css/news.12.css');
|
|
}
|
|
}
|
|
|
|
$top_box_count = 1;
|
|
function top_box_title_0() {
|
|
?>News<?
|
|
}
|
|
|
|
function top_box_content_0() {
|
|
if (isset($_GET['all'])) $all=1;
|
|
if(!$all) {
|
|
$file="data/newscontent.html";
|
|
} else {
|
|
$file="data/newscontent_all.html";
|
|
}
|
|
|
|
echo file_get_contents($file);
|
|
|
|
if(!$all) { ?>
|
|
<div class="content" id="oldnews" style="text-align: center;">
|
|
<h3>OLDER NEWS...</h3>
|
|
<br />
|
|
<span style="font-size: larger;"><a href="?all#oldnews">Click here</a> to view all news posts.</span>
|
|
</div>
|
|
|
|
|
|
|
|
<?
|
|
}
|
|
}
|
|
|
|
function bottom_ad_728x90() {
|
|
?>
|
|
|
|
<?
|
|
}
|
|
|
|
|
|
|
|
$left_box_count = 0;
|
|
|
|
$right_box_count = 0;
|
|
|
|
include 'frontpage_template-test.php';
|