From 43955e58c88fa18b7fc46187d0a271319b9baf88 Mon Sep 17 00:00:00 2001 From: Mohamad Damaj Date: Mon, 26 Jun 2023 11:18:39 +0300 Subject: [PATCH] Add debugging data --- site/blog/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site/blog/index.php b/site/blog/index.php index ef94ee4..34d327e 100644 --- a/site/blog/index.php +++ b/site/blog/index.php @@ -33,6 +33,8 @@ usort($items, function($a, $b) { // Loop through the sorted items and display them foreach ($items as $item) { + // Debugging + echo $item->pubDate . ' => ' . strtotime($item->pubDate) . '
'; // Add a box around the article echo '
';