templates/forms/directory-join.html.twig line 1

  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3. <form id="directoryform" method="post" action="" enctype="multipart/form-data">
  4.     <div class="container">
  5.         <div class="row">
  6.             <div class="col-md-8">
  7.             {% if part == 1 %}
  8.                 {% include "forms/directory/directory-type.html.twig" %}
  9.             {% elseif part == 2 %}
  10.                 {% include "forms/directory/directory-details.html.twig" %}
  11.             {% elseif part == 3 %}
  12.                 {% include "forms/directory/directory-preview.html.twig" %}
  13.             {% endif %}
  14.             </div>
  15.             <div class="col-md-4">
  16.                 <div class="joindirectorysidebar" style="background-color: #f7f6f4; padding:15px;">
  17.                     <h3 style="color: #a41822">Why Be Part of the RCS Directory?</h3>
  18.                     <ul>
  19.                         <li><strong>Exposure for your Company</strong><br>Keywords are searchable in both the directory and throughout the entire RoofersCoffeeShop.com site! If a contractor searches one or your keywords on the site, you will come up in the search results. It helps your SEO too!</li>
  20.                         <li><strong>Search Engine Optimization</strong><br>Directory backlinks are critical to good SEO and RCS delivers with multiple backlinks and keywords.</li>
  21.                         <li><strong>Industry Presence</strong><br>The industry is looking for solutions. By being a part of the directory you are setting yourself apart and helping future customers find you.</li>
  22.                     </ul>
  23.                 </div>
  24.             </div>
  25.         </div>
  26.     </div>
  27. </form>
  28. {% endblock %}