Can Jekyll Act Over Css Or Js Files?
I'm using Jekyll for one of my projects and it really seems a very good alternative for developing simple websites but maintaining some processes automated. It's nice how the Liqui
Solution 1:
Yep. You just have to add a YAML block to the file, and Jekyll will process it. The YAML block can be empty:
------@importurl("/stylesheets/reset.css?{{site.time|date:'%Y%m%d%H%M%S'}}");@importurl("/stylesheets/config.css?{{site.time|date:'%Y%m%d%H%M%S'}}");
Solution 2:
You should try the Jekyll Assets plugin, it really helps dealing with CSS and JS assets.
Post a Comment for "Can Jekyll Act Over Css Or Js Files?"