blank.html 668 B

1234567891011121314151617181920
  1. {{ $st := .page }}
  2. {{ $columns := $st.Params.design.columns | default "2" }}
  3. <div class="row">
  4. {{ if ne $columns "1" }}
  5. <div class="col-12 col-lg-4 section-heading">
  6. {{ with $st.Title }}<h1>{{ . | markdownify | emojify }}</h1>{{ end }}
  7. {{ with $st.Params.subtitle }}<p>{{ . | markdownify | emojify }}</p>{{ end }}
  8. </div>
  9. <div class="col-12 col-lg-8">
  10. {{ $st.Content }}
  11. </div>
  12. {{ else }}
  13. <div class="col-lg-12">
  14. {{ with $st.Title }}<h1>{{ . | markdownify | emojify }}</h1>{{ end }}
  15. {{ with $st.Params.subtitle }}<p>{{ . | markdownify | emojify }}</p>{{ end }}
  16. {{ $st.Content }}
  17. </div>
  18. {{ end }}
  19. </div>