Created
October 1, 2023 11:24
-
-
Save diboune/bd3180f36e5b9e963e0338627ad4f2f4 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
{% comment %} | |
Lazily importing css stylesheets, without blocking the document download. | |
Accepts: | |
- sheets: `string` of the css files seperated by `,`. | |
Usage: | |
{% render 'stylesheet-import', sheets: 'component.css,not-component.css' %} | |
{% endcomment %} | |
{% assign sheets = sheets | split: ',' %} | |
{% for sheet in sheets %} | |
<link rel="stylesheet" href="{{ sheet | asset_url }}" media="print" onload="this.media='all'"> | |
<noscript>{{ sheet | asset_url | stylesheet_tag }}</noscript> | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment