removed post list from home page and got post list to an okay standard

This commit is contained in:
Pagwin 2024-10-26 21:30:38 -04:00
parent 134c81210a
commit 48d3f0303e
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,2 @@
<h2>Hi there, I'm Pagwin</h2> <h2>Hi there, I'm Pagwin</h2>
<p>I post here sometimes</p> <p>I post here sometimes</p>
<h2>Posts</h2>
{{> templates/post-list.html }}

View file

@ -1,3 +1,5 @@
<ul>
{{#posts}} {{#posts}}
<a href="/posts/">{{title}}</a> <li><a href="{{link}}">{{title}}</a> - {{date}}</li>
{{/posts}} {{/posts}}
</ul>