Skip to content

Commit

Permalink
Fix posts
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFenixio authored May 1, 2024
1 parent 6cd5a90 commit d80ced5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url | relative_url}}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</body>
</html>
</html>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url | relative_url}}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>

0 comments on commit d80ced5

Please sign in to comment.