Skip to content

Instantly share code, notes, and snippets.

@floatingboxes
Last active May 13, 2021 07:47
Show Gist options
  • Save floatingboxes/5313017 to your computer and use it in GitHub Desktop.
Save floatingboxes/5313017 to your computer and use it in GitHub Desktop.
CSS cache-bust technique for Jekyll
<!--
Stupid simple css cache bust for Jekyll using site generation timestamp year/month/day/hour/minute/seconds
Output example: v=20130403134355
-->
<link rel="stylesheet" href="/css/styles.css?v={{ site.time | date: '%Y%m%d%H%M%S' }}">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment