I would like to know if it's possible to add if statement in Front Matter to be selective about using attributes depending on page.url
The pages are generated from .md file virtually from a plugin using a base template so I need to add some conditions in Front Matter if possible.
This is a typical Front Matter
---
...
title: blah
description: blah blah
image: some-image.png
---
I want to do the following:
---
...
title: blah
description: blah blah
{% if page.url == "page1" %}
image: page1-image.png
{% else %}
image: general-image.png
{% endif %}
---