27 lines
		
	
	
		
			779 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			779 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<div id="tabs">
 | 
						|
	<ul>
 | 
						|
<?php
 | 
						|
$tabs = array(
 | 
						|
	"Home" => "/",
 | 
						|
	"Blog" => "/blog/",
 | 
						|
	"Contact" => "/contact/",
 | 
						|
	"Projects" => "/projects/",
 | 
						|
	"Resume" => "/resume/"
 | 
						|
);
 | 
						|
$base_domain = $_SERVER['HTTP_HOST'] == "aclindsay.com";
 | 
						|
 | 
						|
foreach ($tabs as $name => $url) {
 | 
						|
	if ($url == "/") {
 | 
						|
	       if ($base_domain && $_SERVER['REQUEST_URI'] == "/")
 | 
						|
			echo "\t\t<li><a href=\"http://aclindsay.com/\" class=\"current\">Home</a></li>\n";
 | 
						|
	       else
 | 
						|
			echo "\t\t<li><a href=\"http://aclindsay.com/\">Home</a></li>\n";
 | 
						|
	} else if (strncmp($url, $_SERVER['REQUEST_URI'], strlen($url)) == 0)
 | 
						|
		echo "\t\t<li><a href=\"http://aclindsay.com".$url."\" class=\"current\">".$name."</a></li>\n";
 | 
						|
	else
 | 
						|
		echo "\t\t<li><a href=\"http://aclindsay.com".$url."\">".$name."</a></li>\n";
 | 
						|
}
 | 
						|
?>
 | 
						|
	</ul>
 | 
						|
</div>
 |