Remove "Recent Posts" section

This commit is contained in:
deathrow 2022-12-28 18:41:57 -05:00
parent 0cf94826e7
commit 76780c5df8
No known key found for this signature in database
GPG Key ID: FF39D67A22069F73

View File

@ -64,21 +64,6 @@
</center>
</div>
{% endif %}
{% if site.blog == true %}
<div class="posts-list">
<a href="{{ '/blog' | prepend: site.baseurl }}">
<h4>Recent Posts:</h4>
</a>
<ul>
{% for i in (1..site.recent_posts) %}
{% assign post = site.posts[i] %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
</div>