Skip to content

Instantly share code, notes, and snippets.

@opattison
Last active December 21, 2015 21:19
Show Gist options
  • Save opattison/6367226 to your computer and use it in GitHub Desktop.
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.
---
# 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