personal-website/docs/www/blog/index.php

76 lines
2.1 KiB
PHP
Raw Normal View History

2023-12-21 13:11:22 +01:00
<?php
$PageTitle="Zdenek: Blog";
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
?>
<article>
2024-01-19 04:17:10 +01:00
<h2>
My blogposts
</h2>
<p>
Blogs about various topics 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>
<p>
I am just trying to get a feel for what tools I might need for writing the blogs, so everything is subject to change once I get a solid idea and implement a proper system for doing this, instead of just writing plain html.
</p>
2023-12-21 13:11:22 +01:00
</article>
2024-01-19 04:17:10 +01:00
<hr>
<ul class="blog-preview-list">
2024-03-12 20:50:22 +01:00
<li><div class="blog-preview"><a href="http://www.zdenekborovec-dev.cz/blog/flatland_review">
2024-01-13 06:45:19 +01:00
<h3>
2024-03-12 20:50:22 +01:00
Flatland: A Review.
2024-01-13 06:45:19 +01:00
</h3>
2024-01-19 04:17:10 +01:00
</a>
<div class="blog-metadata">
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: AntiqueWhite">
books
2024-01-19 04:17:10 +01:00
</span>
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: LightSkyBlue">
geometry
2024-01-19 04:17:10 +01:00
</span>
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: LightPink">
reviews
2024-01-19 04:17:10 +01:00
</span>
<span class="blog-publish-date">
2024-03-12 20:50:22 +01:00
Published on: 2024-03-12
2024-01-19 04:17:10 +01:00
</span>
</div>
2024-01-13 06:45:19 +01:00
<p>
2024-03-12 20:50:22 +01:00
I had the privilege to travel Flatland together with A. Square these past few days and the experience was truly delightful.
2024-01-13 06:45:19 +01:00
</p>
2024-01-19 04:17:10 +01:00
</div></li>
2024-03-12 20:50:22 +01:00
<li><div class="blog-preview"><a href="http://www.zdenekborovec-dev.cz/blog/godot_spell_system_prototype">
2024-03-12 20:44:01 +01:00
<h3>
2024-03-12 20:50:22 +01:00
Godot spell casting system prototype
2024-03-12 20:44:01 +01:00
</h3>
</a>
<div class="blog-metadata">
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: cornflowerblue">
godot
2024-03-12 20:44:01 +01:00
</span>
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: khaki">
game-dev
2024-03-12 20:44:01 +01:00
</span>
2024-03-12 20:50:22 +01:00
<span class="blog-tag" style="background-color: sienna">
the-labyrinth-II
2024-03-12 20:44:01 +01:00
</span>
<span class="blog-publish-date">
2024-03-12 20:50:22 +01:00
Published on: 2024-01-13
2024-03-12 20:44:01 +01:00
</span>
</div>
<p>
2024-03-12 20:50:22 +01:00
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.
2024-03-12 20:44:01 +01:00
</p>
</div></li>
2024-01-13 06:45:19 +01:00
</ul>
2023-12-21 13:11:22 +01:00
<?php
include_once($COMMONS."/footer.php");
?>