marketing-ct.html 988 B

1234567891011121314151617181920212223
  1. {% if page.layout contains 'overview' or page.title == "Premium Bootstrap Themes" %}
  2. {% else %}
  3. <hr class="mb-5 custom">
  4. <div class="container text-center">
  5. <h4 class="mt-0 mb-1">Premium Bootstrap Themes</h4>
  6. <p class="mb-4 font-weight-light">Looking for something more? Try these hand picked premium themes!</p>
  7. <div class="row">
  8. {% for item in site.premium reversed %}
  9. {% if item.categories contains 'mix' %}
  10. <div class="col-6 col-lg-3 mb-4">
  11. <div class="item-preview">
  12. <a class="item-preview-img box-shadow-lg d-block" href="{{ item.src }}" onclick="ga('send','event','Affiliate Link','click','{{ item.affiliate }} - {{ item.title }}')" rel="nofollow">
  13. <img class="lazy img-fluid" data-src="{{ item.img-thumbnail }}" alt="{{ item.img-desc }}">
  14. </a>
  15. </div>
  16. </div>
  17. {% endif %}
  18. {% endfor %}
  19. </div>
  20. <a href="/buy-bootstrap-themes" class="btn btn-primary btn-xl shadow">View More Premium Themes</a>
  21. </div>
  22. {% endif %}