Reputation: 4360
Is it possible to assign the value of a variable to a block? Either it is not possible or I'm doing it wrong.
Example:
- var $foo = "bar" block #{$foo} div.a_class Some content
Upvotes: 0
Views: 448
Reputation: 19040
This is not possible because blocks are compile-time, not runtime.
Upvotes: 1