We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# jekyll-asset-pipeline asset_pipeline: bundle: true # Default = true compress: true # Default = true output_path: assets # Default = assets display_path: http://site.com/blog # Default = nil gzip: true # Default = false
and
{% css_asset_tag global %} - /_assets/stylesheets/screen.css {% endcss_asset_tag %} {% javascript_asset_tag global %} - /_assets/javascripts/modernizr-2.0.js - /_assets/javascripts/ender.js - /_assets/javascripts/octopress.js {% endjavascript_asset_tag %}
renders
<link href='/assets/global-692dcc974a1799872aee8676b793b6e2.css' rel='stylesheet' type='text/css' /> <script src='/assets/global-f56b2ba0c79dc638d169c6ceb1751bff.js' type='text/javascript'></script>
but should render:
<link href='http://site.com/blog/assets/global-692dcc974a1799872aee8676b793b6e2.css' rel='stylesheet' type='text/css' /> <script src='http://site.com/blog/assets/global-f56b2ba0c79dc638d169c6ceb1751bff.js' type='text/javascript'></script>
right?
The text was updated successfully, but these errors were encountered:
Thanks for pointing out. This should work, so may be a bug.
Sorry, something went wrong.
Problem is still present
No branches or pull requests
and
renders
but should render:
right?
The text was updated successfully, but these errors were encountered: