Module: Fonts::Rails::ActionView::Base
- Defined in:
- lib/fonts/rails/action_view/base.rb
Instance Method Summary collapse
Instance Method Details
#google_fonts_link_tag(family) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/fonts/rails/action_view/base.rb', line 6 def google_fonts_link_tag(family) tag( :link, { rel: :stylesheet, type: Mime::CSS, href: "http://fonts.googleapis.com/css?family=#{family}" }, false, false ) end |