I am new to Shopify and .liquid files syntax.
I can get two dates currently:
{% assign product_created_date = product.created_at | date: "%a, %b %d, %y" %}
{% assign current_date = 'now' | date: "%a, %b %d, %y" %}
which gives me the current date and also the date when the product was created.
I want to show the users in the theme, the date since the product was posted.
I've read some liquid filters and did some search but couldn't find out exactly how I would find the days since product was created.
Can we calculate it using purely liquid syntax?