Currently the sidebar of hubshark is looking a bit empty. We will update this with 2 common blog components, the Tag Cloud and a list of the Latest Comments at a later point in the tutorails.
We will though, create the place holders for them and add the "Software Verison" to the bottom of the sidebar.
**Tag Cloud**
The Tag Cloud shows tags for each blog emphasized in a way that displays the more common tags bolder. To achieve this we need a way to retrieve all the tags for all the blogs. The method we will use will be added at a later point. So we just add a place holder in _src/AppBundle/Resources/views/Sidebar/sidebar.html.twig_
Let’s replace the placeholder for the sidebar block. We do this in them main layout template located at _src/AppBundle/Resources/views/layout.html.twig_
As we have added a new stylesheet we need to include it. Update the AppBundle main layout template located at _src/AppBundle/Resources/views/layout.html.twig_ with the following.
Add the latest comments placeholder in the sidebar template. Update the template located at _src/AppBundle/Resources/views/Sidebar/sidebar.html.twig_ with the following.
```
{# .. #}
<section class="section">
<header>
<h3>Latest Comments</h3>
</header>
<p>There are no recent comments</p>
</section>
{# .. #}
```
The sidebar action located at _src/AppBundle/Controller/HomePageController.php_ gets updated to show the view.