use $title variable in the view

$data['title'] is defined in the controller but it is not used in the view
diff --git a/user_guide_src/source/tutorial/create_news_items.rst b/user_guide_src/source/tutorial/create_news_items.rst
index ad355b3..1f4a96d 100644
--- a/user_guide_src/source/tutorial/create_news_items.rst
+++ b/user_guide_src/source/tutorial/create_news_items.rst
@@ -18,7 +18,7 @@
 
 ::
 
-    <h2>Create a news item</h2>
+    <h2><?php echo $title ?></h2>
 
     <?php echo validation_errors(); ?>