website/tur/p/index.php

40 lines
1.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<!--
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="~vern kullanıcılarının PGP anahtarlarının listesi">
<link rel="preload" href="//gcdn.vern.cc/vernsite/style.css">
<link rel="stylesheet" href="//gcdn.vern.cc/vernsite/style.css">
<title>PGP | ~vern</title>
</head>
<body>
<?php
$list = '';
$subdirs = scandir('/vm', SCANDIR_SORT_ASCENDING);
foreach ($subdirs as $subdir) {
if ($subdir != '.' && $subdir != '..') {
$ph_index = '/sshfs/home/' . $subdir . '/public_html/index.';
if (is_readable('/vm/' . $subdir . '/.pgp.asc') && !is_file('/vm/' . $subdir . '/.pgp.hide'))
$list .= " <li><a href='/p/$subdir.asc'>$subdir</a></li>\n";
}
}
?>
<!--#include file="/tur/nav.php" -->
<div class=h><h1 id=pgp>Üye PGP anahatları</h1> <a aria-hidden=true href=#pgp>#pgp</a></div>
<p>Bu PGP anahtarı olan ~vern üyelerinin lisesi.</p>
<ol>
<?php echo $list; ?>
</ol>
<!--#include file="/tur/footer.cgi" -->
</body>
</html>