initial commit
This commit is contained in:
commit
6c1c2fc043
11 changed files with 3112 additions and 0 deletions
9
templates/posts_list.html.hbs
Normal file
9
templates/posts_list.html.hbs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<h2 style="display: flex; justify-content: space-between; align-items: center;">
|
||||
Posts
|
||||
<span style="cursor: pointer;" hx-on:click="document.getElementById('sidebar').innerHTML = ''">X</span>
|
||||
</h2>
|
||||
<ul>
|
||||
{{#each posts}}
|
||||
<li><a href="{{path}}">{{title}} - {{date}}</a></li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
Loading…
Add table
Add a link
Reference in a new issue