Blogs

How do show blogs in chronological order in the dawn theme? Please help me if anyone know

Hi @Abdurrehman

I understood your concern. I came to know that you have to add custom code to main-blog.liquid file. I hope this can help you to resolve the issue.

{% assign blogArticles = blog.articles | reverse %}
{%- for article in blogArticles -%}
  
  {%- render 'article-card', article: article, show_image: section.settings.show_image -%}
  

{%- endfor -%}

Please check the attached screenshot:

Thank you.

Thanks really appreciate your help :slightly_smiling_face: