I need to generate this PHP output:
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
which seems currently impossible to achieve with canonical jade syntax, so I used this workaround as a temporarily solution:
body(class=body_classes, "<?php print $attributes?>")
Ideas?
I need to generate this PHP output:
which seems currently impossible to achieve with canonical jade syntax, so I used this workaround as a temporarily solution:
Ideas?