Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 311 Bytes

index.md

File metadata and controls

11 lines (10 loc) · 311 Bytes
layout title
page
Random
<script type="text/javascript"> let posts = [{% for post in site.posts %}"{{ post.url }}"{% unless forloop.last %},{% endunless %}{% endfor %}]; let randomIndex = Math.floor(Math.random() * posts.length); let post = posts[randomIndex]; window.location.href = post; </script>