page-header.html 436 B

12345678910111213
  1. <section class="section pb-0">
  2. <div class="container text-center">
  3. <h1 class="display-3">{{ .Title | markdownify }}</h1>
  4. {{ with .Params.subtitle }}
  5. <p>{{ . | 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>