Skip to content

Instantly share code, notes, and snippets.

@xenda
Created September 27, 2010 20:55
Show Gist options
  • Select an option

  • Save xenda/599813 to your computer and use it in GitHub Desktop.

Select an option

Save xenda/599813 to your computer and use it in GitHub Desktop.
.widget
.top
.middle
%h3 Comparte esta pagina
.links
%a.facebook{:href=>"#"}
%a.twitter{:href=>"#"}
%a.email{:href=>"#"}
%p.share
.bottom
- widget_tag "Comparte esta página" do
.links
%a.facebook{:href=>"#"}
%a.twitter{:href=>"#"}
%a.email{:href=>"#"}
%p.share
def widget_tag (name = nil, &block)
haml_tag ".widget" do
haml_tag ".top"
haml_tag ".middle" do
haml_tag :h3, name if name
haml_concat capture(&block)
end
haml_tag ".bottom"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment