Skip to content

3.1 Create New Page

Taufik Firmansyah edited this page Jul 15, 2015 · 2 revisions

Page CMS ( Static Pages )

Page CMS allow you to create page for frontend ( Public ) or Private. This can be put for creating , contact , about us , service , TOC etc

Before you begin creating pages , you have to know that SXIMO create file everytime you create pages , its mean you have full control to insert everything in content such tag php , css , exclude javscript

Go to >> Control Panel >> Pages >> new

![enter image description here](http://sximobuilder.com/uploads/documents/sximocidoc/page_cms1.png "enter image title here")

enter image description here

Form Info

Parameter Description Example
Title This is title of your page Inventory , HRD System
Alias/slug Users for UL structure ( http://domain.com/about-us) about-us , contactus , toc
Filename When you create page , it will create new file . the name of file are given by this field  
Content The content give you powerfull ability to create any layout desain using bootsrtap CSS framework  
Access Limit wich group are able to view the page  
Enable Make the page accessible True / False
### Bootstrap Element

We'are really recomended that you learning twitter bootstrap css framework to use page editor . Sximo fully supported to use all bootstrap html and css syntac , all elements from bootsrap can be use to design your own page.

Breadcrumb Code HTML

Frontend
<div class="wrapper-header ">
    <div class=" container">
        <div class="col-sm-6 col-xs-6">
          <div class="page-title">
            <h3> About Us <small> Who We Are ?</small></h3>
          </div>
        </div>
        <div class="col-sm-6 col-xs-6 ">
          <ul class="breadcrumb pull-right">
            <li><a href="<?php echo site_url('') ?>">Home</a></li>
            <li class="active">About Us </li>
          </ul>        
        </div>
          
    </div>
</div>
Backend
<div class="page-content row">
    <!-- Page header -->
    <div class="page-header">
      <div class="page-title">
        <h3> Title <small> Tag Line </small></h3>
      </div>
 
      <ul class="breadcrumb">
        <li><a href="<?php site_url('dashboard') ?>"> Dashboard</a></li>
        <li class="active">Title </li>
      </ul>      
      
    </div>
 
    <div class="page-content-wrapper">
---- Content page here ---
    </div>
</div>

Clone this wiki locally