diff --git a/core/modules/aggregator/templates/aggregator-feed-source.tpl.php b/core/modules/aggregator/templates/aggregator-feed-source.tpl.php
index f9cfa55561ec426c65fea173b4334bf846572bff..3993e6cd066dbd0b10a176b334da02aae0151f4e 100644
--- a/core/modules/aggregator/templates/aggregator-feed-source.tpl.php
+++ b/core/modules/aggregator/templates/aggregator-feed-source.tpl.php
@@ -4,7 +4,7 @@
  * @file
  * Default theme implementation to present the source of the feed.
  *
- * The contents are rendered above feed listings when browsing source feeds.
+ * The contents are rendered below feed listings when browsing source feeds.
  * For example, "example.com/aggregator/sources/1".
  *
  * Available variables:
@@ -24,13 +24,11 @@
 <div class="feed-source">
   <?php print $source_icon; ?>
   <?php print $source_image; ?>
-  <div class="feed-description">
-    <?php print $source_description; ?>
-  </div>
-  <div class="feed-url">
-    <em><?php print t('URL:'); ?></em> <a href="<?php print $source_url; ?>"><?php print $source_url; ?></a>
-  </div>
-  <div class="feed-updated">
-    <em><?php print t('Updated:'); ?></em> <?php print $last_checked; ?>
-  </div>
+  <p class="feed-description"><?php print $source_description; ?></p>
+  <dl class="feed-details">
+    <dt class="feed-url"><?php print t('URL:'); ?></dt>
+    <dd><?php print $source_url; ?></dd>
+    <dt class="feed-updated"><?php print t('Updated:'); ?></dt>
+    <dd><?php print $last_checked; ?></dd>
+  </dl>
 </div>
