B5-Snippets
B5-Snippets copied to clipboard
Feature request: Holy Grail Layout
Thank you for your time and effort creating these B5 snippets!
It would be great to put these snippets in a responsive Holy Grail layout done in B5.
Holy Grail layouts are great for master/detail, search/triage, dashboards, and web applications.
Detailed Holy Grail requirements are here. https://philipwalton.github.io/solved-by-flexbox/demos/holy-grail/
WDYT?
D7460N
Hey thanks for making the request. I think that's a fair request that I can quickly enough.
To clarify, all the current templates are from the official examples: https://v5.getbootstrap.com/docs/5.0/examples/
The holy grail layout is a good idea because they don't have it. At the core, the layout would only really involve the following html below .row / .columns and a few of the flex utilities to make the columns grow and shrink based on content and media quires.
<body class="container-fluid">
<header class="row">…</header>
<div class="row">
<nav class="col">…</nav>
<main class="col">…</main>
<aside class="col">…</aside>
</div>
<footer class="row">…</footer>
</body>