First working version

This commit is contained in:
Semubico 2025-07-03 15:16:21 +03:00
commit 8bc7556cf8
6 changed files with 246 additions and 0 deletions

11
assets/item.html Normal file
View file

@ -0,0 +1,11 @@
<div class="folder">{{title.content}}</div>
<div id="subfeed1" class="feed">
{{#each entries}}
<div class="feed-item">
<h2><a href="{{this.id}}">{{this.title.content}}</a></h2>
<p>By: {{this.authors.0.name}}</p>
<p>Published on: <time datetime="{{this.updated}}">{{this.updated}}</time></p>
<p>{{summary.content}}</p>
</div>
{{/each}}
</div>