A user needed to modify a Liquid template to skip the most recent blog post and start displaying from the second-most recent post.
Problem: The existing blog loop was showing all posts starting from the latest one.
Solutions provided:
Counter-based approach: Add a post_count variable and use a conditional {% if post_count > 0 %} to skip the first iteration, incrementing the counter after each loop.
Offset parameter: Use {% for article in blog.articles offset: 1 %} combined with the counter logic to skip the first post more explicitly.
Both solutions maintain the existing article styling and content logic while excluding the latest post from the display.
Resolution: The original poster confirmed the solutions worked and acknowledged their mistake.
Summarized with AI on October 31.
AI used: claude-sonnet-4-5-20250929.