HTML indention formatting OCD fixes
This commit is contained in:
parent
0488b75beb
commit
96b353a187
@ -18,6 +18,6 @@
|
||||
<div id="header">
|
||||
<div id="header-inner">
|
||||
<div id="title"><a href="http://aclindsay.com">aclindsay<span id="title-inner">.com</span></a></div>
|
||||
<?php include("/home1/aclindsa/public_html/tabs.php"); ?>
|
||||
<?php include("/home1/aclindsa/public_html/tabs.php"); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
42
tabs.php
42
tabs.php
@ -1,26 +1,26 @@
|
||||
<div id="tabs">
|
||||
<ul>
|
||||
<?php
|
||||
$tabs = array(
|
||||
"Home" => "/",
|
||||
"Blog" => "/blog/",
|
||||
"Contact" => "/contact/",
|
||||
"Projects" => "/projects/",
|
||||
"Resume" => "/resume/"
|
||||
);
|
||||
$base_domain = $_SERVER['HTTP_HOST'] == "aclindsay.com";
|
||||
<?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 ($_SERVER['REQUEST_URI'] == "/")
|
||||
echo "<li><a href=\"http://aclindsay.com/\" class=\"current\">Home</a></li>";
|
||||
else
|
||||
echo "<li><a href=\"http://aclindsay.com/\">Home</a></li>";
|
||||
} else if ($base_domain && strncmp($url, $_SERVER['REQUEST_URI'], strlen($url)) == 0)
|
||||
echo "<li><a href=\"http://aclindsay.com".$url."\" class=\"current\">".$name."</a></li>";
|
||||
else
|
||||
echo "<li><a href=\"http://aclindsay.com".$url."\">".$name."</a></li>";
|
||||
}
|
||||
?>
|
||||
foreach ($tabs as $name => $url) {
|
||||
if ($url == "/") {
|
||||
if ($_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 ($base_domain && 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>
|
||||
|
Loading…
Reference in New Issue
Block a user