mod.tsconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #
  2. # Mod Config
  3. #
  4. mod {
  5. #
  6. # Backend layouts
  7. #
  8. web_layout.BackendLayouts {
  9. header_content {
  10. title = Header & Content
  11. config.backend_layout {
  12. colCount = 1
  13. rowCount = 2
  14. rows {
  15. 1 {
  16. columns {
  17. 1 {
  18. name = Header
  19. colPos = 3
  20. colspan = 1
  21. #
  22. # Content defender
  23. #
  24. disallowed {
  25. CType = 1col-container, 2cols-with-header-container, 3cols-container
  26. }
  27. }
  28. }
  29. }
  30. 2 {
  31. columns {
  32. 1 {
  33. name = Content
  34. colPos = 0
  35. colspan = 1
  36. }
  37. }
  38. }
  39. }
  40. }
  41. }
  42. iframe {
  43. title = iFrame
  44. config.backend_layout {
  45. colCount = 1
  46. rowCount = 1
  47. rows {
  48. 1 {
  49. columns {
  50. 1 {
  51. name = Content
  52. colPos = 0
  53. colspan = 1
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }
  60. }
  61. }