diff --git a/system/admin/views/main.html.php b/system/admin/views/main.html.php
index aff6740..5f51923 100644
--- a/system/admin/views/main.html.php
+++ b/system/admin/views/main.html.php
@@ -20,7 +20,7 @@ if (isset($_SESSION[site_url()]['user'])) {
if (config("views.counter") == "true")
echo '
' . $p->views . ' | ';
echo ''. strip_tags($p->category) .' | ';
- echo '' . $p->tag . ' | ';
+ echo '' . str_replace("rel=\"tag\"", "rel=\"tag\" class=\"badge badge-light text-primary font-weight-normal\"", $p->tag) . ' | ';
echo '' . i18n('Edit') . ' ' . i18n('Delete') . ' | ';
echo '';
}
@@ -28,4 +28,4 @@ if (isset($_SESSION[site_url()]['user'])) {
}
}
-?>
\ No newline at end of file
+?>