I currently have a site in a cms which is no longer supported, it is mainly in html/php and using bootstrap. I wanted to expand the capabilities so I chose to migrate to Kirby. Looked quiet easy but then I got stuck on the blocks/layout part. So far I have a few questions, but I’m sure I’ll have more.
In my current site I use php code throughout the site - I noticed this doesn’t work in Kirby. Is there a way for php to still work in Kirby?
My understanding is that for layout/blocks to work on the front-end I need to setup bootstrap styles if I wish to stay with bootstrap. How do I go about this? Is there some sort of a guide?
Am I better of using the grid system built into Kirby Starterkit?
Are there better options out there than bootstrap which are maybe more friendly with Kirby?
3 and 4: If you want to get rid of Bootstrap (for which there are good reasons, depending on how you actually use it), then there are different options (own CSS, TailwindCSS), but that’s up to you and nothing anyone can advise. No matter what you use, you will usually have to overwrite (some) block snippets, I think.
What I mean with php, here is an example I had line to display the year in the copyright <?php echo date("Y"); ?> and it didn’t work when I added it to the template.php.
Regarding those other alternatives to bootstrap - do any of them work better with kirby or are they all similar?