Hi,
I have a variable defined in my header web template called contentPageTemplate
{% assign contentPageTemplate = "Help-Content" %}
I have the following content template applied to my page and am wanting to use the variable defined in my header for use in the extends definition; but cannot get this to work.
{% extends contentPageTemplate %}
{% block main %}
This is my page
{% endblock %}
Any ideas how this could be achieved?
Thanks,