442bef171703214a00f8badc5086792b744b1b7f
24h/Home.md
... | ... | @@ -0,0 +1,6 @@ |
1 | +<script> |
|
2 | + const today = new Date(); |
|
3 | + const dd = String(today.getDate()).padStart(2, '0'); |
|
4 | + const mm = String(today.getMonth() + 1).padStart(2, '0'); |
|
5 | + window.location.href = `/${dd}-${mm}`; |
|
6 | +</script> |