index.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. layout: examples
  3. title: Cover Template
  4. extra_css:
  5. - "cover.css"
  6. html_class: "h-100"
  7. body_class: "d-flex h-100 text-center text-white bg-dark"
  8. include_js: false
  9. ---
  10. <div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
  11. <header class="mb-auto">
  12. <div>
  13. <h3 class="float-md-start mb-0">Cover</h3>
  14. <nav class="nav nav-masthead justify-content-center float-md-end">
  15. <a class="nav-link active" aria-current="page" href="#">Home</a>
  16. <a class="nav-link" href="#">Features</a>
  17. <a class="nav-link" href="#">Contact</a>
  18. </nav>
  19. </div>
  20. </header>
  21. <main class="px-3">
  22. <h1>Cover your page.</h1>
  23. <p class="lead">Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.</p>
  24. <p class="lead">
  25. <a href="#" class="btn btn-lg btn-secondary fw-bold border-white bg-white">Learn more</a>
  26. </p>
  27. </main>
  28. <footer class="mt-auto text-white-50">
  29. <p>Cover template for <a href="https://getbootstrap.com/" class="text-white">Bootstrap</a>, by <a href="https://twitter.com/mdo" class="text-white">@mdo</a>.</p>
  30. </footer>
  31. </div>