Created
November 20, 2015 19:21
-
-
Save briward/207c98895a04e55189e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="pure-g <?php print $classes;?>"> | |
<?php if ($left): ?> | |
<div class="pure-u-1-2<?php print $left_classes; ?>"> | |
<?php print $left; ?> | |
</div> | |
<?php endif; ?> | |
<?php if ($right): ?> | |
<div class="pure-u-1-2<?php print $right_classes; ?>"> | |
<?php print $right; ?> | |
</div> | |
<?php endif; ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment