single.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {{ define "main" }}
  2. <header class="py-5 border-bottom">
  3. <div class="container pt-md-1 pb-md-4">
  4. <div class="row">
  5. <div class="col-xl-8">
  6. <h1 class="bd-title mt-0">{{ .Title | markdownify }}</h1>
  7. <p class="bd-lead">{{ .Page.Params.Description | markdownify }}</p>
  8. {{ if eq .Title "Examples" }}
  9. <div class="d-flex flex-column flex-sm-row">
  10. <a href="{{ .Site.Params.download.dist_examples }}" class="btn btn-lg btn-bd-primary" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download Examples');">Download examples</a>
  11. <a href="{{ .Site.Params.download.source }}" class="btn btn-lg btn-outline-secondary mt-3 mt-sm-0 ms-sm-3" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download');">Download source code</a>
  12. </div>
  13. {{ end }}
  14. </div>
  15. <div class="col-xl-4 d-lg-flex justify-content-xl-end">
  16. {{ partial "ads" . }}
  17. </div>
  18. </div>
  19. </div>
  20. </header>
  21. <main class="bd-content order-1 py-5" id="content">
  22. <div class="container">
  23. {{ .Content }}
  24. {{ if eq .Title "Examples" }}
  25. <hr class="my-5">
  26. <div class="container">
  27. <div class="text-center">
  28. <div class="masthead-followup-icon d-inline-block mb-2 text-white bg-danger">
  29. {{ partial "icons/droplet-fill.svg" (dict "width" "32" "height" "32") }}
  30. </div>
  31. <h2 class="display-6 fw-normal">Go further with Bootstrap Themes</h2>
  32. <p class="col-md-10 col-lg-8 mx-auto lead">
  33. Need something more than these examples? Take Bootstrap to the next level with premium themes from the <a href="{{ .Site.Params.themes }}">official Bootstrap Themes marketplace</a>. They’re built as their own extended frameworks, rich with new components and plugins, documentation, and powerful build tools.
  34. </p>
  35. <a href="{{ .Site.Params.themes }}" class="btn btn-lg btn-outline-primary mb-3">Browse themes</a>
  36. </div>
  37. <img class="d-block img-fluid mt-3 mx-auto" srcset="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage.png,
  38. /docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage@2x.png 2x"
  39. src="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage.png"
  40. alt="Bootstrap Themes" width="1150" height="320" loading="lazy">
  41. </div>
  42. {{ end }}
  43. </div>
  44. </main>
  45. {{ end }}