personal-website/docs/www/blog/index.php
2024-01-13 06:45:19 +01:00

31 lines
764 B
PHP
Executable file

<?php
$PageTitle="Zdenek: Blog";
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
?>
<article>
<p>
Blogs will be written here, at some point in the future.
</p>
<p>
The way in which they are made and addressed right now is temporary, so any links you save / share WILL EXPIRE eventualy. This includes media.
</p>
</article>
<hr/>
<ul>
<li><div><a href="http://www.zdenekborovec-dev.cz/blog/godot_spell_system_prototype">
<h3>
Godot spell casting system prototype
</h3>
<p>
I have wanted to implement this system in my upcoming game "The Labyrith II" for a few years now, but I got distracted and left it, well, I am back now.
</p>
</a></div></li>
</ul>
<?php
include_once($COMMONS."/footer.php");
?>