diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..cc0b1bd --- /dev/null +++ b/index.php @@ -0,0 +1,36 @@ +<?php + +// Get lists +$lists = scandir("/var/spool/mlmmj/"); +$lists = array_diff($lists, array(".", "..")); + +?> + +<!doctype html> +<html> + <head> + <meta charset="UTF-8"> + <link rel="stylesheet" type="text/css" href="/style.css"> + <title>ARFNET Lists</title> + </head> + <body> + <header><a href="https://arf20.com/"> + <img src="arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span> + </a></header> + <hr> + <main> + <div class="row"> + <div class="col8"> + <h2 class="center">ARFNET Mailing Lists</h2> + <ul> + <?php + foreach ($lists as $list) { + echo "<li>".$list." <a href=\"subscribe.php?list=".$list."\">subscribe</a> <a href=\"/archive/".$list."\">archive</a></li>\n"; + } + ?> + </ul> + </div> + </div> + </main> + </body> +</html> |