Maybe this will help others learning 2.0.
I had made use of the Category Description in designs with previous versions. After porting over to 2.0, those descriptions were no longer being shown. Using Page Manager, I added a block to the center column for the product-list page with the following block content:
<div class="category_description">
<?php CategoryDescription(); ?>
</div>
Enclosing it in the div allows me to style it differently. After adding the block, I dragged it immediately below the Category Image block.
Edit...
I discovered that the above adds space for the div when there is no CategoryDescription to display, so I added a check to only display the block if the CategoryDescription is not empty:
<?php if (getCategoryDescription() != ''): ?><div class='category_description'><?php CategoryDescription(); ?></div><?php endif; ?>