Move stuff to asides

This commit is contained in:
Madison Scott-Clary
2019-08-20 16:46:29 -07:00
parent e495d776df
commit 2e944625b2
10 changed files with 510 additions and 344 deletions

24
content/core/033.html Normal file
View File

@ -0,0 +1,24 @@
---
date: 2019-08-20
weight: 33
---
<pre>
( <a class="pulse huh" href="/aside/2">...</a> )
O
o
.
_____,,,_^..^_,,,_____
</pre>
<script type="text/javascript">
const grawlix = [
',,,', '///', '???', '!!!', '@@@', '###', '$$$',
'%%%', '^^^', '***', '---', '+++', '+++', '...'];
let curr = 0
let el = document.querySelector('.huh');
window.setInterval(() => {
el.innerHTML = grawlix[curr];
curr = (curr + 1) % grawlix.length;
}, 250);
</script>