You are here

views-view--portfolio-terms.html.twig in Multipurpose Corporate Profile 8

<div class="view-portfolio-terms">
    {{ title_prefix }}
    {% if title %}
        {{ title }}
    {% endif %}
    {{ title_suffix }}
    {% if header %}
        <div class="view-header">
            {% if '/portfolio/column_three'in current_path %}
                <a href="/portfolio/column_three">  All </a>
            {% elseif '/portfolio/column_four' in current_path %}
                <a href="/portfolio/column_four">  All </a>
            {% else %}
                {{ header }}
            {% endif %}
        </div>
    {% endif %}
    {% if exposed %}
        <div class="view-filters">
            {{ exposed }}
        </div>
   {% endif %}

    {% if attachment_before %}
        <div class="attachment attachment-before">
            {{ attachment_before }}
        </div>
    {% endif %}

    {% if rows %}
        <div class="view-content">
            {{ rows }}
        </div>
    {% endif %}
    <div class="view-empty">
        {{ empty }}
    </div>

    {% if pager %}
        {{ pager }}
    {% endif %}

    {% if attachment_after %}
        <div class="attachment attachment-after">
            {{ attachment_after }}
        </div>
    {% endif %}
</div>

File

templates/views-view--portfolio-terms.html.twig
View source
  1. <div class="view-portfolio-terms">
  2. {{ title_prefix }}
  3. {% if title %}
  4. {{ title }}
  5. {% endif %}
  6. {{ title_suffix }}
  7. {% if header %}
  8. <div class="view-header">
  9. {% if '/portfolio/column_three'in current_path %}
  10. <a href="/portfolio/column_three"> All </a>
  11. {% elseif '/portfolio/column_four' in current_path %}
  12. <a href="/portfolio/column_four"> All </a>
  13. {% else %}
  14. {{ header }}
  15. {% endif %}
  16. </div>
  17. {% endif %}
  18. {% if exposed %}
  19. <div class="view-filters">
  20. {{ exposed }}
  21. </div>
  22. {% endif %}
  23. {% if attachment_before %}
  24. <div class="attachment attachment-before">
  25. {{ attachment_before }}
  26. </div>
  27. {% endif %}
  28. {% if rows %}
  29. <div class="view-content">
  30. {{ rows }}
  31. </div>
  32. {% endif %}
  33. <div class="view-empty">
  34. {{ empty }}
  35. </div>
  36. {% if pager %}
  37. {{ pager }}
  38. {% endif %}
  39. {% if attachment_after %}
  40. <div class="attachment attachment-after">
  41. {{ attachment_after }}
  42. </div>
  43. {% endif %}
  44. </div>