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 '
';