Update version

This commit is contained in:
Dan 2025-03-03 22:32:51 +07:00
commit 055f5bdc14
3 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
{
"tag_name": "v3.0.4"
"tag_name": "v3.0.5"
}

View file

@ -1,6 +1,6 @@
<?php
define('HTMLY', true);
define('HTMLY_VERSION', 'v3.0.4');
define('HTMLY_VERSION', 'v3.0.5');
$config_file = 'config/config.ini';
require 'system/vendor/autoload.php';
require 'system/htmly.php';

View file

@ -12,7 +12,7 @@
<?php foreach ($posts as $p): ?>
<li class="item">
<span><a href="<?php echo $p->url ?>"><?php echo $p->title ?></a></span> -
<span><?php echo format_date($p->date) ?></span> - <?php echo i18n('Posted_in');?> <span class="tags-links"><?php echo $p->category; ?></span>
<span><?php echo format_date($p->date) ?></span> - <?php echo i18n('Posted_in');?> <span><?php echo $p->category; ?></span>
</li>
<?php endforeach; ?>
</ul>