templates/uniqskills/catalogue/landing_new/landing_partials/contact.html.twig line 1

Open in your IDE?
  1. <div class="simpleBanner"
  2.      style="background: {{ module.background }}; {% if module.textColor is defined %} color: {{ module.textColor }} {% endif %}">
  3.     <a name="{{ module.type }}-{{ module.id }}"></a>
  4.     <div class="container" style="text-align: center;">
  5.         <h2 class="bannerTitle" style="{% if module.textColor is defined %}color: {{ module.textColor }}{% endif %}">
  6.             {% if module.titleName is defined and module.titleName is not empty %}{{ module.titleName|raw }}{% else %}{{ 'uniqskills.landing.contact'|trans }}{% endif %}</h2>
  7.         <div class="simpleBanner-content{% if module.secondName is defined and module.secondName is not null %} col-sm-6 secondContact {% endif %}">
  8.             <div class="bannerText" style="{% if module.textColor is defined %}color: {{ module.textColor }}{% endif %}">
  9.                 {% if module.info is defined %}<span style="font-size: 16px;">{{ module.info|raw }}</span>{% else %}Potrzebujesz szczegółowych informacji?{% endif %}
  10.                 <p>
  11.                 <div class="imgContact"
  12.                      data-url="{{ vich_uploader_asset(module.photo, 'file') }}"></div>
  13.                 </p>
  14.                 <div>{{ module.name }}</div>
  15.                 {% if module.telephone is not empty %}
  16.                     <div>tel. {{ module.telephone }}</div>
  17.                 {% endif %}
  18.                 <div><a href="mailto:{{ module.email }}" style="{% if module.textColor is defined %}color: {{ module.textColor }}{% endif %}">{{ module.email }}</a></div>
  19.             </div>
  20.         </div>
  21.         {% if module.secondName is defined and module.secondName is not null %}
  22.             <div class="simpleBanner-content col-sm-6 secondContact">
  23.                 <div class="bannerText" style="{% if module.textColor is defined %}color: {{ module.textColor }}{% endif %}">
  24.                    {% if module.secondInfo is defined %}<span style="font-size: 16px;">{{ module.secondInfo|raw }}</span>{% endif %}
  25.                     <p>
  26.                     <div class="imgContact"
  27.                          data-url="{{ vich_uploader_asset(module.photo, 'file') }}"></div>
  28.                     </p>
  29.                    {% if module.secondTelephone is defined and module.secondEmail is defined %}
  30.                         <div>{{ module.secondName }}</div>
  31.                        {% if module.secondTelephone is not empty %}
  32.                             <div>tel. {{ module.secondTelephone }}</div>
  33.                        {% endif %}
  34.                         <div><a href="mailto:{{ module.secondEmail }}" style="{% if module.textColor is defined %}color: {{ module.textColor }}{% endif %}">{{ module.secondEmail }}</a></div>
  35.                     {% endif %}
  36.                 </div>
  37.             </div>
  38.         {% endif %}
  39.     </div>
  40. </div>