index.php (2509B)
1 <!-- SPDX-License-Identifier: AGPL-3.0-or-later
2 SPDX-FileCopyrightText: 2021-2025 JayVii <jayvii[AT]posteo[DOT]de>
3 -->
4
5 <!DOCTYPE html>
6 <html>
7 <head>
8 <meta charset="utf-8">
9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
10 <title>Newsplanet - Planet-style newsfeed</title>
11 <meta name="description" content="Planet-style newsfeed">
12 <link rel="icon" type="image/png" href="assets/favicon.png">
13 <link rel="icon" type="image/png" sizes="16x16" href="assets/favicon_16.png">
14 <link rel="icon" type="image/png" sizes="32x32" href="assets/favicon_32.png">
15 <link rel="icon" type="image/png" sizes="64x64" href="assets/favicon_64.png">
16 <link rel="icon" type="image/png" sizes="128x128" href="assets/favicon_128.png">
17 <link rel="apple-touch-icon" href="assets/favicon.png">
18 <link rel="stylesheet" type="text/css" href="assets/css/simple.min.css">
19 <link rel="stylesheet" type="text/css" href="assets/css/custom.css">
20 <link crossorigin="use-credentials" rel="manifest" href="manifest.json">
21 <meta name="viewport" content="width=device-width, initial-scale=1.0">
22 <meta name="robots" content="noindex">
23 </head>
24
25 <body>
26
27 <header>
28 <nav>
29 <!-- Source Code -->
30 <a href="https://src.jayvii.de/pub/newsplanet/" target="_blank">
31 Source
32 </a>
33 <!-- Privacy Policy -->
34 <a href="https://www.jayvii.de/privacy/#newsjayviide" target="_blank">
35 Privacy
36 </a>
37 </nav>
38 <!-- Feed Title -->
39 <h1>Newsplanet</h1>
40 </header>
41
42 <main>
43
44 <p>
45 Planet-Style Newsfeed generated with
46 <a href="https://github.com/davorg-cpan/perlanet/" target="_blank">perlanet</a>.
47 </p>
48
49 <table>
50
51 <?php
52 foreach (glob("perlanetrc/[0-9a-z_]*.yaml") as $yamlfile) {
53 $yaml = explode(PHP_EOL, file_get_contents($yamlfile));
54 $title_arr = array_values(preg_grep("/^title:.*$/", $yaml));
55 $title = preg_replace("/^title:\s*/", "", $title_arr[0]);
56 $desc_arr = array_values(preg_grep("/^description:.*$/", $yaml));
57 $desc = preg_replace("/^description:\s*/", "", $desc_arr[0]);
58 $url_arr = array_values(preg_grep("/^url:.*$/", $yaml));
59 $url = preg_replace("/^url:\s*/", "", $url_arr[0]);
60 ?>
61
62 <tr>
63 <th><?php echo $title; ?></th>
64 <td><?php echo $desc; ?></td>
65 <td><a href="<?php echo $url; ?>" class="button">Open</a></td>
66 </tr>
67
68 <?php
69 }
70 ?>
71
72 </table>
73 </main>
74 </body>
75 </html>