Display blog posts starting from second most recent post

I want to hide the latest post from the blog loop - so the first post it shows is the second most recent. Editing in .liquid.


    {% for article in blog.articles %}
      

      {% assign article_content = article.excerpt_or_content %}
      {% assign featured_image_src='' %}

      {% if article.image %}
        {% assign featured_image_src=article | img_url: '1024x1024' %}
      {% elsif article_content contains '

    {% endfor %}

Hi @maslerdanch , use this code instead:


    {% assign articles_to_display = blog.articles | slice: 1, blog.articles.size %}

    {% for article in articles_to_display %}
      

      {% assign article_content = article.excerpt_or_content %}
      {% assign featured_image_src='' %}

      {% if article.image %}
        {% assign featured_image_src=article | img_url: '1024x1024' %}
      {% elsif article_content contains '

    {% endfor %}

@maslerdanch

Try this, {% for article in blog.articles %}, insert offset:1

Like, {% for article in blog.articles offset:1 %}