Advertisement
Guest User

Untitled

a guest
May 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php CSS_Modules\start('foo', 'component/main-article'); ?>
  2. <article class="{foo.section}">
  3. <h1 class="{foo.heading}">My style is scoped.</h1>
  4. </article>
  5. <?php $foo.ob_get_clean(); ?>
  6.  
  7. <?php $cn = CSS_Modules\get_class_name; ?>
  8. <article class="<?php echo $cn('foo', 'section'); ?>">
  9. <h1 class="<?php echo $cn('foo', 'heading'); ?>">My style is scoped.</h1>
  10. </article>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement