diff --git a/site/blog/index.php b/site/blog/index.php
index 34d327e..ce12c5a 100644
--- a/site/blog/index.php
+++ b/site/blog/index.php
@@ -30,11 +30,13 @@ usort($items, function($a, $b) {
$b_time = DateTime::createFromFormat('D, d M Y H:i:s O', $b->pubDate)->getTimestamp();
return $b_time - $a_time;
});
-
-// Loop through the sorted items and display them
+// Debugging
foreach ($items as $item) {
// Debugging
echo $item->pubDate . ' => ' . strtotime($item->pubDate) . '
';
+}
+// Loop through the sorted items and display them
+foreach ($items as $item) {
// Add a box around the article
echo '