Advertisement
Mr_media

Templating set-up

May 10th, 2017
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. ###########################################
  2. ####### Config Fluid Template #############
  3.  
  4. page = PAGE
  5. page.typeNum = 0
  6. page.10 = FLUIDTEMPLATE
  7. page.10{
  8.  
  9. #Path to the template files stored extension
  10. partialRootPath = {$resDir}/Private/Partials
  11. layoutRootPath = {$resDir}/Private/Layouts
  12. file = {$resDir}/Private/Templates/DefaultTemplate.html
  13.  
  14. templateName = TEXT
  15. templateName.stdWrap.cObject = CASE
  16. templateName.stdWrap.cObject {
  17.  
  18. key.data = pagelayout
  19.  
  20. default = TEXT
  21. default.value = {$resDir}/Private/Templates/DefaultTemplate.html
  22.  
  23. #Default template
  24. pagets__DefaultTemplate = TEXT
  25. pagets__DefaultTemplate.value = {$resDir}/Private/Templates/DefaultTemplate.html
  26.  
  27. #Second template
  28. pagets__RedFooterTemplate = TEXT
  29. pagets__RedFooterTemplate.value = {$resDir}/Private/Templates/RedFooterTemplate.html
  30.  
  31. #Third template
  32. pagets__NewsLetterTemplate = TEXT
  33. pagets__NewsLetterTemplate.value = {$resDir}/Private/Templates/NewsLetterTemplate.html
  34.  
  35.  
  36. }
  37.  
  38. #Here some variables for use in the template by using {}
  39. variables {
  40. siteName = TEXT
  41. siteName.value = PIZZAWORKSHOP.nl
  42. pageTitle = TEXT
  43. pageTitle.data = page:title
  44.  
  45.  
  46. #get the content into the template:
  47. content < styles.content.get
  48.  
  49. #Maincontent
  50. content_main < styles.content.get
  51. content_main.select.where = colPos = 0
  52.  
  53. #Content Colom 1
  54. content_column_1 < styles.content.get
  55. content_column_1.select.where = colPos = 1
  56.  
  57. #Content Colom 2
  58. content_column_2 < styles.content.get
  59. content_column_2.select.where = colPos = 2
  60. }
  61.  
  62. }
  63.  
  64.  
  65.  
  66.  
  67. # Layout Select box for the FE templates
  68. TCEFORM.pages {
  69. layout.altLabels.3 = NewsLetterTemplate
  70. layout.altLabels.2 = RedFooterTemplate
  71. layout.altLabels.1 = DefaultTemplate
  72. layout.altLabels.0 = DefaultTemplate
  73. removeItems = 4,5,6,7,9,10
  74. }
  75.  
  76. ### Backend Layouts
  77.  
  78. mod.web_layout.BackendLayouts{
  79.  
  80. #template
  81. DefaultTemplate {
  82. title = Default Template
  83. config {
  84. backend_layout {
  85. colCount = 1
  86. rowCount = 1
  87. rows {
  88. 1 {
  89. columns {
  90. 1 {
  91. name = Main Content
  92. colPos = 0
  93. }
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }
  100.  
  101.  
  102. ##template
  103. RedFooterTemplate {
  104. title = Red Footer Template
  105. config {
  106. backend_layout {
  107. colCount = 2
  108. rowCount = 1
  109. rows {
  110. 1 {
  111. columns {
  112. 1 {
  113. name = Linker inhoud
  114. colPos = 0
  115. }
  116. 2 {
  117. name = Rechter inhoud
  118. colPos = 1
  119. }
  120. }
  121. }
  122. }
  123. }
  124. }
  125. }
  126.  
  127. #template
  128. NewsLetterTemplate {
  129. title = NewsLetter Template
  130. config {
  131. backend_layout {
  132. colCount = 2
  133. rowCount = 1
  134. rows {
  135. 1 {
  136. columns {
  137. 1 {
  138. name = Linker inhoud
  139. colPos = 0
  140. }
  141. 2 {
  142. name = Rechter inhoud
  143. colPos = 1
  144. }
  145. }
  146. }
  147. }
  148. }
  149. }
  150. }
  151.  
  152. #end of the BE templates
  153.  
  154. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement