Custom template for content block to show page description if no content added /application/blocks/content/templates/description.php
<?php defined('C5_EXECUTE') or die("Access Denied.");
if ($content != "") {
print $content;
} else {
$c = Page::getCurrentPage();
echo '<p class="lead">'.nl2br($c->getCollectionDescription()).'</p>';
}