This commit is contained in:
WickedJack99
2022-09-26 01:51:50 +02:00
parent 681968568e
commit 50353ee95b
26 changed files with 109 additions and 106 deletions

View File

@@ -3,12 +3,13 @@ layout: default
title: Blog
css_file: styles.css
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h3><a href="{{ '/website' | append: post.url }}">{{ post.title }}</a></h3>
</li>
{% endfor %}
</ul>
<div class="mainDiv">
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h3><a href="{{ '/website' | append: post.url }}">{{ post.title }}</a></h3>
</li>
{% endfor %}
</ul>
</div>