I've fallen in love with Jade, and can't bear to se any more, but now I have a WordPress theme to design..
So.. I use Codekit, and it handles jade just fine - can I somehow get it to use jade.php instead of the node module? (I couldn't find any packages which mentioned php when i searched npm find jade | grep php
)
Could this be accomplished with a grunt watch task?
I'd prefer not to install jade.php in the theme and have it run there.
Also, I'm aware that I can escape the php..
#sidebar1.sidebar.fourcol.last.clearfix(role="complementary")
| <?php if ( is_active_sidebar( 'sidebar1' ) ) : ?>
| <?php dynamic_sidebar( 'sidebar1' ); ?>
| <?php else : ?>
// This content shows up if there are no widgets defined in the backend.
.alert.alert-help
p <?php _e( 'Please activate some Widgets.', 'bonestheme' ); ?>
| <?php endif; ?>
But I'd love to use jade conditionals.. is that greedy?