-
Notifications
You must be signed in to change notification settings - Fork 152
Open
Description
First of all: Thanks for the great template!
I made a few small changes on my copy ... so I'd like to feed this back: This is how you can make the Recent Posts section dynamic:
<div class="recent-posts">
<h1>Recent Posts</h1>
<ul class="homepage-posts most-recent">
{% for post in site.posts limit:1 %}
<li><span><h4><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> <span class="badge"><smaller>FRESH</smaller></span><time class="pull-right">{{ post.date | date: '%B %d, %Y' }}</h4></time></span></h4></span></li>
{% endfor %}
{% for post in site.posts offset:1 limit:4 %}
<ul class="homepage-posts">
<li><span><h4><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a><time class="pull-right">{{ post.date | date: '%B %d, %Y'}}</h4></time></span></h4></span></li>
</ul>
{% endfor %}
<ul>
<a href="{{ site.baseurl }}/list.html">View More...</a>
</ul>
</div>
Metadata
Metadata
Assignees
Labels
No labels