Reputation: 2042
In my _config.yml I have these lines.
paginate_label: sayfa
paginate_path: "sayfa/:num"
And I want use a variable inside a variable like this.
paginate_label: sayfa
paginate_path: paginate_label + "/:num"
Is there any way to do this?
Upvotes: 2
Views: 451
Reputation: 52829
You cannot use liquid variables in :
Upvotes: 2