Install Kirby with the Starterkit. Kirby is a lightweight, flexible and file-based CMS made by Bastian Allgeier. For more informations about installation you should look at getkirby.com/docs/installation.
Remove the default /assets, /content and /site folders and replace them with the downloaded ones from ENTERPRISE.
Once the upload is finished, your website is ready for use.
Please remember, that Kirby itself is not for free. If you use this theme for a public release, don't forget to buy a license for Kirby!
The panel is the site management interface to configure your site, add or delete content. Go to panel and fill username and password. For more informations about the panel, have a look at getkirby.com/docs/panel.
In Menu > Site, complete the General settings and customize the Style settings (font family, colors). The last section (Advanced Styles Settings) can be left empty.
In Menu > Site, you can create, edit and delete pages. Services, skills, team, showcase and contact pages are already installed. You can show/hide these pages as sections on your Homepage by adding/removing contents. Also you can show/hide these pages in the menu by setting them as visible/invisible in the panel. You can also create new pages.
In Menu > Site, the "Advanced Styles Settings" section allows you to enter custom CSS directly:
html {font-size: 110%; }
To change the order of the sections on your homepage, open "site/templates/home.php" and change the order of the lines:
<!-- Order homepage sections by changing the order of following snippets : -->
<?php snippet('section-services') ?>
<?php snippet('section-showcase', ['limit' => 6]) ?>
<?php snippet('section-share') ?>
<?php snippet('section-text') ?>
<?php snippet('section-skills') ?>
<?php snippet('section-client') ?>
<?php snippet('section-contact') ?>
<?php snippet('section-social') ?>
To create a new section, create a new php file in /site/snippets/. Give it a custom name, for exemple "new-section.php". Make sure to begin and finish your code by these lines :
<section class="row" id="new-section">
<div class="container">
Your content here
...
</div>
</section>
The class ".container" can be removed if you want your content to be full width.
Then, add a new line in "site/templates/home.php" where you want it to appear :
<?php snippet('new-section') ?>
If you need assistance with installing, customizing the design or the functionalities, or for more informations please contact me at oliviergassies@gmail.com.