Hello.
I have made theme from scratch (no theme were included from shopify theme store) where I made blog-list section which is visible on homepage. In, blog-list section, I am redirecting article-card.liquid snippet. Article card contains article image, title, publish date of article, author and excerpt of article. Here is the blog-list.liquid section which is on homepage .
and circled image is article-card.
I want main-article page when user click on article-card. so I have given url of the main-article page “article.utrl” in anchor tag. Here is the code of article card.
{% if show_image==true and article.image %}
{% endif %}
#####
{{ article.title }}
{% if show_date %}
{{ article.published_at | time_tag: format: 'date' }}
{% endif %}
{% if show_author %}
{{ article.author }}
{% endif %}
{{ article.excerpt | strip_html | truncatewords: 20 }}
Here is the code of main-article.liquid section which I want to open when someone click on card.
and when I click on article-card it is redirecting to the correct url but is showing that page is not found like this.
Please help me with the solution. Thank You.


