Skip to content

Instantly share code, notes, and snippets.

@lineharo
Created December 26, 2016 19:46
Show Gist options
  • Save lineharo/8aabc389debbdd8775f53e8c905958cf to your computer and use it in GitHub Desktop.
Save lineharo/8aabc389debbdd8775f53e8c905958cf to your computer and use it in GitHub Desktop.
PUG - auto version .css or another files in HTML head
- function pDate() {
- return new Date().getTime();
- }
doctype html
html(lang="ru")
head
meta(charset="utf-8")
title TITLE
script(src="script.js?v" + pDate())
link(rel="stylesheet" href= "style.css?v" + pDate())
body
@lineharo
Copy link
Author

Output:

<!DOCTYPE html>
<html lang="ru">
  <head>
    <meta charset="utf-8">
    <title>TITLE</title>
    <script src="script.js?v1482781365935"></script>
    <link rel="stylesheet" href="style.css?v1482781365935">
  </head>
  <body>
  </body>
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment