I am new to JBake. I saw the default way of creating an index page.
<#list posts as post>
<#if (post.status == "published")>
-- design your posts here
</#if>
</#list>
This pulls up all the posts in descending order.
This looks great, with only one problem which is, I am not sure how to highlight my latest post.
So I want to do something like,
<#list posts as post>
<#if (post.status == "published")>
<#if (this is latest post)>
use highlighted style
</#if>
<#if (this is not a latest post)>
use normal style
</#if>
</#if>
</#list>
How can I achieve this?