diff --git a/chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb b/chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb
index 004ef38..0180671 100644
--- a/chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb
+++ b/chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb
@@ -2,59 +2,82 @@
   <head>
     <title>Vagrant Drupal Development</title>
     <meta charset="utf-8">
+    <!-- Latest compiled and minified CSS -->
+    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
+
+    <!-- Optional theme -->
+    <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
+
     <style type="text/css">
-      .code {
-        font-family: monospace;
-        background-color: #f6f6f2;
-        border: 1px solid #CCC;
-        padding: 10px;
-        margin-bottom: .5em;
-        list-style-type: none;
-        width: 650px;
+      .sites .btn {
+        margin-top: 10px;
+        border-bottom-left-radius: 0 !important;
+        border-bottom-right-radius: 0 !important;
+      }
+      .sites .input-group span, .sites .input-group input {
+        border-top-left-radius: 0 !important;
+        border-top-right-radius: 0 !important;
+        border-top: 0;
+      }
+      pre.prettyprint {
+        padding: 9.5px !important;
+        border: 1px solid #ccc !important;
       }
     </style>
+
+    <!-- Latest compiled and minified JavaScript -->
+    <!-- <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> -->
+    <script src="//google-code-prettify.googlecode.com/svn/loader/run_prettify.js"type="text/javascript"></script>
   </head>
 
   <body>
+  <div class="container">
     <h1>Welcome to VDD!</h1>
 
     <p>Hello, developer! On this page you can find links to your configured sites and development tools. Also there is a list of frequently asked questions.</p>
 
-    <ul>
+<!--     <ul>
       <li><a href="#sites">Configured Sites</a></li>
       <li><a href="#dev">Development</a></li>
       <li><a href="#faq">FAQ</a></li>
-    </ul>
+    </ul> -->
 
+<div class="row">
+  <div class="col-md-6">
     <h2 id="sites">Configured Sites</h2>
 
-    <h3>Add the following to host machine's <a href="http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/" target="_blank">hosts file</a>:</h3>
-    <ul class="code">
-      <li># Sites declared in VDD's config.json</li>
+    <h3>Add the following to host machine's <a href="http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/">hosts file</a>:</h3>
+    <pre>
+# Sites declared in VDD's config.json
       <% @sites.each do |index, site| %>
         <%- if defined?(site["vhost"]["url"]) then -%>
-          <li><%= node["vm"]["ip"] %> <%= site["vhost"]["url"] %> </li>
+<%= node["vm"]["ip"] %> <%= site["vhost"]["url"] %>
         <%- end -%>
         <%- if defined?(site["vhost"]["alias"]) then -%>
           <%- site["vhost"]["alias"].each do |vhostalias| -%>
-            <li><%= node["vm"]["ip"] %> <%= vhostalias %> </li>
+<%= node["vm"]["ip"] %> <%= vhostalias %>
           <%- end -%>
         <%- end -%>
       <% end %>
-      <li># End of sites declared with VDD</li>
-    </ul>
+# End of sites declared with VDD</pre>
 
-    <ul>
-      <% @sites.each do |index, site| %>
-      <li>
-       <%- if defined?(site["vhost"]["url"]) then -%>
-         <a href="http://<%= site["vhost"]["url"] %>"><%= site["site_name"] %></a> (Drush alias is @<%= index %>)
+    <div class="sites">
+    <% @sites.each do |index, site| %>
+      <%- if defined?(site["vhost"]["url"]) then -%>
+        <a class="btn btn-primary btn-lg btn-block" href="http://<%= site["vhost"]["url"] %>"><%= site["site_name"] %></a>
+        <div class="input-group">
+          <span class="input-group-addon">Drush alias is </span>
+          <input type="text" class="form-control" value="@<%= index %>" />
+        </div>
        <%- else -%>
-         <a href="/<%= index %>"><%= site["site_name"] %></a> (Drush alias is @<%= index %>)
-       <%- end -%>
-      </li>
-      <% end %>
-    </ul>
+        <a class="btn btn-primary btn-lg btn-block" href="/<%= index %>"><%= site["site_name"] %></a>
+        <div class="input-group">
+          <span class="input-group-addon">Drush alias is </span>
+          <input type="text" class="form-control" value="@<%= index %>" />
+        </div>
+      <%- end -%>
+    <% end %>
+    </div>
 
     <h2 id="dev">Development Tools</h2>
     <ul>
@@ -63,10 +86,12 @@
       <li><a href="/phpinfo.php">phpinfo()</a></li>
       <li><a href="/webgrind">Webgrind</a></li>
     </ul>
+  </div>
+  <div class="col-md-6">
 
     <h2 id="faq">FAQ</h2>
 
-    <h3>Questions</h3>
+    <!-- <h3>Questions</h3>
     <ul>
       <li><a href="#q1">Where can I find help?</a></li>
       <li><a href="#q2">How to ssh into virtual machine?</a></li>
@@ -75,41 +100,35 @@
       <li><a href="#q5">What is Webgrind and how would I use it?</a></li>
     </ul>
 
-    <h3>Answers</h3>
+    <h3>Answers</h3> -->
 
     <h4 id="q1">Where can I find help?</h4>
     <p>Please check <a href="https://drupal.org/node/2008758">project documentation</a> on drupal.org. For support, join us on IRC in the <i>#drupal-vdd</i> channel.</p>
 
-    <h4 id="q2">How to ssh into virtual machine?</h4>
+    <h4 id="q2">How do I ssh into virtual machine?</h4>
     <p>Open your terminal (e.g. iTerm2 or Powershell) application and change to the directory with your VDD copy. Then simply execute next command:</p>
-    <ol class="code">
-      <li>$ vagrant ssh</li>
-    </ol>
+    <pre class="prettyprint">$ vagrant ssh</pre>
 
-    <h4 id="q3">How to install fresh Drupal 8 version?</h4>
+    <h4 id="q3">How do I install fresh Drupal 8 version?</h4>
     <p>For this example we'll setup Drupal 8 on a site declared in the config.json: <em>drupal8 (in the default config.json)</em></p>
-    <ol class="code">
-      <li>Win/Mac/Linux host$ vagrant ssh</li>
-      <li>vagrant guest$ cd ~/sites/drupal8</li>
-      <li>vagrant guest$ git clone --branch 8.x http://git.drupal.org/project/drupal.git .</li>
-      <li>vagrant guest$ drush @drupal8 si standard -y</li>
-    </ol>
-
-    <h4 id="q4">How to quickly install Drupal 7?</h4>
-    <p>Make shure that appropriate site exists in config.json file. Don't forget to run 'vagrant provision' after changing config.json.</p>
-    <ol class="code">
-      <li>Win/Mac/Linux host$ vagrant ssh</li>
-      <li>vagrant guest$ rm -rf ~/sites/drupal7</li>
-      <li>vagrant guest$ cd ~/sites</li>
-      <li>vagrant guest$ drush dl drupal-7 --drupal-project-rename="drupal7"</li>
-      <li>vagrant guest$ drush @drupal7 si standard -y</li>
-    </ol>
+    <pre class="prettyprint">Win/Mac/Linux host$ vagrant ssh
+vagrant guest$ cd ~/sites/drupal8
+vagrant guest$ git clone --branch 8.x http://git.drupal.org/project/drupal.git .
+vagrant guest$ drush @drupal8 si standard -y</pre>
+
+    <h4 id="q4">How do I quickly install Drupal 7?</h4>
+    <p>Make sure that appropriate site exists in config.json file. Don't forget to run 'vagrant provision' after changing config.json.</p>
+    <pre class="prettyprint">Win/Mac/Linux host$ vagrant ssh
+vagrant guest$ rm -rf ~/sites/drupal7
+vagrant guest$ cd ~/sites
+vagrant guest$ drush dl drupal-7 --drupal-project-rename="drupal7"
+vagrant guest$ drush @drupal7 si standard -y</pre>
 
     <h4 id="q5">What is Webgrind and how do I use it?</h4>
     <p>Webgrind is a Xdebug Profiling Web Frontend in PHP. Xdebug can help <a href="http://devzone.zend.com/1120/introducing-xdebug/">simplify debugging</a>.</p>
     <ul>
       <li>Enable Xdebug by including "?XDEBUG_PROFILE=1" in the url. For example: <i>http://drupal8.dev/admin/reports/status?XDEBUG_PROFILE=1</i>.</li>
       <li>After generating Xdebug data, visit the <a href="/webgrind">Webgrind</a> dashboard to inspect results.</li>
-    </ul>
+    </ul></div></div></div>
   </body>
 </html>
