page-header-video.html 464 B

12345678910111213
  1. <section class="section sec-video">
  2. <div class="container text-center">
  3. <h1 class="display-3 title">{{ .Title | markdownify }}</h1>
  4. {{ with .Params.subtitle }}
  5. <p class="subtitle">{{ . | markdownify }}</p>
  6. {{ end }}
  7. {{ if .Params.button }}
  8. {{ with .Params.button }}
  9. <a href="http://ai.choozmo.com/"><button class="btn btn btn-sm btn-primary learnMore">{{ . | markdownify }}</button></a>
  10. {{ end }}
  11. {{ end }}
  12. </div>
  13. </section>