22 lines
269 B
PHP
22 lines
269 B
PHP
<?php
|
|
loadem("index");
|
|
showheader(_("CAcert - Policies"));
|
|
?>
|
|
|
|
<h1>CAcert Policies</h1>
|
|
<ul>
|
|
<?php
|
|
|
|
foreach (glob("*.php") as $filename)
|
|
{
|
|
if($filename != "index.php")
|
|
{
|
|
echo "<li><a href='$filename'>$filename</a></li>\n";
|
|
}
|
|
}
|
|
|
|
|
|
?>
|
|
</ul>
|
|
</body>
|
|
</html>
|