Working on the admin panel every now and then





Code: Select all
<main>
<nav>
<a class=active>Home</a>
<a>About</a>
</nav>
<content>
Your beautiful contents
</content>
<footer>
sitename.com | with wondercms
</footer>
</main>
Code: Select all
<section id=settings>
<nav>
<a class="link active">settings #1</a>
<a>settings #2</a>
</nav>
<article>settings page #1</article>
<article>settings page #2</article>
<footer>
<a>WonderCMS</a>
<a>Community</a>
</footer>
</section>
Code: Select all
<style>
#settings {
display: grid;
grid-template-rows: 40px 1fr(or auto?) 40px;
grid-template-areas: "nav" "page" "foot";
}
#settings > nav {
grid-area: nav;
display: // either grid/flex here;
}
#settings > article {
grid-area: page;
width/height: fill its container;
display: none; // have like .active class for display: block only
}
#settings > footer {
grid-area: foot;
display: //again grid/flex here;
}
</style>
woah been a while since i was here