section.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. layout: documentation
  3. doc-tab: layout
  4. doc-subtab: section
  5. ---
  6. {% include subnav-layout.html %}
  7. <section class="section">
  8. <div class="container">
  9. <h1 class="title">Section</h1>
  10. <h2 class="subtitle">
  11. A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading
  12. </h2>
  13. <hr>
  14. <div class="content">
  15. <p>Use sections as <strong>direct</strong> children of <code>body</code>.</p>
  16. </div>
  17. {% highlight html %}
  18. <body>
  19. <section class="section">
  20. <div class="container">
  21. <div class="heading">
  22. <h1 class="title">Section</h1>
  23. <h2 class="subtitle">
  24. A simple container to divide your page into <strong>sections</strong>, like the one you're currently reading
  25. </h2>
  26. </div>
  27. </div>
  28. </section>
  29. </body>
  30. {% endhighlight %}
  31. <div class="content">
  32. <p>You can use the modifiers <code>is-medium</code> and <code>is-large</code> to change the <strong>spacing</strong>.</p>
  33. </div>
  34. </div>
  35. </section>