section.html 1.0 KB

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