Looks like I’ve got my answer as to how to do conditionals. I got this from the css3 draft:
body > h2:not(:first-of-type):not(:last-of-type)
So, conditionals will probably look like:
#favorite_song:ctrl.empty($user.name){
content:lang.i18n(â€unknown_songâ€);
}
#favorite_song:ctrl.equals($user.name, “Joeâ€){
content: “Some Songâ€;
}
#favorite_song:ctrl.equals($user.name, “Aliceâ€){
content:â€The Muppet Songâ€;
}
#favorite_song:ctrl.equals($user.name, “Corbinâ€){
content:â€Blue’s Cluesâ€;
}