pub / newsplanet

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

index.tt (4111B)


      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     <link rel="alternate" title="[%feed.title %]" type="application/atom+xml" href="<!--XML-->">
     24     <link rel="alternate" title="[%feed.title %]" type="application/opml+xml" href="<!--OPML-->">
     25     <link crossorigin="use-credentials" rel="manifest" href="<!--MANIFEST-->">
     26     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     27     <meta name="robots" content="noindex">
     28   </head>
     29 
     30   <body onload="check_articles();">
     31 
     32     <header>
     33       <nav>
     34         <!-- "Overview" -->
     35         <a href="/">Overview</a>
     36         <!-- RSS Button -->
     37         <a href="<!--XML-->" title="Subscribe to all these feeds via your own RSS reader">RSS</a>
     38         <!-- OPML Button -->
     39         <a href="<!--OPML-->" title="Import all these feeds into your own RSS reader">OPML</a>
     40         <!-- Privacy Policy -->
     41         <a href="https://www.jayvii.de/privacy/#newsjayviide" target="_blank">
     42           Privacy
     43         </a>
     44       </nav>
     45       <!-- Feed Title -->
     46       <h1>[% feed.title | html %]</h1>
     47       <p>[% feed.description | html %]</p>
     48     </header>
     49 
     50     <main>
     51 
     52         <!--
     53           This is updated by find-and-replace
     54           WORKAROUND: [% feed.modified %] is hardcoded to UTC
     55         -->
     56         <p>
     57           <!--UPDATED-->
     58         </p>
     59 
     60         <!-- This is updated by find-and-replace-->
     61         <!-- <details> -->
     62           <!-- <summary style="width:100%;">Feeds</summary> -->
     63             <!-- <div class="button-row"> -->
     64               <!-- <a href=<!--XML--> class="button" title="Subscribe to all these feeds via your own RSS reader">Subscribe via RSS</a> -->
     65               <!-- <a href=<!--OPML--> class="button" title="Import all these feeds into your own RSS reader">Download OPML</a> -->
     66             <!-- </div> -->
     67 
     68             <div style="margin-left:1em;">
     69             <!--FEEDS-->
     70             </div>
     71         </details>
     72 
     73         <!-- Sub Feed Entries -->
     74         <!--SUBFEED-->
     75 
     76         <!-- Content Entries -->
     77         [% FOREACH entry IN feed.entries %]
     78         <section data="[% entry.issued | html %]">
     79           <!-- Headline -->
     80           <h3 style="margin-bottom:5px;">
     81             <a href="[% entry.link | url | html %]" target="_blank" rel="nofollow">
     82               [% entry.title | html %]
     83             </a>
     84           </h3>
     85           <!-- Information -->
     86           <div style="width:100%;margin-bottom:1em;">
     87             <em style="margin-right:0.25em;color:var(--border);">
     88               <!--DOMAIN src="[% entry.link | url | html %]">-->
     89             </em>
     90             [% IF entry.issued %]
     91             <em style="margin-left:0.25em;color:var(--border);">
     92               [% entry.issued | html %]
     93             </em>
     94             [% END %]
     95           </div>
     96           <!-- Content -->
     97           <div class="article_content">
     98             [% IF entry.summary.body %]
     99               <p><!--start-->[% entry.summary.body  %]<!--end--></p>
    100             [% ELSE %]
    101                 <!--start-->[% entry.content.body %]<!--end-->
    102             [% END %]
    103           </div>
    104         </section>
    105         [% END %]
    106 
    107     </main>
    108   </body>
    109 </html>