initial commit

This commit is contained in:
sepia 2024-10-24 23:40:31 -05:00
commit 6c1c2fc043
11 changed files with 3112 additions and 0 deletions

View 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>