pub / newsplanet

Planet-Style Newsfeed generated with perlanet
git clone https://src.jayvii.de/pub/newsplanet.git
Home | Log | Files | Exports | Refs | README | RSS

mini.tt (2159B)


      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" href="assets/favicon_16.png">
     17     <link rel="icon" type="image/png" sizes="32x32" href="assets/favicon_32.png">
     18     <link rel="icon" type="image/png" sizes="64x64" href="assets/favicon_64.png">
     19     <link rel="icon" type="image/png" sizes="128x128" href="assets/favicon_128.png">
     20     <link rel="apple-touch-icon" href="assets/favicon.png">
     21     <link rel="stylesheet" type="text/css" href="assets/css/simple.min.css">
     22     <link rel="stylesheet" type="text/css" href="assets/css/custom.css">
     23     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     24     <meta name="robots" content="noindex">
     25     <style>
     26       section {
     27         margin-top: 0px;
     28         margin-bottom: 1em;
     29         padding-bottom: 1em;
     30       }
     31       .inactive {
     32         display: none;
     33       }
     34     </style>
     35   </head>
     36 
     37   <body>
     38 
     39     <main>
     40 
     41         <!-- Content Entries -->
     42         [% FOREACH entry IN feed.entries %]
     43         <section data="[% entry.issued | html %]">
     44           <a
     45             target="_blank"
     46             rel="nofollow"
     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>