tilde.club/html/public/index.php

50 lines
1.2 KiB
PHP
Raw Normal View History

2024-03-09 02:25:48 -05:00
<?php
2024-03-09 23:29:25 -05:00
$content = '
<p>you are at my <a href="https://tilde.club">tilde.club</a> page right now! hi!</p>
2024-03-09 19:55:58 -05:00
2024-03-09 23:42:08 -05:00
<img src="/~simponic/img/penguin.gif" alt="a penguin" style="width: 200px; height: 200px;"/>
2024-03-09 23:29:25 -05:00
<p><em>this is a penguin</em></p>
2024-03-09 19:55:58 -05:00
2024-03-09 23:29:25 -05:00
<p>here you can:</p>
2024-03-09 19:55:58 -05:00
2024-03-09 23:29:25 -05:00
<ul>
2024-03-09 23:42:08 -05:00
<li>vote on your favorite <a href="/~simponic/fruitvote">fruit</a></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>
2024-03-09 23:29:25 -05:00
<li>more to come?</li>
</ul>
2024-03-09 19:55:58 -05:00
2024-03-09 23:29:25 -05:00
<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>boys (and girls) 🏳️‍🌈</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, 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);
2024-03-09 02:25:48 -05:00
?>