Adding a description of each item type in browse view

Right now my items can be viewed using different tabs and the "/items/browse/?type=" function. Would it be possible to add a short description of the item type on the first page for each type?

http://omeka.lib.niu.edu/omeka/items/browse/?type=Artifact

For example: "Artifacts are those items that were displayed around campus...."

"Condolences are the cards, banners, etc that were sent to campus..."

You can absolutely do that. Just modify this with the text you want to appear and put it on the page where you'd like to see it.

'<p>
<?php if($_GET['type'] == 6): echo 'Your text here.';
elseif ($_GET['type'] == 1): echo 'Different text here';
else: echo 'Default text here';
endif;
?>

</p>'

Thank you, thank you!