diff --git a/cookbook/profiler/data_collector.rst b/cookbook/profiler/data_collector.rst
index db3a86bfdab..233b36a4f16 100644
--- a/cookbook/profiler/data_collector.rst
+++ b/cookbook/profiler/data_collector.rst
@@ -106,27 +106,56 @@ Adding Web Profiler Templates
-----------------------------
When you want to display the data collected by your data collector in the web
-debug toolbar or the web profiler, create a Twig template following this
-skeleton:
+debug toolbar or the web profiler, you will need to create a Twig template. The
+following example can help you get started:
.. code-block:: jinja
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
{% block toolbar %}
- {# the web debug toolbar content #}
+ {# This toolbar item may appear along the top or bottom of the screen.#}
+ {% set icon %}
+
+
+ {% endset %}
+
+ {% set text %}
+
+ Major information goes here +
{% endblock %} Each block is optional. The ``toolbar`` block is used for the web debug