tilde.club/html/public/index.php
Lizzy Hunt 5a85dd89bc
All checks were successful
continuous-integration/drone/push Build is passing
wording pt 2
2024-03-10 03:37:58 -06:00

50 lines
1.4 KiB
PHP

<?php
$content = '
<p>you are at my <a href="https://tilde.club">tilde.club</a> page right now! hi!</p>
<img src="/~simponic/img/penguin.gif" alt="a penguin" style="width: 200px; height: 200px;"/>
<p><em>this is a penguin. probably had a bit too much coffee.</em></p>
<p>here you can:</p>
<ul>
<li>vote on your favorite <a href="/~simponic/fruitvote">fruit</a> (WIP; had to do a sneaky on the tilde.club server to get Go running)</li>
<li>play <a href="/~simponic/the-abstraction-engine">the abstraction engine</a> (WIP)</li>
<li>play <a href="/~simponic/euler-golf">euler golf 2</a></li>
<li>program a <a href="/~simponic/turing-machine">turing machine</a></li>
<li>mess with <a href="/~simponic/godel">godel numbers</a></li>
<li>more to come? (some duplicates from <a href="https://static.simponic.xyz">static.simponic.xyz</a>)</li>
</ul>
<br />
<br />
<p>
here are some stuffs i like:
<ul>
<li>penguins, dogs, birds</li>
<li>programming (((with parentheses)))</li>
<li>compilers, languages, distributed systems</li>
<li>emacs</li>
<li>math</li>
<li>being bicycle 🏳️‍🌈</li>
<li>gruvbox & catpuccin</li>
</ul>
</p>
<p>
here are some stuffs i don\'t like:
<ul>
<li>bugs (hahahaha)</li>
<li>capitalism, expensive healthcare, lead in water, yadayada</li>
<li>mmmm i can\'t think of more</li>
</ul>
</p>
';
$template = file_get_contents('template.html');
echo str_replace("{{content}}", $content, $template);
?>