Skip to content

Instantly share code, notes, and snippets.

@tbuehlmann
Forked from DriesS/span.haml
Last active December 26, 2015 07:39
Show Gist options
  • Save tbuehlmann/7116496 to your computer and use it in GitHub Desktop.
Save tbuehlmann/7116496 to your computer and use it in GitHub Desktop.
(
%span{:id => "cart-counter" }
= @cart && [email protected]? ? @cart.size : "0"
)
or
(<span id="cart-counter">#{@cart && [email protected]? ? @cart.size : "0"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment