OctoberCMS is a Laravel-based CMS
What does a CMS do?
CMS, the complete English name is Content Management System, which is translated into content management system in Chinese. Generally speaking, to process a website completely, there must be a front -end ( front-end , another said as front-end), a background ( back end , another said The front end means the layout style of the website content on the Internet. In short, it is the presentation screen you see when you enter a website, which is called the front end, and some will use the template as the main The interface, such as WordPress, belongs to this mode; and the background is where the website content management is done, such as adding articles, uploading pictures, modifying text, and typography changes, all of which must be implemented through the background.
Introducing OctoberCMS
I have seen a lot of CMS recently, and then I chose to use the OctoberCMS software. After using it, I think it is quite good.
This is the default appearance, with simple settings, from general web pages to AJAX examples are all presented here, in fact, JQuery can be used to solve the problem
It is mainly divided into Pages, Partials, Layouts, Content, Assets, Components
This takes a while to understand
Layouts
Put the main file, such as default.htm, which is mainly separated from the frame part, which means that the part of the page that is very important and has a very high chance of repetition is placed here
Partials
The information put here is for me
sites/header
sites/footer.htm
sites/right-slide.html
so it is
{% partial "sites/header" %}
{% partial "sites/footer" %}
{% page %} This means that the pages are dominated by themselves, and of course they can be set to a page
Pages
The main data presented is a bit like resources/views in Laravel
Taking blogs, it corresponds to URL: /, and his Layouts are default
A web page will be formed soon, it is very simple
There is only the part about how OctoberCMS does it, and it will be brought over soon, because the part of the program has not been written yet
Next time, I will directly use this one to DEMO for everyone to see
Like my work? Don't forget to support and clap, let me know that you are with me on the road of creation. Keep this enthusiasm together!
- Author
- More