Created
September 27, 2010 20:55
-
-
Save xenda/599813 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
| .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 |
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
| 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