Suppose I have the following in my template:
[%- pages = [ 'one', 'two', 'three' ] -%]
<p>Go to page [%- ... -%]</p>
Assuming EVAL_PERL
is not set (i.e., I cannot use a [%- PERL -%]
block), what do I need to put inside the [%- ... -%]
above so as to get the following output?
<p>Go to page "a randomly picked element of pages"</p>