First working version
This commit is contained in:
commit
8bc7556cf8
6 changed files with 246 additions and 0 deletions
11
assets/item.html
Normal file
11
assets/item.html
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue