Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###########################################
- ####### Config Fluid Template #############
- page = PAGE
- page.typeNum = 0
- page.10 = FLUIDTEMPLATE
- page.10{
- #Path to the template files stored extension
- partialRootPath = {$resDir}/Private/Partials
- layoutRootPath = {$resDir}/Private/Layouts
- file = {$resDir}/Private/Templates/DefaultTemplate.html
- templateName = TEXT
- templateName.stdWrap.cObject = CASE
- templateName.stdWrap.cObject {
- key.data = pagelayout
- default = TEXT
- default.value = {$resDir}/Private/Templates/DefaultTemplate.html
- #Default template
- pagets__DefaultTemplate = TEXT
- pagets__DefaultTemplate.value = {$resDir}/Private/Templates/DefaultTemplate.html
- #Second template
- pagets__RedFooterTemplate = TEXT
- pagets__RedFooterTemplate.value = {$resDir}/Private/Templates/RedFooterTemplate.html
- #Third template
- pagets__NewsLetterTemplate = TEXT
- pagets__NewsLetterTemplate.value = {$resDir}/Private/Templates/NewsLetterTemplate.html
- }
- #Here some variables for use in the template by using {}
- variables {
- siteName = TEXT
- siteName.value = PIZZAWORKSHOP.nl
- pageTitle = TEXT
- pageTitle.data = page:title
- #get the content into the template:
- content < styles.content.get
- #Maincontent
- content_main < styles.content.get
- content_main.select.where = colPos = 0
- #Content Colom 1
- content_column_1 < styles.content.get
- content_column_1.select.where = colPos = 1
- #Content Colom 2
- content_column_2 < styles.content.get
- content_column_2.select.where = colPos = 2
- }
- }
- # Layout Select box for the FE templates
- TCEFORM.pages {
- layout.altLabels.3 = NewsLetterTemplate
- layout.altLabels.2 = RedFooterTemplate
- layout.altLabels.1 = DefaultTemplate
- layout.altLabels.0 = DefaultTemplate
- removeItems = 4,5,6,7,9,10
- }
- ### Backend Layouts
- mod.web_layout.BackendLayouts{
- #template
- DefaultTemplate {
- title = Default Template
- config {
- backend_layout {
- colCount = 1
- rowCount = 1
- rows {
- 1 {
- columns {
- 1 {
- name = Main Content
- colPos = 0
- }
- }
- }
- }
- }
- }
- }
- ##template
- RedFooterTemplate {
- title = Red Footer Template
- config {
- backend_layout {
- colCount = 2
- rowCount = 1
- rows {
- 1 {
- columns {
- 1 {
- name = Linker inhoud
- colPos = 0
- }
- 2 {
- name = Rechter inhoud
- colPos = 1
- }
- }
- }
- }
- }
- }
- }
- #template
- NewsLetterTemplate {
- title = NewsLetter Template
- config {
- backend_layout {
- colCount = 2
- rowCount = 1
- rows {
- 1 {
- columns {
- 1 {
- name = Linker inhoud
- colPos = 0
- }
- 2 {
- name = Rechter inhoud
- colPos = 1
- }
- }
- }
- }
- }
- }
- }
- #end of the BE templates
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement