I went minimalistic.
Working on the admin panel every now and then
Minimalistic
Re: Minimalistic
Looking good!
If you ever feel like sharing or showing off a live demo, would love to test this out.
If you ever feel like sharing or showing off a live demo, would love to test this out.
Re: Minimalistic
Ofcourse! Cleaned it a little, prolly some redundant/incorrect css.
I was actually thinking to instead do some cutting/editing on index.php.
I'd like to go minimal there too, especially for the admin panel (see code snippets below)
"visitor" html:
Admin panel?
Admin panel styles:
Let me know what you think
The admin panel still sux, only did some basic styling there, buttons are missing etc.I was actually thinking to instead do some cutting/editing on index.php.
I'd like to go minimal there too, especially for the admin panel (see code snippets below)
"visitor" html:
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>
Last edited by mjxl on Mon Mar 22, 2021 10:41 pm, edited 1 time in total.
Re: Minimalistic
Hej MJ!
Any chance you can upload this to GitHub? I'll gladly run it for a test!
Any chance you can upload this to GitHub? I'll gladly run it for a test!
Re: Minimalistic
woah been a while since i was here better late than never i guess !
It's not done, it's the current state of it tho
https://github.com/mjuksel/wondercms-mjxlMinimalist