You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
624 B
PHP
20 lines
624 B
PHP
<?php
|
|
if (isset($_GET['post']) && $_GET['post'] == 'archive'){
|
|
$file = basename($_SERVER['PHP_SELF']);
|
|
echo '<div class="section archivereturn centre">';
|
|
echo '<a href="'.$indexfile.'">';
|
|
echo '<span class="homemessage">Return to '.$message.'</span>';
|
|
echo '</a>';
|
|
echo '</div>';
|
|
include $root.'includes/archivesearchbar.php';
|
|
} else {
|
|
echo '<div class="section homesection centre">';
|
|
echo '<a href="'.$indexfile.'">';
|
|
echo '<span class="homemessage">'.$message.'</span>';
|
|
echo '</a>';
|
|
echo '<br />';
|
|
echo '<span class="homesubmessage">'.$submessage.'</span>';
|
|
echo '</div>';
|
|
}
|
|
?>
|