diff --git a/profile2.tpl.php b/profile2.tpl.php
index bd5bd4d..fff9a40 100644
--- a/profile2.tpl.php
+++ b/profile2.tpl.php
@@ -18,6 +18,12 @@
  *   the parts enclosed by {} are replaced by the appropriate values:
  *   - entity-profile
  *   - profile-{TYPE}
+ * - $title_prefix (array): An array containing additional output populated by
+ *   modules, intended to be displayed in front of the main title tag that
+ *   appears in the template.
+ * - $title_suffix (array): An array containing additional output populated by
+ *   modules, intended to be displayed after the main title tag that appears in
+ *   the template.
  *
  * Other variables:
  * - $classes_array: Array of html class attribute values. It is flattened
@@ -31,9 +37,11 @@
 <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
 
   <?php if (!$page): ?>
+    <?php print render($title_prefix); ?>
     <h2<?php print $title_attributes; ?>>
         <a href="<?php print $url; ?>"><?php print $title; ?></a>
     </h2>
+    <?php print render($title_suffix); ?>
   <?php endif; ?>
 
   <div class="content"<?php print $content_attributes; ?>>
