Dynamic SEO

Hi,

Is it possible to do dynamic SEO

Not sure if this is what you mean, but:

Here are the most useful SEO variables in Shopify Liquid:

Product Variables:

liquid

{{ product.title }}
{{ product.description }}
{{ product.vendor }}
{{ product.price }}
{{ product.type }}
{{ product.tags }}
{{ product.available }}

Collection Variables:

liquid

{{ collection.title }}
{{ collection.description }}
{{ collection.products_count }}
{{ collection.all_tags }}

Page/Blog Variables:

liquid

{{ page.title }}
{{ page.content }}
{{ article.title }}
{{ article.excerpt }}
{{ article.author }}

Shop Variables:

liquid

{{ shop.name }}
{{ shop.description }}
{{ shop.address }}
{{ shop.domain }}

Common Meta Pattern:

liquid

<title>
  {% if template contains 'product' %}
    {{ product.title }} - {{ shop.name }}
  {% elsif template contains 'collection' %}
    {{ collection.title }} - {{ shop.name }}
  {% else %}
    {{ page_title }} - {{ shop.name }}
  {% endif %}
</title>