tilde/cgi-bin/index.php

26 lines
741 B
PHP

<!DOCTYPE html>
<html>
<head>
<title>cgi-bin</title>
<link rel="stylesheet" href="../gruvbox/gruvbox.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body id="top">
<main>
<h1>cgi-bin</h1>
<p>here are some scripts i've been playing with</p>
<?php foreach (glob("*") as $cgi) {
$cgi = basename($cgi);
if ($cgi === "index.php") continue; ?>
<p>-&gt; <a href="<?=$cgi?>"><?=$cgi?></a></p>
<?php } ?>
<p>sources available on <a href="https://tildegit.org/ben/tilde/src/branch/master/cgi-bin">tildegit</a></p>
</main>
</body>
</html>