templates/modules/tmpl/default.html.twig line 1

Open in your IDE?
  1. {# default module #}
  2. {% if module is defined %}
  3. <div class="module {{ module.class is defined ? module.class : '' }}">
  4.     {% block module_title %}
  5.         {% if module.title is defined and module.title == 'Latest Classifieds' %}
  6.             <a href="/our-listings">
  7.             <h3 class="module-title">
  8.                {{ module.title }}
  9.            </h3>
  10.            </a>
  11.         {% elseif module.title is defined and module.title == 'Directory of Everything' %}
  12.             <a href="/our-directory">
  13.             <h3 class="module-title">
  14.                {{ module.title }}
  15.            </h3>
  16.            </a>
  17.         {% elseif module.title is defined and module.title == 'RCS Forum' %}
  18.             <a href="/forum">
  19.             <h3 class="module-title">
  20.                {{ module.title }}
  21.            </h3>
  22.            </a>
  23.         {% elseif module.title is defined and module.title == 'Events' %}
  24.             <a href="/events">
  25.             <h3 class="module-title">
  26.                {{ module.title }}
  27.            </h3>
  28.            </a>
  29.         {% elseif module.title is defined and module.title is not empty %}
  30.             <h3 class="module-title">
  31.                 {% if module.visit_link is defined and (module.data is not defined or (module.data is defined and module.data is not empty))  %}
  32.                         <a href="{{ module.visit_link }}" style="color:white;">
  33.                 {% endif %}
  34.                 {{ module.title }}
  35.                 {% if module.visit_link is defined and (module.data is not defined or (module.data is defined and module.data is not empty))  %}
  36.                         </a>
  37.                 {% endif %}
  38.             </h3>
  39.        {% endif %}
  40.        
  41.        
  42.    {% endblock %}
  43.     <div class="module-content">
  44.         {% block module_content %}
  45.             {{ module.content }}
  46.         {% endblock %}
  47.         
  48.         {% if module.title is defined and module.title == 'RCS Forum' %}
  49.              <hr style="margin-top: 2rem;"><a href="/forum" class="module-visit-link" style="color: #A6252A;">See more topics</a>
  50.         {% elseif module.title is defined and module.title == 'Events' %}
  51.              <hr style="margin-top: 2rem;"><a href="/events" class="module-visit-link" style="color: #A6252A;">See more events</a>
  52.         {% endif %}
  53.     </div>
  54. </div>
  55. {% endif %}