I want the lightness to be a function of order of item on the list
Here's the order variable
{{order}}
Here's the template language I'm trying to modify
.minicard(style="background-color:hsl(354,100%,{{(order * 2)+46}}%)")
What I'm basically trying to do is multiply order by 2 and add 46 to it.
{{order}} works but doing math within the curly brackets doesn't seem to. How do I do simple javascript in a jade template?