46 lines
1 KiB
PHP
Executable file
46 lines
1 KiB
PHP
Executable file
<html>
|
|
<?php
|
|
include 'config.php';
|
|
head();
|
|
?>
|
|
<body>
|
|
<img class="banner" src="<?php echo constant('static') . '/img/' . constant('banner'); ?>" /><br>
|
|
<?php
|
|
if (constant("news")) {
|
|
echo "<h3 class='news'>" . constant("news") . "</h3>";
|
|
}
|
|
?>
|
|
<div class="about">
|
|
<p><?php echo constant("sitename"); ?> lets you discover and share niche, non-corporate, hobby websites with others by submitting them to our database.<br>It's intended to help small forum operators, blog authors, and anyone else with a small website recieve traffic without having to market their site.</p>
|
|
</div>
|
|
<hr>
|
|
<table>
|
|
<tr>
|
|
<th>name</th>
|
|
<th>summary</th>
|
|
<th>category</th>
|
|
<th>added</th>
|
|
</tr>
|
|
<?php
|
|
require 'pagination.php';
|
|
getEntries();
|
|
?>
|
|
</table>
|
|
<br>
|
|
<table>
|
|
<tr>
|
|
<?php
|
|
pageButtons();
|
|
?>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<a href="submit.php"><button>+ Add a Site</button></a>
|
|
<a href="random.php"><button>Random Site</button></a>
|
|
<a href="rules.php"><button>Rules</button></a>
|
|
<footer>
|
|
<hr>
|
|
<?php echo constant("footer"); ?>
|
|
</footer>
|
|
</body>
|
|
</html>
|