landing-pages.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. layout: default
  3. type: theme
  4. title: Bootstrap Landing Page Themes
  5. description: Free Bootstrap themes that are ready to customize and publish. All of our themes are built with Bootstrap 4, MIT licensed, and updated regularly!
  6. permalink: /themes/landing-pages/
  7. meta-title: Free Bootstrap 4 Landing Page Themes
  8. meta-description: Bootstrap 4 landing page themes that are pre-designed and ready to publish, perfect for creating marketing pages and one page websites
  9. redirect_from:
  10. - /template-categories/landing-pages/
  11. - /template-categories/one-page/
  12. ---
  13. {% include masthead/masthead-page.html %}
  14. <div class="container">
  15. <!-- Show paginated posts for the specificed collection -->
  16. <div class="row">
  17. {% assign sorted = site.themes | sort: "rank" %}
  18. {% for theme in sorted %}
  19. {% if theme.categories contains 'landing-page' %}
  20. <div class="col-md-4">
  21. <div class="item-preview mb-5">
  22. <a class="item-preview-img box-shadow-lg d-block mb-3" href="{{ theme.src }}">
  23. <img class="img-fluid" src="{{ theme.img-thumbnail }}" alt="{{ theme.img-desc }}">
  24. </a>
  25. <div class="item-preview-title d-flex align-items-center">
  26. {{ theme.title }}
  27. {% if theme.pro %}
  28. <span class='badge badge-warning ml-auto small badge-pill'>Pro</span>
  29. {% else %}
  30. <span class='badge badge-success ml-auto small badge-pill'>Free</span>
  31. {% endif %}
  32. </div>
  33. <div class="item-preview-description">{{ theme.bump }}</div>
  34. </div>
  35. </div>
  36. {% endif %}
  37. {% endfor %}
  38. {% include survey.html %}
  39. </div>
  40. <!-- /.row -->
  41. </div>
  42. <!-- /.container -->
  43. <section class="after-loop">
  44. <div class="container">
  45. <div class="row">
  46. <div class="col-lg-4 col-md-8 mb-5 mb-lg-0 mx-auto">
  47. <a href="/templates/" class="after-loop-item card border-0 card-templates shadow-lg">
  48. <div class="card-body d-flex align-items-end flex-column text-right">
  49. <h4>Templates</h4>
  50. <p class="w-75">Unstyled layouts to help you get started!</p>
  51. <i class="fal fa-pencil-ruler"></i>
  52. </div>
  53. </a>
  54. </div>
  55. <div class="col-lg-4 col-md-8 mb-5 mb-lg-0 mx-auto">
  56. <a href="/snippets/" class="after-loop-item card border-0 card-snippets shadow-lg">
  57. <div class="card-body d-flex align-items-end flex-column text-right">
  58. <h4>Snippets</h4>
  59. <p class="w-75">Code snippets ready to copy and paste!</p>
  60. <i class="fal fa-code"></i>
  61. </div>
  62. </a>
  63. </div>
  64. <div class="col-lg-4 col-md-8 mx-auto">
  65. <a href="/guides/" class="after-loop-item card border-0 card-guides shadow-lg">
  66. <div class="card-body d-flex align-items-end flex-column text-right">
  67. <h4>Guides</h4>
  68. <p class="w-75">Guides and tutorials to help you learn Bootstrap!</p>
  69. <i class="fal fa-books"></i>
  70. </div>
  71. </a>
  72. </div>
  73. </div>
  74. </div>
  75. </section>