Default
The default section component can have a header, content and footer. There are
optional, depending on the element you use some children are required. For
example: when using a <section>
the l-section__header is required.
<section class="l-section">
l-section
<div class="l-container">
l-container
<header class="l-section__header">
l-section__header
<h2 class="l-section__title">l-section__title</h2>
</header>
<div class="l-section__content">
l-section__content
</div>
<footer class="l-section__footer">
l-section__footer
</footer>
</div>
</section>