Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Last active August 22, 2017 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/b9d6407707c18520bb9fdb48714bd3b9 to your computer and use it in GitHub Desktop.
Save shankardevy/b9d6407707c18520bb9fdb48714bd3b9 to your computer and use it in GitHub Desktop.
defmodule MangoWeb.LayoutView do
use MangoWeb, :view
import MangoWeb.CartView, only: [cart_count: 1]
def cart_link_text(conn) do
raw """
<i class="fa fa-shopping-cart"></i> <span class="cart-count">#{cart_count(conn)}</span>
"""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment