Small fixes.
This commit is contained in:
parent
15b8bb5265
commit
962efc2b88
|
@ -137,7 +137,7 @@
|
||||||
|
|
||||||
<h2>About</h2>
|
<h2>About</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><p>This website is <a href="http://metanohi.org/aboutme/"><em>Niels</em></a>' playground.</p></li>
|
<li><p>This website is <a href="http://metanohi.org/about/niels"><em>Niels</em></a>' playground.</p></li>
|
||||||
<li><p>It contains mainly JavaScript tests.</p></li>
|
<li><p>It contains mainly JavaScript tests.</p></li>
|
||||||
<li><p><em>Niels</em> is not that fond of JavaScript, but he can't help but play with it. He thinks it's a disease.</p></li>
|
<li><p><em>Niels</em> is not that fond of JavaScript, but he can't help but play with it. He thinks it's a disease.</p></li>
|
||||||
<li><p>The logo (<a href="media/nohix-logo.svg">also available in SVG<a/>) is licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/">Attribution-Share Alike 3.0 Unported license</a>. Niels is the author.</p></li>
|
<li><p>The logo (<a href="media/nohix-logo.svg">also available in SVG<a/>) is licensed under the <a href="http://creativecommons.org/licenses/by-sa/3.0/">Attribution-Share Alike 3.0 Unported license</a>. Niels is the author.</p></li>
|
||||||
|
|
|
@ -5,7 +5,7 @@ for ($i=0;$i<$fn;$i++) {
|
||||||
$link=$files[$i];
|
$link=$files[$i];
|
||||||
$imglink=explode(".",$link);
|
$imglink=explode(".",$link);
|
||||||
$imglink=$imglink[0].".png";
|
$imglink=$imglink[0].".png";
|
||||||
if (!is_dir($link) && $link!="." && $link!=".." && $link!="index.php") {
|
if (!is_dir($link) && $link!="." && $link!=".." && $link!="index.php" && $link[0] != '.') {
|
||||||
$fo=fopen($link,"r");
|
$fo=fopen($link,"r");
|
||||||
$fr=fread($fo,filesize($link));
|
$fr=fread($fo,filesize($link));
|
||||||
fclose($fo);
|
fclose($fo);
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>Welcome to Eon Aton!</h3>
|
<h3>Welcome to Eon Aton!</h3>
|
||||||
<h6>Eon Aton is a multisided entertainment center that consists of a game and a story.</h6>
|
<h6>Eon Aton is a multisided entertainment center that consists of a game and a story.</h6>
|
||||||
<p>The game tries to mimic retro style RPGs, while the story is a mix of fantasy and science fiction. Eon Aton is a world of its own, merging reality with fantasy. The concept is still in beta fase, though. But that will change someday.</p><br />
|
<p>The game tries to mimic retro style RPGs, while the story is a mix of fantasy and science fiction. Eon Aton is a world of its own, merging reality with fantasy. The concept is still in beta fase, though. But that will change someday.</p><br />
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<a id='play' href='game/'>Play Eon Aton</a>
|
<a id='play' href='game/'>Play Eon Aton</a>
|
||||||
<h5 class='center'>Note: The game is still in beta fase.</h5>
|
<h5 class='center'>Note: The game is still in beta fase.</h5>
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>Instructions</h3>
|
<h3>Instructions</h3>
|
||||||
<p>Use the arrow keys to walk.</p>
|
<p>Use the arrow keys to walk.</p>
|
||||||
<p>Press Shift while using the arrow keys to run.</p>
|
<p>Press Shift while using the arrow keys to run.</p>
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>Coming when the game nears a finished state.</p>
|
<p>Coming when the game nears a finished state.</p>
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>Technical information</h3>
|
<h3>Technical information</h3>
|
||||||
<p>When finished, Eon Aton will use a combination of JavaScript and XML to power its engine. The JavaScript code will hold the basic information on how to do things, and the XML file will tell the JavaScript code what to do.</p><br />
|
<p>When finished, Eon Aton will use a combination of JavaScript and XML to power its engine. The JavaScript code will hold the basic information on how to do things, and the XML file will tell the JavaScript code what to do.</p><br />
|
||||||
<p><a href='game/info.xml'>The XML file</a></p><br />
|
<p><a href='game/info.xml'>The XML file</a></p><br />
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>The story</h3>
|
<h3>The story</h3>
|
||||||
<p><a href='story/eonaton.pdf'>PDF version</a></p>
|
<p><a href='story/eonaton.pdf'>PDF version</a></p>
|
||||||
<p><a href='story/eonaton.odt'>ODT version</a></p>
|
<p><a href='story/eonaton.odt'>ODT version</a></p>
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>FAQ</h3>
|
<h3>FAQ</h3>
|
||||||
<h6>(although nobody actually asked these questions..)</h6><br />
|
<h6>(although nobody actually asked these questions..)</h6><br />
|
||||||
<p style='color:#ff0000'>Q: What's this story about?</p>
|
<p style='color:#ff0000'>Q: What's this story about?</p>
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>Who is behind this oddity in which the ulterior purpose is to take over the world? (Oops.. I guess I shouldn't have said that..)</p>
|
<p>Who is behind this oddity in which the ulterior purpose is to take over the world? (Oops.. I guess I shouldn't have said that..)</p>
|
||||||
<p>Who has spent hours finishing this project with no real purpose?</p>
|
<p>Who has spent hours finishing this project with no real purpose?</p>
|
||||||
<p>Who has written code that's too messy for others to be able to understand it?</p><br />
|
<p>Who has written code that's too messy for others to be able to understand it?</p><br />
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>Images</h3>
|
<h3>Images</h3>
|
||||||
<p>Here's a couple of logos and such that you can freely download and use yourself.</p><br />
|
<p>Here's a couple of logos and such that you can freely download and use yourself.</p><br />
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>You can contact me at <a href='mailto:ns@metanohi.org'>ns@metanohi.org</a>.</p>
|
<p>You can contact me at <a href='mailto:ns@metanohi.org'>ns@metanohi.org</a>.</p>
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h5>Terms of Use</h5>
|
<h5>Terms of Use</h5>
|
||||||
<h6>Version 7.5.1.23.5</h6>
|
<h6>Version 7.5.1.23.5</h6>
|
||||||
<pre id='use'>
|
<pre id='use'>
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<h3>Privacy Policy</h3>
|
<h3>Privacy Policy</h3>
|
||||||
<p>(Shit.. I forgot to make one. Better just use the standard version..)</p>
|
<p>(Shit.. I forgot to make one. Better just use the standard version..)</p>
|
||||||
<br />
|
<br />
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>The game is GPL, the story is CC-BY-SA.</p>
|
<p>The game is GPL, the story is CC-BY-SA.</p>
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>I really like time machines.</p>
|
<p>I really like time machines.</p>
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p>Lizards are really fascinating creatures.</p>
|
<p>Lizards are really fascinating creatures.</p>
|
|
@ -1,2 +1 @@
|
||||||
<?php @header("location:."); ?>
|
|
||||||
<p><a href='../browse/#eonaton/index.php'>See source code.</a></p>
|
<p><a href='../browse/#eonaton/index.php'>See source code.</a></p>
|
|
@ -62,7 +62,7 @@ if ($pagetype>$type-1 || ($pagetype==0 && $pagesite>$menu->size()-1) || ($pagety
|
||||||
|
|
||||||
<div id='footer'>
|
<div id='footer'>
|
||||||
<?php echo $footer_output; ?>
|
<?php echo $footer_output; ?>
|
||||||
<a href='../'>nqpz</a>
|
<a href='http://metanohi.name/'>metanohi</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue