1
0
Fork 0
2punny/random/index.html

8 lines
200 B
HTML
Raw Permalink Normal View History

2014-08-24 00:39:12 +08:00
---
title: random
---
<script>
var posts = [{% for post in site.posts %}"{{ post.url }}", {% endfor %}];
var id = Math.floor(Math.random() * posts.length);
window.location.href = posts[id];
</script>