marketing.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {% if page.layout contains 'overview' or page.title == "Premium Bootstrap Themes" %}
  2. {% else %}
  3. <hr class="mb-5 custom">
  4. <div class="container">
  5. <div class="text-center">
  6. <h4 class="mt-0 mb-1">Premium Bootstrap Themes</h4>
  7. <p class="mb-4 font-weight-light">Looking for something more? Try one of Start Bootstrap's premium themes!</p>
  8. </div>
  9. <div class="row justify-content-center">
  10. {% assign sorted = site.themes | sort: "rank" %}
  11. {% for item in sorted %}
  12. {% if item.pro %}
  13. <div class="col-md-6 col-lg-3 mb-4">
  14. <div class="item-preview">
  15. <a class="item-preview-img box-shadow-lg d-block" href="{{ item.src }}" onclick="ga('send','event','Premium Link','click','{{ item.title }}')" rel="nofollow">
  16. <img class="lazy img-fluid" data-src="{{ item.img-thumbnail }}" alt="{{ item.img-desc }}">
  17. </a>
  18. <h6 class="mt-3 mb-0">{{ item.title }}</h6>
  19. <div class="small">{{ item.bump }}</div>
  20. </div>
  21. </div>
  22. {% endif %}
  23. {% endfor %}
  24. </div>
  25. <div class="text-center">
  26. <h4 class="mt-5 mb-1"><span class="badge badge-primary badge-pill">New!</span> Premium Bundles!</h4>
  27. <p class="mb-4 font-weight-light">Bundle our pro HTML products or our pro Angular 9 products together and save!</p>
  28. </div>
  29. <div class="row">
  30. <!-- HTML Bundle -->
  31. <div class="col-md-6 mb-4">
  32. <div class="item-preview">
  33. <a class="item-preview-img box-shadow-lg d-block" href="https://shop.startbootstrap.com/product/pro-html-bundle/" onclick="ga('send','event','Premium Link','click','Pro HTML Bundle')" rel="nofollow">
  34. <img class="lazy img-fluid" data-src="/assets/img/screenshots/premium/html-bundle.jpg" alt="Start Bootstrap Pro HTML Bundle">
  35. </a>
  36. <h6 class="mt-3 mb-0">Pro HTML Bundle</h6>
  37. <div class="small">Includes SB Admin Pro and SB UI Kit Pro</div>
  38. </div>
  39. </div>
  40. <!-- Angular 9 Bundle -->
  41. <div class="col-md-6 mb-4">
  42. <div class="item-preview">
  43. <a class="item-preview-img box-shadow-lg d-block" href="https://shop.startbootstrap.com/product/pro-angular-bundle/" onclick="ga('send','event','Premium Link','click','Pro Angular Bundle')" rel="nofollow">
  44. <img class="lazy img-fluid" data-src="/assets/img/screenshots/premium/angular-bundle.jpg" alt="Start Bootstrap Pro Angular 9 Bundle">
  45. </a>
  46. <h6 class="mt-3 mb-0">Pro Angular Bundle</h6>
  47. <div class="small">Includes SB Admin Pro Angular and SB UI Kit Pro Angular</div>
  48. </div>
  49. </div>
  50. </div>
  51. <div class="text-center">
  52. <a href="/buy-bootstrap-themes" class="btn btn-primary btn-xl shadow">View More Premium Themes</a>
  53. </div>
  54. </div>
  55. {% endif %}