hbarg/main.php

21 lines
655 B
PHP
Raw Normal View History

2018-06-26 19:13:59 +00:00
<p>This website exists to catalog the bumps of the <a href="https://heartandbrainco.wikia.com">Heart and Brain Co. ARG (link goes to fan wiki)</a> in a nice, neat fashion.</p>
2018-06-27 03:22:25 +00:00
<h2>Arcs + Bumps</h2>
<?php
for($i=1;$i<=3;$i++) {
echo "\t<h3>";
if (file_exists("./arc{$i}.md")) {
echo "<a href='index.php?arc={$i}'>";
}
echo $arc_names[$i];
if (file_exists("./arc{$i}.md")) {
echo "</a>";
}
echo "</h3>\n\t<ul>\n";
2018-06-28 02:17:31 +00:00
foreach(glob("./arc{$i}/bump*.yml") as $bumpyml) {
$num = substr(basename($bumpyml,".yml"),4);
echo "\t\t<li><a href='index.php?arc={$arc_san}&bump={$num}'>Bump {$num}</a></li>\n";
}
2018-06-27 03:22:25 +00:00
echo "\t</ul>\n";
}
?>