44 lines
991 B
PHP
44 lines
991 B
PHP
<?php
|
|
// Main page
|
|
|
|
$IS_FRONTEND = true;
|
|
|
|
// Includes
|
|
require_once("api/_auth.php");
|
|
require_once("api/user/index.php");
|
|
require_once("api/post/index.php");
|
|
|
|
|
|
|
|
$PAGE_TITLE = "Index"; // TODO
|
|
|
|
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<?php require_once("front/head.php"); ?>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="nibbabox notsearchbox">
|
|
<img src="test.png">
|
|
</div>
|
|
<?php
|
|
require_once("front/searchbox.php");
|
|
require_once("front/counter.php");
|
|
?>
|
|
<div class="nibbabox notsearchbox">
|
|
<p>
|
|
Serving 3,451,953 posts<br>
|
|
<a title="Takedown Information" href="./static/takedown">Takedown Policy and Process</a> |
|
|
<a title="Contact Us" href="./static/contact">Contact Us</a> |
|
|
<a title="Advertising with Us" href="./help/advertising">Advertising</a> |
|
|
<a title="Terms of Service" href="./static/terms_of_service">Terms of Service</a> |
|
|
<a title="Privacy Policy" href="./static/privacy">Privacy</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|