Skip to content

Instantly share code, notes, and snippets.

@bithavoc
Forked from jeremyruppel/asset_helper.rb
Created October 23, 2017 01:42
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 bithavoc/bf46d844995977f949cb6f9fa3fac0e4 to your computer and use it in GitHub Desktop.
Save bithavoc/bf46d844995977f949cb6f9fa3fac0e4 to your computer and use it in GitHub Desktop.
Inline asset helpers for middleman.
module AssetHelper
##
# Renders a stylesheet asset inline.
def inline_stylesheet( name )
content_tag :style do
sprockets[ "#{name}.css" ].to_s
end
end
##
# Renders a javascript asset inline.
def inline_javascript( name )
content_tag :script do
sprockets[ "#{name}.js" ].to_s
end
end
end
!!!
%html{ html_attrs }
%head
= inline_stylesheet 'application'
= inline_javascript 'application'
/ ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment