Last active
December 21, 2015 21:19
-
-
Save opattison/6367226 to your computer and use it in GitHub Desktop.
How to include multiple CSS sources in a compiled single CSS file (for example, resets, base styles, project-specific styles) using Liquid includes in Jekyll.
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
--- | |
# No YAML required. Blank front matter so that CSS files can be included via Liquid templating. | |
# Make sure that the breaks are included at the start of the file so that Jekyll knows to process the Liquid includes. | |
--- | |
{% include reset.css %} | |
{% include base.css %} | |
{% include project.css %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment