mini.tt (2112B)
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>[% feed.title %]</title>
11 <meta name="description" content="[% feed.description %]">
12 [% IF feed.author %]
13 <meta name="author" content="[% feed.author %]">
14 [% END %]
15 <link rel="icon" type="image/png" href="assets/favicon.png">
16 <link rel="icon" type="image/png" sizes="16x16"
17 href="assets/favicon_16.png"
18 />
19 <link rel="icon" type="image/png" sizes="32x32"
20 href="assets/favicon_32.png"
21 />
22 <link rel="icon" type="image/png" sizes="64x64"
23 href="assets/favicon_64.png"
24 />
25 <link rel="icon" type="image/png" sizes="128x128"
26 href="assets/favicon_128.png"
27 />
28 <link rel="apple-touch-icon" href="assets/favicon.png">
29 <link rel="stylesheet" type="text/css" href="assets/css/simple.min.css">
30 <link rel="stylesheet" type="text/css" href="assets/css/custom.css">
31 <link rel="stylesheet" type="text/css" href="assets/css/mini.css">
32 <meta name="viewport" content="width=device-width, initial-scale=1.0">
33 <meta name="robots" content="noindex">
34 </head>
35
36 <body>
37
38 <main>
39
40 <!-- Content Entries -->
41 [% FOREACH entry IN feed.entries %]
42 <section data-inactive="[% entry.issued | html %]">
43
44 <a
45 target="_blank"
46 rel="nofollow ugc"
47 href="[% entry.link | url | html %]"
48 >
49 <strong>[% entry.title | html %]</strong>
50 </a>
51 <div style="width:100%;">
52 <em style="margin-right:0.25em;color:var(--border);">
53 <!--DOMAIN src="[% entry.link | url | html %]">-->
54 </em>
55 [% IF entry.issued %]
56 <em style="margin-left:0.25em;color:var(--border);">
57 [% entry.issued | html %]
58 </em>
59 [% END %]
60 </div>
61 </section>
62 [% END %]
63
64 </main>
65 </body>
66 </html>