Week 1 - Theorie
October CMS
Default installation:
MAMP+XAMP
Custom installation:
MAMP+XAMP
octobercms
For security reasons you should delete the installation files, the install.php script and the install_files directory.
Backend login:
http://octobercms.dev:8888/backend
1) Add a page through the UI
Where is our layout?!
2) Add in code:
title = "About us"
url = "/about-us"
layout = "default" // <-- This bit
is_hidden = 0
==
<div class="about-us">
{% content 'about-us.htm' %}
</div>
1) Add a new page through the UI
2) Add in code:
title = "Contact us"
url = "/contact-us"
layout = "default" // <-- This bit
is_hidden = 0
==
3) Add the component through the UI
4) Add the form markup
5) Results!