diff options
-rw-r--r-- | about.php | 9 | ||||
-rw-r--r-- | header.php | 8 | ||||
-rw-r--r-- | index.php | 12 |
3 files changed, 15 insertions, 14 deletions
@@ -4,10 +4,10 @@ require($_SERVER["DOCUMENT_ROOT"] . "/head.php"); require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ?> <p> - This site is a member of the <a href="nullring.xyz">Null Webring</a>. + This site is a member of the <a href="https://nullring.xyz">Null Webring</a>. </p> -<pre> - +<div style="width: 100%; text-align: center;"> + <pre style="display: inline-block; text-align: left;"> ,▄▓▄, ╓g▄▓▓▓▓▓▓▓▓▓▓▓▓▄▄╖ ,▓▓▓▓▓▓▓, g▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄, ╔▓▓▓▓▓▓▓▓▓" @@ -33,5 +33,6 @@ require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ╚▓▓▓▓▓▓▓▓" ╙▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀" ▀▓▓▓▀ ╙"╙╙╙╙"╙ ╙ -</pre> + </pre> +</div> <?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?> @@ -1,9 +1,9 @@ <h1><?php echo $title; ?></h1> <?php if (getcwd() == $_SERVER["DOCUMENT_ROOT"]) { ?> - <h3 class="nav"><a href="/">[Home]</a> | <a href="/about">[About]</a></h3> + <h3 class="nav"><a href="/">[Home]</a> | <a href="/about.php">[About]</a></h3> <?php } else if (basename($_SERVER['PHP_SELF']) == "index.php") { ?> - <h3 class="nav"><a href="/">[Home]</a> | <a href="/about">[About]</a> | <a href="..">[Back]</a></h3> + <h3 class="nav"><a href="/">[Home]</a> | <a href="/about.php">[About]</a> | <a href="..">[Back]</a></h3> <?php } else { ?> - <h3 class="nav"><a href="/">[Home]</a> | <a href="/about">[About]</a> | <a href=".">[Back]</a></h3> -<?php } ?>
\ No newline at end of file + <h3 class="nav"><a href="/">[Home]</a> | <a href="/about.php">[About]</a> | <a href=".">[Back]</a></h3> +<?php } ?> @@ -6,25 +6,25 @@ require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); <p> This is my Web site for cool things, like my programming, music, writing, photography, and anything else I think of. - I'm a social sciences student at UVic in Canada, though I'm also passionate about technology. I also have another + I'm a student at The University of Victoria in Canada, though I try to find time to do things other than schoolwork. I also have another website at kaistevenson.com, if you don't like this one :(. You can email me at kai@kaistevenson.com. </p> <ul> <li> - <h3><a href="writing/">Writing../</a> /* Proudly part of the 84% */</h3> + <h3><a href="writing/">Writing../</a> /* Proudly part of the 84% */</h3> </li> <li> - <h3><a href="programming/">Programming../</a> /* Easier than it looks */</h3> + <h3><a href="programming/">Programming../</a> /* Easier than it looks */</h3> </li> <li> - <h3><a href="music/">Music../</a> /* Dmin7, G7, CMaj7 */</h3> + <h3><a href="music/">Music../</a> /* Dmin7, G7, CMaj7 */</h3> </li> <li> - <h3><a href="photography/">Photography../</a> /* Still alive */</h3> + <h3><a href="photography/">Photography../</a> /* Still alive */</h3> </li> <li> - <h3><a href="etc/">Etc../</a> /* Everything else */</h3> + <h3><a href="etc/">Etc../</a> /* Everything else */</h3> </li> </ul> <?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?> |