Guest User

Untitled

a guest
Feb 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <!-- Random ID generation -->
  2. {% assign min = 0 %}
  3. {% assign max = 1000 %}
  4. {% assign diff = max | minus: min %}
  5. {% assign randomNumber = "now" | date: "%N" | modulo: diff | plus: min %}
  6. <!-- /Random ID generation -->
Add Comment
Please, Sign In to add comment