├── start.json ├── data ├── base │ ├── videos.json │ ├── images.json │ ├── audios.json │ └── youtube.json ├── welcome.json ├── menu.json └── extended │ ├── pages1.json │ ├── sublist3.json │ ├── sublist1.json │ ├── sublist0.json │ ├── pages0.json │ ├── list3_section0.json │ ├── list3_section1.json │ ├── list3_section2.json │ └── list3_section3.json └── README.md /start.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GitHub Pages Example", 3 | "version": "1.0.2", 4 | "parameter": "menu:https://benzac-de.github.io/msx/data/menu.json" 5 | } -------------------------------------------------------------------------------- /data/base/videos.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "Videos", 4 | "template": { 5 | "type": "separate", 6 | "layout": "0,0,2,4", 7 | "icon": "msx-white-soft:movie", 8 | "color": "msx-glass" 9 | }, 10 | "items": [ 11 | { 12 | "title": "Video 1", 13 | "playerLabel": "Video 1", 14 | "action": "video:http://msx.benzac.de/media/video1.mp4" 15 | }, 16 | { 17 | "title": "Video 2", 18 | "playerLabel": "Video 2", 19 | "action": "video:http://msx.benzac.de/media/video2.mp4" 20 | }, 21 | { 22 | "title": "Video 3", 23 | "playerLabel": "Video 3", 24 | "action": "video:http://msx.benzac.de/media/video3.mp4" 25 | } 26 | ] 27 | } -------------------------------------------------------------------------------- /data/base/images.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "Images", 4 | "template": { 5 | "type": "default", 6 | "layout": "0,0,3,2", 7 | "color": "msx-glass", 8 | "imageFiller": "cover", 9 | "action": "image:context" 10 | }, 11 | "items": [ 12 | { 13 | "titleFooter": "Image 1", 14 | "image": "http://msx.benzac.de/img/bg1.jpg" 15 | }, 16 | { 17 | "titleFooter": "Image 2", 18 | "image": "http://msx.benzac.de/img/bg2.jpg" 19 | }, 20 | { 21 | "titleFooter": "Image 3", 22 | "image": "http://msx.benzac.de/img/bg3.jpg" 23 | }, 24 | { 25 | "titleFooter": "Image 4", 26 | "image": "http://msx.benzac.de/img/test.jpg" 27 | } 28 | ] 29 | } -------------------------------------------------------------------------------- /data/welcome.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "items": [ 5 | { 6 | "type": "default", 7 | "layout": "0,0,12,6", 8 | "color": "msx-glass", 9 | "headline": "Welcome to Media Station X {chr:ndash} GitHub Pages Example", 10 | "text": [ 11 | "This project shows a way to host {txt:msx-white:Media Station X} JSON files via {txt:msx-white:GitHub Pages}.{br}{br}", 12 | "{ico:msx-white:play-arrow} For more information about the {txt:msx-white:Media Station X} project, please visit: {txt:msx-white:https://msx.benzac.de/info/}.{br}", 13 | "{ico:msx-white:play-arrow} Check out this project on GitHub: {txt:msx-white:https://github.com/benzac-de/msx}.{br}" 14 | ] 15 | } 16 | ] 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /data/base/audios.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "Audios", 4 | "template": { 5 | "type": "separate", 6 | "layout": "0,0,2,3", 7 | "icon": "msx-white-soft:music-note", 8 | "color": "msx-glass" 9 | }, 10 | "items": [ 11 | { 12 | "background": "http://msx.benzac.de/img/bg1.jpg", 13 | "title": "Audio 1", 14 | "playerLabel": "Audio 1", 15 | "action": "audio:http://msx.benzac.de/media/audio1.mp3" 16 | }, 17 | { 18 | "background": "http://msx.benzac.de/img/bg2.jpg", 19 | "title": "Audio 2", 20 | "playerLabel": "Audio 2", 21 | "action": "audio:http://msx.benzac.de/media/audio2.mp3" 22 | }, 23 | { 24 | "background": "http://msx.benzac.de/img/bg3.jpg", 25 | "title": "Audio 3", 26 | "playerLabel": "Audio 3", 27 | "action": "audio:http://msx.benzac.de/media/audio3.mp3" 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /data/base/youtube.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "YouTube", 4 | "template": { 5 | "type": "separate", 6 | "layout": "0,0,3,3", 7 | "color": "black", 8 | "imageFiller": "cover" 9 | }, 10 | "items": [ 11 | { 12 | "title": "How To Use MSX With Node.js", 13 | "playerLabel": "How To Use MSX With Node.js", 14 | "image": "https://img.youtube.com/vi/61CFhMvAbFU/hqdefault.jpg", 15 | "action": "video:plugin:http://msx.benzac.de/plugins/youtube.html?id=61CFhMvAbFU" 16 | }, 17 | { 18 | "title": "How To Use Google Drive MSX", 19 | "playerLabel": "How To Use Google Drive MSX", 20 | "image": "https://img.youtube.com/vi/pfHOmhmeTzo/hqdefault.jpg", 21 | "action": "video:plugin:http://msx.benzac.de/plugins/youtube.html?id=pfHOmhmeTzo" 22 | }, 23 | { 24 | "title": "MRSS Launcher", 25 | "playerLabel": "MRSS Launcher", 26 | "image": "https://img.youtube.com/vi/tOAAg3h1_U8/hqdefault.jpg", 27 | "action": "video:plugin:http://msx.benzac.de/plugins/youtube.html?id=tOAAg3h1_U8" 28 | }, 29 | { 30 | "title": "TV Benchmark Tests", 31 | "playerLabel": "TV Benchmark Tests", 32 | "image": "https://img.youtube.com/vi/9A_I_ZqbWkM/hqdefault.jpg", 33 | "action": "video:plugin:http://msx.benzac.de/plugins/youtube.html?id=9A_I_ZqbWkM" 34 | } 35 | ] 36 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Media Station X - GitHub Pages Example 2 | This project shows a way to host **Media Station X** JSON files via **GitHub Pages**. 3 | 4 | For more information about the **Media Station X** project, please visit: https://msx.benzac.de/info/. 5 | 6 | ## Create Repository (From Scratch) 7 | * Create a repository named **msx** under your account (in this case: https://github.com/benzac-de/msx) 8 | * Create a **start.json** file in this repository (for the data structure, please see: https://msx.benzac.de/wiki/index.php?title=Start_Object) 9 | * Create a **data** folder (or choose another name) in this repository 10 | * Create a **menu.json** file (or choose another name) in the **data** folder (for the data structure, please see: https://msx.benzac.de/wiki/index.php?title=Menu_Root_Object) 11 | * Create additional content files in the **data** folder (for the data structure, please see: https://msx.benzac.de/wiki/index.php?title=Content_Root_Object) 12 | * Reference the **menu.json** in the **start.json** file (in this case: `menu:https://benzac-de.github.io/msx/data/menu.json`) 13 | * Reference the additional content files in the **menu.json** file 14 | * Setup **GitHub Pages** by following this guide: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site 15 | * Check if the **start.json** file is correctly hosted: 16 | * https://{ACCOUNT}.github.io/msx/start.json (in this case: https://benzac-de.github.io/msx/start.json) 17 | 18 | ## Setup Start Parameter 19 | * Go to your corresponding application store (please see: https://msx.benzac.de/info/?tab=PlatformSupport) 20 | * Install and launch the **Media Station X** application 21 | * Navigate to **Settings** → **Start Parameter** → **Setup** 22 | * Set the security lock (for HTTPS mode) and enter: `{ACCOUNT}.github.io` (in this case: `benzac-de.github.io`) 23 | * Once you have completed the start parameter setup, your content is loaded every time you start the application 24 | 25 | ## Test In Browser 26 | * Use a standard web browser and open the following URL: 27 | * https://msx.benzac.de?start=menu:https://{ACCOUNT}.github.io/path/to/menu (in this case: https://msx.benzac.de?start=menu:https://benzac-de.github.io/msx/data/menu.json) 28 | 29 | ## Example Screenshots 30 | ![GitHub Pages Example](https://msx.benzac.de/info/img/github2.png) 31 | 32 | ## Example Video 33 | [![GitHub Pages Example](https://img.youtube.com/vi/d9gff20WY4M/maxresdefault.jpg)](https://www.youtube.com/watch?v=d9gff20WY4M) 34 | -------------------------------------------------------------------------------- /data/menu.json: -------------------------------------------------------------------------------- 1 | { 2 | "headline": "GitHub Pages Example", 3 | "menu": [ 4 | { 5 | "icon": "info", 6 | "label": "Welcome", 7 | "data": "https://benzac-de.github.io/msx/data/welcome.json" 8 | }, 9 | { 10 | "type": "separator", 11 | "label": "Base" 12 | }, 13 | { 14 | "icon": "movie", 15 | "label": "Videos", 16 | "data": "https://benzac-de.github.io/msx/data/base/videos.json" 17 | }, 18 | { 19 | "icon": "music-note", 20 | "label": "Audios", 21 | "data": "https://benzac-de.github.io/msx/data/base/audios.json" 22 | }, 23 | { 24 | "icon": "image", 25 | "label": "Images", 26 | "data": "https://benzac-de.github.io/msx/data/base/images.json" 27 | }, 28 | { 29 | "icon": "smart-display", 30 | "label": "YouTube", 31 | "data": "https://benzac-de.github.io/msx/data/base/youtube.json" 32 | }, 33 | { 34 | "type": "separator", 35 | "label": "Extended - Lists" 36 | }, 37 | { 38 | "icon": "view-stream", 39 | "label": "First List", 40 | "data": "https://benzac-de.github.io/msx/data/extended/list0.json" 41 | }, 42 | { 43 | "icon": "view-stream", 44 | "label": "Second List", 45 | "data": "https://benzac-de.github.io/msx/data/extended/list1.json" 46 | }, 47 | { 48 | "icon": "view-stream", 49 | "label": "Third List", 50 | "data": "https://benzac-de.github.io/msx/data/extended/list2.json" 51 | }, 52 | { 53 | "icon": "view-stream", 54 | "label": "Fourth List", 55 | "data": "https://benzac-de.github.io/msx/data/extended/list3_section0.json" 56 | }, 57 | { 58 | "icon": "view-stream", 59 | "label": "Fifth List", 60 | "data": "https://benzac-de.github.io/msx/data/extended/list4.json" 61 | }, 62 | { 63 | "icon": "view-stream", 64 | "label": "Sixth List", 65 | "data": "https://benzac-de.github.io/msx/data/extended/list5.json" 66 | }, 67 | { 68 | "type": "separator", 69 | "label": "Extended - Pages" 70 | }, 71 | { 72 | "icon": "view-array", 73 | "label": "First Pages", 74 | "data": "https://benzac-de.github.io/msx/data/extended/pages0.json" 75 | }, 76 | { 77 | "icon": "view-array", 78 | "label": "Second Pages", 79 | "data": "https://benzac-de.github.io/msx/data/extended/pages1.json" 80 | } 81 | ] 82 | } -------------------------------------------------------------------------------- /data/extended/pages1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "Second Pages", 4 | "preload": "next", 5 | "pages": [ 6 | { 7 | "important": false, 8 | "headline": "Quisque dolor ipsum", 9 | "items": [ 10 | { 11 | "type": "teaser", 12 | "layout": "0,0,4,6", 13 | "color": "msx-glass", 14 | "image": "https://picsum.photos/seed/msx_24764bb8_bg/552/840", 15 | "imageFiller": "cover", 16 | "badge": "Cras sapien tortor", 17 | "title": "Orci varius natoque penatibus et", 18 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 19 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 20 | }, 21 | { 22 | "type": "default", 23 | "layout": "4,0,8,2", 24 | "color": "msx-glass", 25 | "wrapperColor": "msx-glass", 26 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/432/264", 27 | "imageFiller": "cover", 28 | "imageWidth": 3, 29 | "title": "Duis rutrum orci purus", 30 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 31 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 32 | }, 33 | { 34 | "type": "default", 35 | "layout": "4,2,8,2", 36 | "color": "msx-glass", 37 | "wrapperColor": "msx-glass", 38 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/432/264", 39 | "imageFiller": "cover", 40 | "imageWidth": 3, 41 | "title": "Orci varius natoque penatibus et", 42 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 43 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 44 | }, 45 | { 46 | "type": "default", 47 | "layout": "4,4,8,2", 48 | "color": "msx-glass", 49 | "wrapperColor": "msx-glass", 50 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/432/264", 51 | "imageFiller": "cover", 52 | "imageWidth": 3, 53 | "title": "Sed et sem augue", 54 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 55 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 56 | } 57 | ] 58 | }, 59 | { 60 | "headline": "Quisque dolor ipsum", 61 | "items": [ 62 | { 63 | "type": "teaser", 64 | "layout": "0,0,8,4", 65 | "color": "msx-glass", 66 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/1128/552", 67 | "imageFiller": "cover", 68 | "badge": "Sed et sem augue", 69 | "title": "Mauris tincidunt non mauris ut", 70 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 71 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 72 | }, 73 | { 74 | "type": "default", 75 | "layout": "0,4,8,2", 76 | "color": "msx-glass", 77 | "wrapperColor": "msx-glass", 78 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/432/264", 79 | "imageFiller": "cover", 80 | "imageWidth": 3, 81 | "title": "Sed et sem augue", 82 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 83 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 84 | }, 85 | { 86 | "type": "default", 87 | "layout": "8,0,4,4", 88 | "color": "msx-glass", 89 | "wrapperColor": "msx-glass", 90 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/552/360", 91 | "imageFiller": "cover", 92 | "imageHeight": 2.5, 93 | "title": "Vestibulum ex lectus", 94 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 95 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 96 | }, 97 | { 98 | "type": "default", 99 | "layout": "8,4,4,2", 100 | "color": "msx-glass", 101 | "title": "Cras sapien tortor", 102 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 103 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 104 | } 105 | ] 106 | }, 107 | { 108 | "headline": "Mauris tincidunt non mauris ut", 109 | "items": [ 110 | { 111 | "type": "teaser", 112 | "layout": "4,0,8,4", 113 | "color": "msx-glass", 114 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/1128/552", 115 | "imageFiller": "cover", 116 | "badge": "Quisque dolor ipsum", 117 | "title": "Duis rutrum orci purus", 118 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 119 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 120 | }, 121 | { 122 | "type": "default", 123 | "layout": "0,0,4,4", 124 | "color": "msx-glass", 125 | "wrapperColor": "msx-glass", 126 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/552/360", 127 | "imageFiller": "cover", 128 | "imageHeight": 2.5, 129 | "title": "Aliquam nulla orci", 130 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 131 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 132 | }, 133 | { 134 | "type": "default", 135 | "layout": "0,4,4,2", 136 | "color": "msx-glass", 137 | "title": "Fusce posuere sapien turpis", 138 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 139 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 140 | }, 141 | { 142 | "type": "default", 143 | "layout": "4,4,8,2", 144 | "color": "msx-glass", 145 | "wrapperColor": "msx-glass", 146 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/432/264", 147 | "imageFiller": "cover", 148 | "imageWidth": 3, 149 | "title": "Fusce convallis sagittis tempus", 150 | "titleFooter": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 151 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 152 | } 153 | ] 154 | }, 155 | { 156 | "important": true, 157 | "headline": "Mauris tincidunt non mauris ut", 158 | "items": [ 159 | { 160 | "type": "default", 161 | "layout": "0,0,6,2", 162 | "color": "msx-glass", 163 | "image": "https://picsum.photos/seed/msx_24764bb8_footer0/840/264", 164 | "imageFiller": "cover", 165 | "title": "Mauris tincidunt non mauris ut", 166 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 167 | "action": "[invalidate:content|reload:content]" 168 | }, 169 | { 170 | "type": "default", 171 | "layout": "6,0,6,2", 172 | "color": "msx-glass", 173 | "image": "https://picsum.photos/seed/msx_24764bb8_footer1/840/264", 174 | "imageFiller": "cover", 175 | "title": "Duis rutrum orci purus", 176 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 177 | "action": "[invalidate:content|reload:content]" 178 | }, 179 | { 180 | "type": "default", 181 | "layout": "0,2,6,2", 182 | "color": "msx-glass", 183 | "image": "https://picsum.photos/seed/msx_24764bb8_footer2/840/264", 184 | "imageFiller": "cover", 185 | "title": "Vestibulum ex lectus", 186 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 187 | "action": "[invalidate:content|reload:content]" 188 | }, 189 | { 190 | "type": "default", 191 | "layout": "6,2,6,2", 192 | "color": "msx-glass", 193 | "image": "https://picsum.photos/seed/msx_24764bb8_footer3/840/264", 194 | "imageFiller": "cover", 195 | "title": "Mauris tincidunt non mauris ut", 196 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 197 | "action": "[invalidate:content|reload:content]" 198 | }, 199 | { 200 | "type": "default", 201 | "layout": "0,4,6,2", 202 | "color": "msx-glass", 203 | "image": "https://picsum.photos/seed/msx_24764bb8_footer4/840/264", 204 | "imageFiller": "cover", 205 | "title": "Cras sapien tortor", 206 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 207 | "action": "[invalidate:content|reload:content]" 208 | }, 209 | { 210 | "type": "default", 211 | "layout": "6,4,6,2", 212 | "color": "msx-glass", 213 | "image": "https://picsum.photos/seed/msx_24764bb8_footer5/840/264", 214 | "imageFiller": "cover", 215 | "title": "Mauris tincidunt non mauris ut", 216 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 217 | "action": "[invalidate:content|reload:content]" 218 | } 219 | ] 220 | } 221 | ] 222 | } -------------------------------------------------------------------------------- /data/extended/sublist3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Third Sublist", 4 | "preload": "next", 5 | "template": { 6 | "type": "default", 7 | "layout": "0,0,3,2", 8 | "color": "msx-glass", 9 | "imageFiller": "cover" 10 | }, 11 | "items": [ 12 | { 13 | "titleHeader": "{col:msx-white}First Item", 14 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/408/264", 15 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item0/1920/1080", 16 | "properties": { 17 | "image:extension": "| {col:msx-white}First Item" 18 | } 19 | }, 20 | { 21 | "titleHeader": "{col:msx-white}Second Item", 22 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/408/264", 23 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item1/1920/1080", 24 | "properties": { 25 | "image:extension": "| {col:msx-white}Second Item" 26 | } 27 | }, 28 | { 29 | "titleHeader": "{col:msx-white}Third Item", 30 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/408/264", 31 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item2/1920/1080", 32 | "properties": { 33 | "image:extension": "| {col:msx-white}Third Item" 34 | } 35 | }, 36 | { 37 | "titleHeader": "{col:msx-white}Fourth Item", 38 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/408/264", 39 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item3/1920/1080", 40 | "properties": { 41 | "image:extension": "| {col:msx-white}Fourth Item" 42 | } 43 | }, 44 | { 45 | "titleHeader": "{col:msx-white}Fifth Item", 46 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/408/264", 47 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item4/1920/1080", 48 | "properties": { 49 | "image:extension": "| {col:msx-white}Fifth Item" 50 | } 51 | }, 52 | { 53 | "titleHeader": "{col:msx-white}Sixth Item", 54 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/408/264", 55 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item5/1920/1080", 56 | "properties": { 57 | "image:extension": "| {col:msx-white}Sixth Item" 58 | } 59 | }, 60 | { 61 | "titleHeader": "{col:msx-white}Seventh Item", 62 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/408/264", 63 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item6/1920/1080", 64 | "properties": { 65 | "image:extension": "| {col:msx-white}Seventh Item" 66 | } 67 | }, 68 | { 69 | "titleHeader": "{col:msx-white}Eighth Item", 70 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/408/264", 71 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item7/1920/1080", 72 | "properties": { 73 | "image:extension": "| {col:msx-white}Eighth Item" 74 | } 75 | }, 76 | { 77 | "titleHeader": "{col:msx-white}Ninth Item", 78 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/408/264", 79 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item8/1920/1080", 80 | "properties": { 81 | "image:extension": "| {col:msx-white}Ninth Item" 82 | } 83 | }, 84 | { 85 | "titleHeader": "{col:msx-white}Tenth Item", 86 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/408/264", 87 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item9/1920/1080", 88 | "properties": { 89 | "image:extension": "| {col:msx-white}Tenth Item" 90 | } 91 | }, 92 | { 93 | "titleHeader": "{col:msx-white}Eleventh Item", 94 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/408/264", 95 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item10/1920/1080", 96 | "properties": { 97 | "image:extension": "| {col:msx-white}Eleventh Item" 98 | } 99 | }, 100 | { 101 | "titleHeader": "{col:msx-white}Twelfth Item", 102 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/408/264", 103 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item11/1920/1080", 104 | "properties": { 105 | "image:extension": "| {col:msx-white}Twelfth Item" 106 | } 107 | }, 108 | { 109 | "titleHeader": "{col:msx-white}13th Item", 110 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/408/264", 111 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item12/1920/1080", 112 | "properties": { 113 | "image:extension": "| {col:msx-white}13th Item" 114 | } 115 | }, 116 | { 117 | "titleHeader": "{col:msx-white}14th Item", 118 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/408/264", 119 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item13/1920/1080", 120 | "properties": { 121 | "image:extension": "| {col:msx-white}14th Item" 122 | } 123 | }, 124 | { 125 | "titleHeader": "{col:msx-white}15th Item", 126 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/408/264", 127 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item14/1920/1080", 128 | "properties": { 129 | "image:extension": "| {col:msx-white}15th Item" 130 | } 131 | }, 132 | { 133 | "titleHeader": "{col:msx-white}16th Item", 134 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/408/264", 135 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item15/1920/1080", 136 | "properties": { 137 | "image:extension": "| {col:msx-white}16th Item" 138 | } 139 | }, 140 | { 141 | "titleHeader": "{col:msx-white}17th Item", 142 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/408/264", 143 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item16/1920/1080", 144 | "properties": { 145 | "image:extension": "| {col:msx-white}17th Item" 146 | } 147 | }, 148 | { 149 | "titleHeader": "{col:msx-white}18th Item", 150 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/408/264", 151 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item17/1920/1080", 152 | "properties": { 153 | "image:extension": "| {col:msx-white}18th Item" 154 | } 155 | }, 156 | { 157 | "titleHeader": "{col:msx-white}19th Item", 158 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/408/264", 159 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item18/1920/1080", 160 | "properties": { 161 | "image:extension": "| {col:msx-white}19th Item" 162 | } 163 | }, 164 | { 165 | "titleHeader": "{col:msx-white}20th Item", 166 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/408/264", 167 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item19/1920/1080", 168 | "properties": { 169 | "image:extension": "| {col:msx-white}20th Item" 170 | } 171 | }, 172 | { 173 | "titleHeader": "{col:msx-white}21st Item", 174 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/408/264", 175 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item20/1920/1080", 176 | "properties": { 177 | "image:extension": "| {col:msx-white}21st Item" 178 | } 179 | }, 180 | { 181 | "titleHeader": "{col:msx-white}22nd Item", 182 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/408/264", 183 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item21/1920/1080", 184 | "properties": { 185 | "image:extension": "| {col:msx-white}22nd Item" 186 | } 187 | }, 188 | { 189 | "titleHeader": "{col:msx-white}23rd Item", 190 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/408/264", 191 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item22/1920/1080", 192 | "properties": { 193 | "image:extension": "| {col:msx-white}23rd Item" 194 | } 195 | }, 196 | { 197 | "titleHeader": "{col:msx-white}24th Item", 198 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/408/264", 199 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item23/1920/1080", 200 | "properties": { 201 | "image:extension": "| {col:msx-white}24th Item" 202 | } 203 | }, 204 | { 205 | "titleHeader": "{col:msx-white}25th Item", 206 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/408/264", 207 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item24/1920/1080", 208 | "properties": { 209 | "image:extension": "| {col:msx-white}25th Item" 210 | } 211 | }, 212 | { 213 | "titleHeader": "{col:msx-white}26th Item", 214 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/408/264", 215 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item25/1920/1080", 216 | "properties": { 217 | "image:extension": "| {col:msx-white}26th Item" 218 | } 219 | }, 220 | { 221 | "titleHeader": "{col:msx-white}27th Item", 222 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/408/264", 223 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item26/1920/1080", 224 | "properties": { 225 | "image:extension": "| {col:msx-white}27th Item" 226 | } 227 | }, 228 | { 229 | "titleHeader": "{col:msx-white}28th Item", 230 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/408/264", 231 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item27/1920/1080", 232 | "properties": { 233 | "image:extension": "| {col:msx-white}28th Item" 234 | } 235 | }, 236 | { 237 | "titleHeader": "{col:msx-white}29th Item", 238 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/408/264", 239 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item28/1920/1080", 240 | "properties": { 241 | "image:extension": "| {col:msx-white}29th Item" 242 | } 243 | }, 244 | { 245 | "titleHeader": "{col:msx-white}30th Item", 246 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/408/264", 247 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item29/1920/1080", 248 | "properties": { 249 | "image:extension": "| {col:msx-white}30th Item" 250 | } 251 | } 252 | ] 253 | } -------------------------------------------------------------------------------- /data/extended/sublist1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Second Sublist", 4 | "preload": "next", 5 | "template": { 6 | "type": "separate", 7 | "layout": "0,0,3,3", 8 | "color": "msx-glass", 9 | "imageFiller": "cover" 10 | }, 11 | "items": [ 12 | { 13 | "titleHeader": "{col:msx-white}First Item", 14 | "titleFooter": "Duis rutrum orci purus", 15 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/408/264", 16 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item0/1920/1080", 17 | "properties": { 18 | "image:extension": "| {col:msx-white}First Item" 19 | } 20 | }, 21 | { 22 | "titleHeader": "{col:msx-white}Second Item", 23 | "titleFooter": "Orci varius natoque penatibus et", 24 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/408/264", 25 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item1/1920/1080", 26 | "properties": { 27 | "image:extension": "| {col:msx-white}Second Item" 28 | } 29 | }, 30 | { 31 | "titleHeader": "{col:msx-white}Third Item", 32 | "titleFooter": "Sed et sem augue", 33 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/408/264", 34 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item2/1920/1080", 35 | "properties": { 36 | "image:extension": "| {col:msx-white}Third Item" 37 | } 38 | }, 39 | { 40 | "titleHeader": "{col:msx-white}Fourth Item", 41 | "titleFooter": "Mauris tincidunt non mauris ut", 42 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/408/264", 43 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item3/1920/1080", 44 | "properties": { 45 | "image:extension": "| {col:msx-white}Fourth Item" 46 | } 47 | }, 48 | { 49 | "titleHeader": "{col:msx-white}Fifth Item", 50 | "titleFooter": "Sed et sem augue", 51 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/408/264", 52 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item4/1920/1080", 53 | "properties": { 54 | "image:extension": "| {col:msx-white}Fifth Item" 55 | } 56 | }, 57 | { 58 | "titleHeader": "{col:msx-white}Sixth Item", 59 | "titleFooter": "Vestibulum ex lectus", 60 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/408/264", 61 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item5/1920/1080", 62 | "properties": { 63 | "image:extension": "| {col:msx-white}Sixth Item" 64 | } 65 | }, 66 | { 67 | "titleHeader": "{col:msx-white}Seventh Item", 68 | "titleFooter": "Cras sapien tortor", 69 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/408/264", 70 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item6/1920/1080", 71 | "properties": { 72 | "image:extension": "| {col:msx-white}Seventh Item" 73 | } 74 | }, 75 | { 76 | "titleHeader": "{col:msx-white}Eighth Item", 77 | "titleFooter": "Duis rutrum orci purus", 78 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/408/264", 79 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item7/1920/1080", 80 | "properties": { 81 | "image:extension": "| {col:msx-white}Eighth Item" 82 | } 83 | }, 84 | { 85 | "titleHeader": "{col:msx-white}Ninth Item", 86 | "titleFooter": "Aliquam nulla orci", 87 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/408/264", 88 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item8/1920/1080", 89 | "properties": { 90 | "image:extension": "| {col:msx-white}Ninth Item" 91 | } 92 | }, 93 | { 94 | "titleHeader": "{col:msx-white}Tenth Item", 95 | "titleFooter": "Fusce posuere sapien turpis", 96 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/408/264", 97 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item9/1920/1080", 98 | "properties": { 99 | "image:extension": "| {col:msx-white}Tenth Item" 100 | } 101 | }, 102 | { 103 | "titleHeader": "{col:msx-white}Eleventh Item", 104 | "titleFooter": "Fusce convallis sagittis tempus", 105 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/408/264", 106 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item10/1920/1080", 107 | "properties": { 108 | "image:extension": "| {col:msx-white}Eleventh Item" 109 | } 110 | }, 111 | { 112 | "titleHeader": "{col:msx-white}Twelfth Item", 113 | "titleFooter": "Aliquam nulla orci", 114 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/408/264", 115 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item11/1920/1080", 116 | "properties": { 117 | "image:extension": "| {col:msx-white}Twelfth Item" 118 | } 119 | }, 120 | { 121 | "titleHeader": "{col:msx-white}13th Item", 122 | "titleFooter": "Aliquam nulla orci", 123 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/408/264", 124 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item12/1920/1080", 125 | "properties": { 126 | "image:extension": "| {col:msx-white}13th Item" 127 | } 128 | }, 129 | { 130 | "titleHeader": "{col:msx-white}14th Item", 131 | "titleFooter": "Fusce posuere sapien turpis", 132 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/408/264", 133 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item13/1920/1080", 134 | "properties": { 135 | "image:extension": "| {col:msx-white}14th Item" 136 | } 137 | }, 138 | { 139 | "titleHeader": "{col:msx-white}15th Item", 140 | "titleFooter": "Quisque euismod urna a arcu", 141 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/408/264", 142 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item14/1920/1080", 143 | "properties": { 144 | "image:extension": "| {col:msx-white}15th Item" 145 | } 146 | }, 147 | { 148 | "titleHeader": "{col:msx-white}16th Item", 149 | "titleFooter": "Aliquam nulla orci", 150 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/408/264", 151 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item15/1920/1080", 152 | "properties": { 153 | "image:extension": "| {col:msx-white}16th Item" 154 | } 155 | }, 156 | { 157 | "titleHeader": "{col:msx-white}17th Item", 158 | "titleFooter": "Fusce posuere sapien turpis", 159 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/408/264", 160 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item16/1920/1080", 161 | "properties": { 162 | "image:extension": "| {col:msx-white}17th Item" 163 | } 164 | }, 165 | { 166 | "titleHeader": "{col:msx-white}18th Item", 167 | "titleFooter": "Cras sapien tortor", 168 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/408/264", 169 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item17/1920/1080", 170 | "properties": { 171 | "image:extension": "| {col:msx-white}18th Item" 172 | } 173 | }, 174 | { 175 | "titleHeader": "{col:msx-white}19th Item", 176 | "titleFooter": "Cras sapien tortor", 177 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/408/264", 178 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item18/1920/1080", 179 | "properties": { 180 | "image:extension": "| {col:msx-white}19th Item" 181 | } 182 | }, 183 | { 184 | "titleHeader": "{col:msx-white}20th Item", 185 | "titleFooter": "Duis rutrum orci purus", 186 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/408/264", 187 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item19/1920/1080", 188 | "properties": { 189 | "image:extension": "| {col:msx-white}20th Item" 190 | } 191 | }, 192 | { 193 | "titleHeader": "{col:msx-white}21st Item", 194 | "titleFooter": "Quisque dolor ipsum", 195 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/408/264", 196 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item20/1920/1080", 197 | "properties": { 198 | "image:extension": "| {col:msx-white}21st Item" 199 | } 200 | }, 201 | { 202 | "titleHeader": "{col:msx-white}22nd Item", 203 | "titleFooter": "Sed et sem augue", 204 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/408/264", 205 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item21/1920/1080", 206 | "properties": { 207 | "image:extension": "| {col:msx-white}22nd Item" 208 | } 209 | }, 210 | { 211 | "titleHeader": "{col:msx-white}23rd Item", 212 | "titleFooter": "Orci varius natoque penatibus et", 213 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/408/264", 214 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item22/1920/1080", 215 | "properties": { 216 | "image:extension": "| {col:msx-white}23rd Item" 217 | } 218 | }, 219 | { 220 | "titleHeader": "{col:msx-white}24th Item", 221 | "titleFooter": "Cras sapien tortor", 222 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/408/264", 223 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item23/1920/1080", 224 | "properties": { 225 | "image:extension": "| {col:msx-white}24th Item" 226 | } 227 | }, 228 | { 229 | "titleHeader": "{col:msx-white}25th Item", 230 | "titleFooter": "Nullam", 231 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/408/264", 232 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item24/1920/1080", 233 | "properties": { 234 | "image:extension": "| {col:msx-white}25th Item" 235 | } 236 | }, 237 | { 238 | "titleHeader": "{col:msx-white}26th Item", 239 | "titleFooter": "Aliquam nulla orci", 240 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/408/264", 241 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item25/1920/1080", 242 | "properties": { 243 | "image:extension": "| {col:msx-white}26th Item" 244 | } 245 | }, 246 | { 247 | "titleHeader": "{col:msx-white}27th Item", 248 | "titleFooter": "Duis rutrum orci purus", 249 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/408/264", 250 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item26/1920/1080", 251 | "properties": { 252 | "image:extension": "| {col:msx-white}27th Item" 253 | } 254 | }, 255 | { 256 | "titleHeader": "{col:msx-white}28th Item", 257 | "titleFooter": "Quisque euismod urna a arcu", 258 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/408/264", 259 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item27/1920/1080", 260 | "properties": { 261 | "image:extension": "| {col:msx-white}28th Item" 262 | } 263 | }, 264 | { 265 | "titleHeader": "{col:msx-white}29th Item", 266 | "titleFooter": "Fusce posuere sapien turpis", 267 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/408/264", 268 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item28/1920/1080", 269 | "properties": { 270 | "image:extension": "| {col:msx-white}29th Item" 271 | } 272 | }, 273 | { 274 | "titleHeader": "{col:msx-white}30th Item", 275 | "titleFooter": "Quisque dolor ipsum", 276 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/408/264", 277 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item29/1920/1080", 278 | "properties": { 279 | "image:extension": "| {col:msx-white}30th Item" 280 | } 281 | } 282 | ] 283 | } -------------------------------------------------------------------------------- /data/extended/sublist0.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "First Sublist", 4 | "preload": "next", 5 | "template": { 6 | "type": "default", 7 | "layout": "0,0,3,3", 8 | "wrapperColor": "msx-glass", 9 | "imageHeight": 1.75, 10 | "color": "msx-glass", 11 | "imageFiller": "cover" 12 | }, 13 | "items": [ 14 | { 15 | "titleHeader": "{col:msx-white}First Item", 16 | "titleFooter": "Duis rutrum orci purus", 17 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/408/252", 18 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item0/1920/1080", 19 | "properties": { 20 | "image:extension": "| {col:msx-white}First Item" 21 | } 22 | }, 23 | { 24 | "titleHeader": "{col:msx-white}Second Item", 25 | "titleFooter": "Orci varius natoque penatibus et", 26 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/408/252", 27 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item1/1920/1080", 28 | "properties": { 29 | "image:extension": "| {col:msx-white}Second Item" 30 | } 31 | }, 32 | { 33 | "titleHeader": "{col:msx-white}Third Item", 34 | "titleFooter": "Sed et sem augue", 35 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/408/252", 36 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item2/1920/1080", 37 | "properties": { 38 | "image:extension": "| {col:msx-white}Third Item" 39 | } 40 | }, 41 | { 42 | "titleHeader": "{col:msx-white}Fourth Item", 43 | "titleFooter": "Mauris tincidunt non mauris ut", 44 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/408/252", 45 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item3/1920/1080", 46 | "properties": { 47 | "image:extension": "| {col:msx-white}Fourth Item" 48 | } 49 | }, 50 | { 51 | "titleHeader": "{col:msx-white}Fifth Item", 52 | "titleFooter": "Sed et sem augue", 53 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/408/252", 54 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item4/1920/1080", 55 | "properties": { 56 | "image:extension": "| {col:msx-white}Fifth Item" 57 | } 58 | }, 59 | { 60 | "titleHeader": "{col:msx-white}Sixth Item", 61 | "titleFooter": "Vestibulum ex lectus", 62 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/408/252", 63 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item5/1920/1080", 64 | "properties": { 65 | "image:extension": "| {col:msx-white}Sixth Item" 66 | } 67 | }, 68 | { 69 | "titleHeader": "{col:msx-white}Seventh Item", 70 | "titleFooter": "Cras sapien tortor", 71 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/408/252", 72 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item6/1920/1080", 73 | "properties": { 74 | "image:extension": "| {col:msx-white}Seventh Item" 75 | } 76 | }, 77 | { 78 | "titleHeader": "{col:msx-white}Eighth Item", 79 | "titleFooter": "Duis rutrum orci purus", 80 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/408/252", 81 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item7/1920/1080", 82 | "properties": { 83 | "image:extension": "| {col:msx-white}Eighth Item" 84 | } 85 | }, 86 | { 87 | "titleHeader": "{col:msx-white}Ninth Item", 88 | "titleFooter": "Aliquam nulla orci", 89 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/408/252", 90 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item8/1920/1080", 91 | "properties": { 92 | "image:extension": "| {col:msx-white}Ninth Item" 93 | } 94 | }, 95 | { 96 | "titleHeader": "{col:msx-white}Tenth Item", 97 | "titleFooter": "Fusce posuere sapien turpis", 98 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/408/252", 99 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item9/1920/1080", 100 | "properties": { 101 | "image:extension": "| {col:msx-white}Tenth Item" 102 | } 103 | }, 104 | { 105 | "titleHeader": "{col:msx-white}Eleventh Item", 106 | "titleFooter": "Fusce convallis sagittis tempus", 107 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/408/252", 108 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item10/1920/1080", 109 | "properties": { 110 | "image:extension": "| {col:msx-white}Eleventh Item" 111 | } 112 | }, 113 | { 114 | "titleHeader": "{col:msx-white}Twelfth Item", 115 | "titleFooter": "Aliquam nulla orci", 116 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/408/252", 117 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item11/1920/1080", 118 | "properties": { 119 | "image:extension": "| {col:msx-white}Twelfth Item" 120 | } 121 | }, 122 | { 123 | "titleHeader": "{col:msx-white}13th Item", 124 | "titleFooter": "Aliquam nulla orci", 125 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/408/252", 126 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item12/1920/1080", 127 | "properties": { 128 | "image:extension": "| {col:msx-white}13th Item" 129 | } 130 | }, 131 | { 132 | "titleHeader": "{col:msx-white}14th Item", 133 | "titleFooter": "Fusce posuere sapien turpis", 134 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/408/252", 135 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item13/1920/1080", 136 | "properties": { 137 | "image:extension": "| {col:msx-white}14th Item" 138 | } 139 | }, 140 | { 141 | "titleHeader": "{col:msx-white}15th Item", 142 | "titleFooter": "Quisque euismod urna a arcu", 143 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/408/252", 144 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item14/1920/1080", 145 | "properties": { 146 | "image:extension": "| {col:msx-white}15th Item" 147 | } 148 | }, 149 | { 150 | "titleHeader": "{col:msx-white}16th Item", 151 | "titleFooter": "Aliquam nulla orci", 152 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/408/252", 153 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item15/1920/1080", 154 | "properties": { 155 | "image:extension": "| {col:msx-white}16th Item" 156 | } 157 | }, 158 | { 159 | "titleHeader": "{col:msx-white}17th Item", 160 | "titleFooter": "Fusce posuere sapien turpis", 161 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/408/252", 162 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item16/1920/1080", 163 | "properties": { 164 | "image:extension": "| {col:msx-white}17th Item" 165 | } 166 | }, 167 | { 168 | "titleHeader": "{col:msx-white}18th Item", 169 | "titleFooter": "Cras sapien tortor", 170 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/408/252", 171 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item17/1920/1080", 172 | "properties": { 173 | "image:extension": "| {col:msx-white}18th Item" 174 | } 175 | }, 176 | { 177 | "titleHeader": "{col:msx-white}19th Item", 178 | "titleFooter": "Cras sapien tortor", 179 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/408/252", 180 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item18/1920/1080", 181 | "properties": { 182 | "image:extension": "| {col:msx-white}19th Item" 183 | } 184 | }, 185 | { 186 | "titleHeader": "{col:msx-white}20th Item", 187 | "titleFooter": "Duis rutrum orci purus", 188 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/408/252", 189 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item19/1920/1080", 190 | "properties": { 191 | "image:extension": "| {col:msx-white}20th Item" 192 | } 193 | }, 194 | { 195 | "titleHeader": "{col:msx-white}21st Item", 196 | "titleFooter": "Quisque dolor ipsum", 197 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/408/252", 198 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item20/1920/1080", 199 | "properties": { 200 | "image:extension": "| {col:msx-white}21st Item" 201 | } 202 | }, 203 | { 204 | "titleHeader": "{col:msx-white}22nd Item", 205 | "titleFooter": "Sed et sem augue", 206 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/408/252", 207 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item21/1920/1080", 208 | "properties": { 209 | "image:extension": "| {col:msx-white}22nd Item" 210 | } 211 | }, 212 | { 213 | "titleHeader": "{col:msx-white}23rd Item", 214 | "titleFooter": "Orci varius natoque penatibus et", 215 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/408/252", 216 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item22/1920/1080", 217 | "properties": { 218 | "image:extension": "| {col:msx-white}23rd Item" 219 | } 220 | }, 221 | { 222 | "titleHeader": "{col:msx-white}24th Item", 223 | "titleFooter": "Cras sapien tortor", 224 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/408/252", 225 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item23/1920/1080", 226 | "properties": { 227 | "image:extension": "| {col:msx-white}24th Item" 228 | } 229 | }, 230 | { 231 | "titleHeader": "{col:msx-white}25th Item", 232 | "titleFooter": "Nullam", 233 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/408/252", 234 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item24/1920/1080", 235 | "properties": { 236 | "image:extension": "| {col:msx-white}25th Item" 237 | } 238 | }, 239 | { 240 | "titleHeader": "{col:msx-white}26th Item", 241 | "titleFooter": "Aliquam nulla orci", 242 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/408/252", 243 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item25/1920/1080", 244 | "properties": { 245 | "image:extension": "| {col:msx-white}26th Item" 246 | } 247 | }, 248 | { 249 | "titleHeader": "{col:msx-white}27th Item", 250 | "titleFooter": "Duis rutrum orci purus", 251 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/408/252", 252 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item26/1920/1080", 253 | "properties": { 254 | "image:extension": "| {col:msx-white}27th Item" 255 | } 256 | }, 257 | { 258 | "titleHeader": "{col:msx-white}28th Item", 259 | "titleFooter": "Quisque euismod urna a arcu", 260 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/408/252", 261 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item27/1920/1080", 262 | "properties": { 263 | "image:extension": "| {col:msx-white}28th Item" 264 | } 265 | }, 266 | { 267 | "titleHeader": "{col:msx-white}29th Item", 268 | "titleFooter": "Fusce posuere sapien turpis", 269 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/408/252", 270 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item28/1920/1080", 271 | "properties": { 272 | "image:extension": "| {col:msx-white}29th Item" 273 | } 274 | }, 275 | { 276 | "titleHeader": "{col:msx-white}30th Item", 277 | "titleFooter": "Quisque dolor ipsum", 278 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/408/252", 279 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item29/1920/1080", 280 | "properties": { 281 | "image:extension": "| {col:msx-white}30th Item" 282 | } 283 | } 284 | ] 285 | } -------------------------------------------------------------------------------- /data/extended/pages0.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "pages", 3 | "headline": "First Pages", 4 | "preload": "next", 5 | "underlay": { 6 | "action": "[update:content:underlay:image|update:content:underlay:text]", 7 | "data": { 8 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 9 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/1920/1080" 10 | }, 11 | "items": [ 12 | { 13 | "id": "image", 14 | "type": "space", 15 | "round": false, 16 | "layout": "0,0,12,6", 17 | "offset": "-0.75,-1,1.5,1.67", 18 | "color": "msx-glass", 19 | "image": "none", 20 | "imageFiller": "cover", 21 | "imageOverlay": 4 22 | }, 23 | { 24 | "type": "space", 25 | "round": false, 26 | "layout": "0,5,12,1", 27 | "offset": "-1.25,-0.33,2,1", 28 | "color": "msx-black-soft" 29 | }, 30 | { 31 | "id": "text", 32 | "type": "space", 33 | "layout": "0,4,12,1", 34 | "offset": "0,0.25,0,0", 35 | "headline": "", 36 | "text": "" 37 | } 38 | ] 39 | }, 40 | "template": { 41 | "type": "default", 42 | "layout": "0,0,2,1", 43 | "area": "0,5,12,1", 44 | "color": "msx-glass", 45 | "imageFiller": "cover", 46 | "enumerate": false 47 | }, 48 | "items": [ 49 | { 50 | "selection": { 51 | "important": true, 52 | "headline": "Duis rutrum orci purus", 53 | "action": "[update:content:underlay:image|update:content:underlay:text]", 54 | "data": { 55 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 56 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/1920/1080" 57 | } 58 | }, 59 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/264/120", 60 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 61 | }, 62 | { 63 | "selection": { 64 | "important": true, 65 | "headline": "Orci varius natoque penatibus et", 66 | "action": "[update:content:underlay:image|update:content:underlay:text]", 67 | "data": { 68 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 69 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/1920/1080" 70 | } 71 | }, 72 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/264/120", 73 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 74 | }, 75 | { 76 | "selection": { 77 | "important": true, 78 | "headline": "Sed et sem augue", 79 | "action": "[update:content:underlay:image|update:content:underlay:text]", 80 | "data": { 81 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 82 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/1920/1080" 83 | } 84 | }, 85 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/264/120", 86 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 87 | }, 88 | { 89 | "selection": { 90 | "important": true, 91 | "headline": "Mauris tincidunt non mauris ut", 92 | "action": "[update:content:underlay:image|update:content:underlay:text]", 93 | "data": { 94 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 95 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/1920/1080" 96 | } 97 | }, 98 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/264/120", 99 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 100 | }, 101 | { 102 | "selection": { 103 | "important": true, 104 | "headline": "Sed et sem augue", 105 | "action": "[update:content:underlay:image|update:content:underlay:text]", 106 | "data": { 107 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 108 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/1920/1080" 109 | } 110 | }, 111 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/264/120", 112 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 113 | }, 114 | { 115 | "selection": { 116 | "important": true, 117 | "headline": "Vestibulum ex lectus", 118 | "action": "[update:content:underlay:image|update:content:underlay:text]", 119 | "data": { 120 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 121 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/1920/1080" 122 | } 123 | }, 124 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/264/120", 125 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 126 | }, 127 | { 128 | "selection": { 129 | "important": true, 130 | "headline": "Cras sapien tortor", 131 | "action": "[update:content:underlay:image|update:content:underlay:text]", 132 | "data": { 133 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 134 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/1920/1080" 135 | } 136 | }, 137 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/264/120", 138 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 139 | }, 140 | { 141 | "selection": { 142 | "important": true, 143 | "headline": "Duis rutrum orci purus", 144 | "action": "[update:content:underlay:image|update:content:underlay:text]", 145 | "data": { 146 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 147 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/1920/1080" 148 | } 149 | }, 150 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/264/120", 151 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 152 | }, 153 | { 154 | "selection": { 155 | "important": true, 156 | "headline": "Aliquam nulla orci", 157 | "action": "[update:content:underlay:image|update:content:underlay:text]", 158 | "data": { 159 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 160 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/1920/1080" 161 | } 162 | }, 163 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/264/120", 164 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 165 | }, 166 | { 167 | "selection": { 168 | "important": true, 169 | "headline": "Fusce posuere sapien turpis", 170 | "action": "[update:content:underlay:image|update:content:underlay:text]", 171 | "data": { 172 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 173 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/1920/1080" 174 | } 175 | }, 176 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/264/120", 177 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 178 | }, 179 | { 180 | "selection": { 181 | "important": true, 182 | "headline": "Fusce convallis sagittis tempus", 183 | "action": "[update:content:underlay:image|update:content:underlay:text]", 184 | "data": { 185 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 186 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/1920/1080" 187 | } 188 | }, 189 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/264/120", 190 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 191 | }, 192 | { 193 | "selection": { 194 | "important": true, 195 | "headline": "Aliquam nulla orci", 196 | "action": "[update:content:underlay:image|update:content:underlay:text]", 197 | "data": { 198 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 199 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/1920/1080" 200 | } 201 | }, 202 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/264/120", 203 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 204 | }, 205 | { 206 | "selection": { 207 | "important": true, 208 | "headline": "Aliquam nulla orci", 209 | "action": "[update:content:underlay:image|update:content:underlay:text]", 210 | "data": { 211 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 212 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/1920/1080" 213 | } 214 | }, 215 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/264/120", 216 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 217 | }, 218 | { 219 | "selection": { 220 | "important": true, 221 | "headline": "Fusce posuere sapien turpis", 222 | "action": "[update:content:underlay:image|update:content:underlay:text]", 223 | "data": { 224 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 225 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/1920/1080" 226 | } 227 | }, 228 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/264/120", 229 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 230 | }, 231 | { 232 | "selection": { 233 | "important": true, 234 | "headline": "Quisque euismod urna a arcu", 235 | "action": "[update:content:underlay:image|update:content:underlay:text]", 236 | "data": { 237 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 238 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/1920/1080" 239 | } 240 | }, 241 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/264/120", 242 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 243 | }, 244 | { 245 | "selection": { 246 | "important": true, 247 | "headline": "Aliquam nulla orci", 248 | "action": "[update:content:underlay:image|update:content:underlay:text]", 249 | "data": { 250 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 251 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/1920/1080" 252 | } 253 | }, 254 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/264/120", 255 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 256 | }, 257 | { 258 | "selection": { 259 | "important": true, 260 | "headline": "Fusce posuere sapien turpis", 261 | "action": "[update:content:underlay:image|update:content:underlay:text]", 262 | "data": { 263 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 264 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/1920/1080" 265 | } 266 | }, 267 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/264/120", 268 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 269 | }, 270 | { 271 | "selection": { 272 | "important": true, 273 | "headline": "Cras sapien tortor", 274 | "action": "[update:content:underlay:image|update:content:underlay:text]", 275 | "data": { 276 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 277 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/1920/1080" 278 | } 279 | }, 280 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/264/120", 281 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 282 | }, 283 | { 284 | "selection": { 285 | "important": true, 286 | "headline": "Cras sapien tortor", 287 | "action": "[update:content:underlay:image|update:content:underlay:text]", 288 | "data": { 289 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 290 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/1920/1080" 291 | } 292 | }, 293 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/264/120", 294 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 295 | }, 296 | { 297 | "selection": { 298 | "important": true, 299 | "headline": "Duis rutrum orci purus", 300 | "action": "[update:content:underlay:image|update:content:underlay:text]", 301 | "data": { 302 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 303 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/1920/1080" 304 | } 305 | }, 306 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/264/120", 307 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 308 | }, 309 | { 310 | "selection": { 311 | "important": true, 312 | "headline": "Quisque dolor ipsum", 313 | "action": "[update:content:underlay:image|update:content:underlay:text]", 314 | "data": { 315 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 316 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/1920/1080" 317 | } 318 | }, 319 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/264/120", 320 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 321 | }, 322 | { 323 | "selection": { 324 | "important": true, 325 | "headline": "Sed et sem augue", 326 | "action": "[update:content:underlay:image|update:content:underlay:text]", 327 | "data": { 328 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 329 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/1920/1080" 330 | } 331 | }, 332 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/264/120", 333 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 334 | }, 335 | { 336 | "selection": { 337 | "important": true, 338 | "headline": "Orci varius natoque penatibus et", 339 | "action": "[update:content:underlay:image|update:content:underlay:text]", 340 | "data": { 341 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 342 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/1920/1080" 343 | } 344 | }, 345 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/264/120", 346 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 347 | }, 348 | { 349 | "selection": { 350 | "important": true, 351 | "headline": "Cras sapien tortor", 352 | "action": "[update:content:underlay:image|update:content:underlay:text]", 353 | "data": { 354 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 355 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/1920/1080" 356 | } 357 | }, 358 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/264/120", 359 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 360 | }, 361 | { 362 | "selection": { 363 | "important": true, 364 | "headline": "Nullam", 365 | "action": "[update:content:underlay:image|update:content:underlay:text]", 366 | "data": { 367 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:First List}", 368 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/1920/1080" 369 | } 370 | }, 371 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/264/120", 372 | "action": "content:https://benzac-de.github.io/msx/data/extended/list0.json" 373 | }, 374 | { 375 | "selection": { 376 | "important": true, 377 | "headline": "Aliquam nulla orci", 378 | "action": "[update:content:underlay:image|update:content:underlay:text]", 379 | "data": { 380 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Second List}", 381 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/1920/1080" 382 | } 383 | }, 384 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/264/120", 385 | "action": "content:https://benzac-de.github.io/msx/data/extended/list1.json" 386 | }, 387 | { 388 | "selection": { 389 | "important": true, 390 | "headline": "Duis rutrum orci purus", 391 | "action": "[update:content:underlay:image|update:content:underlay:text]", 392 | "data": { 393 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Third List}", 394 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/1920/1080" 395 | } 396 | }, 397 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/264/120", 398 | "action": "content:https://benzac-de.github.io/msx/data/extended/list2.json" 399 | }, 400 | { 401 | "selection": { 402 | "important": true, 403 | "headline": "Quisque euismod urna a arcu", 404 | "action": "[update:content:underlay:image|update:content:underlay:text]", 405 | "data": { 406 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fourth List}", 407 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/1920/1080" 408 | } 409 | }, 410 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/264/120", 411 | "action": "content:https://benzac-de.github.io/msx/data/extended/list3_section0.json" 412 | }, 413 | { 414 | "selection": { 415 | "important": true, 416 | "headline": "Fusce posuere sapien turpis", 417 | "action": "[update:content:underlay:image|update:content:underlay:text]", 418 | "data": { 419 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Fifth List}", 420 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/1920/1080" 421 | } 422 | }, 423 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/264/120", 424 | "action": "content:https://benzac-de.github.io/msx/data/extended/list4.json" 425 | }, 426 | { 427 | "selection": { 428 | "important": true, 429 | "headline": "Quisque dolor ipsum", 430 | "action": "[update:content:underlay:image|update:content:underlay:text]", 431 | "data": { 432 | "text": "Press {txt:msx-white:OK} to open {txt:msx-white:Sixth List}", 433 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/1920/1080" 434 | } 435 | }, 436 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/264/120", 437 | "action": "content:https://benzac-de.github.io/msx/data/extended/list5.json" 438 | } 439 | ] 440 | } -------------------------------------------------------------------------------- /data/extended/list3_section0.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Fourth List", 4 | "preload": "next", 5 | "flag": "tabs", 6 | "pages": [ 7 | { 8 | "important": false, 9 | "offset": "0,0,0,0.25", 10 | "items": [ 11 | { 12 | "type": "space", 13 | "round": false, 14 | "layout": "0,0,12,3", 15 | "offset": "-1.25,-1,2,1", 16 | "color": "msx-glass", 17 | "image": "https://picsum.photos/seed/msx_24764bb8_bg/1992/552", 18 | "imageFiller": "cover", 19 | "imageOverlay": 4 20 | }, 21 | { 22 | "type": "space", 23 | "round": false, 24 | "layout": "0,1,12,1", 25 | "offset": "-1.25,1,2,0", 26 | "color": "msx-black-soft" 27 | }, 28 | { 29 | "type": "default", 30 | "layout": "0,2,3,1", 31 | "color": "msx-white-soft", 32 | "label": "{col:msx-black}First Section", 33 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section0.json]" 34 | }, 35 | { 36 | "type": "default", 37 | "layout": "3,2,3,1", 38 | "color": "transparent", 39 | "label": "Second Section", 40 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section1.json]" 41 | }, 42 | { 43 | "type": "default", 44 | "layout": "6,2,3,1", 45 | "color": "transparent", 46 | "label": "Third Section", 47 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section2.json]" 48 | }, 49 | { 50 | "type": "default", 51 | "layout": "9,2,3,1", 52 | "color": "transparent", 53 | "label": "Fourth Section", 54 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section3.json]" 55 | } 56 | ] 57 | }, 58 | { 59 | "offset": "0,0,0,1", 60 | "headline": "First Section", 61 | "items": [ 62 | { 63 | "type": "default", 64 | "wrapperColor": "msx-glass", 65 | "imageWidth": 2.5, 66 | "layout": "0,0,6,1", 67 | "offset": "0,0,0,0.5", 68 | "enumerate": true, 69 | "color": "msx-glass", 70 | "titleHeader": "{col:msx-white}First Item", 71 | "titleFooter": "Duis rutrum orci purus", 72 | "imageFiller": "cover", 73 | "image": "https://picsum.photos/seed/msx_24764bb8_item0/360/192", 74 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item0/1920/1080", 75 | "properties": { 76 | "image:extension": "| {col:msx-white}First Item" 77 | } 78 | }, 79 | { 80 | "type": "default", 81 | "wrapperColor": "msx-glass", 82 | "imageWidth": 2.5, 83 | "layout": "6,0,6,1", 84 | "offset": "0,0,0,0.5", 85 | "enumerate": true, 86 | "color": "msx-glass", 87 | "titleHeader": "{col:msx-white}Second Item", 88 | "titleFooter": "Orci varius natoque penatibus et", 89 | "imageFiller": "cover", 90 | "image": "https://picsum.photos/seed/msx_24764bb8_item1/360/192", 91 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item1/1920/1080", 92 | "properties": { 93 | "image:extension": "| {col:msx-white}Second Item" 94 | } 95 | }, 96 | { 97 | "type": "default", 98 | "wrapperColor": "msx-glass", 99 | "imageWidth": 2.5, 100 | "layout": "0,2,6,1", 101 | "offset": "0,-0.5,0,0.5", 102 | "enumerate": true, 103 | "color": "msx-glass", 104 | "titleHeader": "{col:msx-white}Third Item", 105 | "titleFooter": "Sed et sem augue", 106 | "imageFiller": "cover", 107 | "image": "https://picsum.photos/seed/msx_24764bb8_item2/360/192", 108 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item2/1920/1080", 109 | "properties": { 110 | "image:extension": "| {col:msx-white}Third Item" 111 | } 112 | }, 113 | { 114 | "type": "default", 115 | "wrapperColor": "msx-glass", 116 | "imageWidth": 2.5, 117 | "layout": "6,2,6,1", 118 | "offset": "0,-0.5,0,0.5", 119 | "enumerate": true, 120 | "color": "msx-glass", 121 | "titleHeader": "{col:msx-white}Fourth Item", 122 | "titleFooter": "Mauris tincidunt non mauris ut", 123 | "imageFiller": "cover", 124 | "image": "https://picsum.photos/seed/msx_24764bb8_item3/360/192", 125 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item3/1920/1080", 126 | "properties": { 127 | "image:extension": "| {col:msx-white}Fourth Item" 128 | } 129 | }, 130 | { 131 | "type": "default", 132 | "wrapperColor": "msx-glass", 133 | "imageWidth": 2.5, 134 | "layout": "0,3,6,1", 135 | "offset": "0,0,0,0.5", 136 | "enumerate": true, 137 | "color": "msx-glass", 138 | "titleHeader": "{col:msx-white}Fifth Item", 139 | "titleFooter": "Sed et sem augue", 140 | "imageFiller": "cover", 141 | "image": "https://picsum.photos/seed/msx_24764bb8_item4/360/192", 142 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item4/1920/1080", 143 | "properties": { 144 | "image:extension": "| {col:msx-white}Fifth Item" 145 | } 146 | }, 147 | { 148 | "type": "default", 149 | "wrapperColor": "msx-glass", 150 | "imageWidth": 2.5, 151 | "layout": "6,3,6,1", 152 | "offset": "0,0,0,0.5", 153 | "enumerate": true, 154 | "color": "msx-glass", 155 | "titleHeader": "{col:msx-white}Sixth Item", 156 | "titleFooter": "Vestibulum ex lectus", 157 | "imageFiller": "cover", 158 | "image": "https://picsum.photos/seed/msx_24764bb8_item5/360/192", 159 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item5/1920/1080", 160 | "properties": { 161 | "image:extension": "| {col:msx-white}Sixth Item" 162 | } 163 | }, 164 | { 165 | "type": "default", 166 | "wrapperColor": "msx-glass", 167 | "imageWidth": 2.5, 168 | "layout": "0,5,6,1", 169 | "offset": "0,-0.5,0,0.5", 170 | "enumerate": true, 171 | "color": "msx-glass", 172 | "titleHeader": "{col:msx-white}Seventh Item", 173 | "titleFooter": "Cras sapien tortor", 174 | "imageFiller": "cover", 175 | "image": "https://picsum.photos/seed/msx_24764bb8_item6/360/192", 176 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item6/1920/1080", 177 | "properties": { 178 | "image:extension": "| {col:msx-white}Seventh Item" 179 | } 180 | }, 181 | { 182 | "type": "default", 183 | "wrapperColor": "msx-glass", 184 | "imageWidth": 2.5, 185 | "layout": "6,5,6,1", 186 | "offset": "0,-0.5,0,0.5", 187 | "enumerate": true, 188 | "color": "msx-glass", 189 | "titleHeader": "{col:msx-white}Eighth Item", 190 | "titleFooter": "Duis rutrum orci purus", 191 | "imageFiller": "cover", 192 | "image": "https://picsum.photos/seed/msx_24764bb8_item7/360/192", 193 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item7/1920/1080", 194 | "properties": { 195 | "image:extension": "| {col:msx-white}Eighth Item" 196 | } 197 | } 198 | ] 199 | }, 200 | { 201 | "offset": "0,0,0,1", 202 | "headline": "First Section", 203 | "items": [ 204 | { 205 | "type": "default", 206 | "wrapperColor": "msx-glass", 207 | "imageWidth": 2.5, 208 | "layout": "0,0,6,1", 209 | "offset": "0,0,0,0.5", 210 | "enumerate": true, 211 | "color": "msx-glass", 212 | "titleHeader": "{col:msx-white}Ninth Item", 213 | "titleFooter": "Aliquam nulla orci", 214 | "imageFiller": "cover", 215 | "image": "https://picsum.photos/seed/msx_24764bb8_item8/360/192", 216 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item8/1920/1080", 217 | "properties": { 218 | "image:extension": "| {col:msx-white}Ninth Item" 219 | } 220 | }, 221 | { 222 | "type": "default", 223 | "wrapperColor": "msx-glass", 224 | "imageWidth": 2.5, 225 | "layout": "6,0,6,1", 226 | "offset": "0,0,0,0.5", 227 | "enumerate": true, 228 | "color": "msx-glass", 229 | "titleHeader": "{col:msx-white}Tenth Item", 230 | "titleFooter": "Fusce posuere sapien turpis", 231 | "imageFiller": "cover", 232 | "image": "https://picsum.photos/seed/msx_24764bb8_item9/360/192", 233 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item9/1920/1080", 234 | "properties": { 235 | "image:extension": "| {col:msx-white}Tenth Item" 236 | } 237 | }, 238 | { 239 | "type": "default", 240 | "wrapperColor": "msx-glass", 241 | "imageWidth": 2.5, 242 | "layout": "0,2,6,1", 243 | "offset": "0,-0.5,0,0.5", 244 | "enumerate": true, 245 | "color": "msx-glass", 246 | "titleHeader": "{col:msx-white}Eleventh Item", 247 | "titleFooter": "Fusce convallis sagittis tempus", 248 | "imageFiller": "cover", 249 | "image": "https://picsum.photos/seed/msx_24764bb8_item10/360/192", 250 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item10/1920/1080", 251 | "properties": { 252 | "image:extension": "| {col:msx-white}Eleventh Item" 253 | } 254 | }, 255 | { 256 | "type": "default", 257 | "wrapperColor": "msx-glass", 258 | "imageWidth": 2.5, 259 | "layout": "6,2,6,1", 260 | "offset": "0,-0.5,0,0.5", 261 | "enumerate": true, 262 | "color": "msx-glass", 263 | "titleHeader": "{col:msx-white}Twelfth Item", 264 | "titleFooter": "Aliquam nulla orci", 265 | "imageFiller": "cover", 266 | "image": "https://picsum.photos/seed/msx_24764bb8_item11/360/192", 267 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item11/1920/1080", 268 | "properties": { 269 | "image:extension": "| {col:msx-white}Twelfth Item" 270 | } 271 | }, 272 | { 273 | "type": "default", 274 | "wrapperColor": "msx-glass", 275 | "imageWidth": 2.5, 276 | "layout": "0,3,6,1", 277 | "offset": "0,0,0,0.5", 278 | "enumerate": true, 279 | "color": "msx-glass", 280 | "titleHeader": "{col:msx-white}13th Item", 281 | "titleFooter": "Aliquam nulla orci", 282 | "imageFiller": "cover", 283 | "image": "https://picsum.photos/seed/msx_24764bb8_item12/360/192", 284 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item12/1920/1080", 285 | "properties": { 286 | "image:extension": "| {col:msx-white}13th Item" 287 | } 288 | }, 289 | { 290 | "type": "default", 291 | "wrapperColor": "msx-glass", 292 | "imageWidth": 2.5, 293 | "layout": "6,3,6,1", 294 | "offset": "0,0,0,0.5", 295 | "enumerate": true, 296 | "color": "msx-glass", 297 | "titleHeader": "{col:msx-white}14th Item", 298 | "titleFooter": "Fusce posuere sapien turpis", 299 | "imageFiller": "cover", 300 | "image": "https://picsum.photos/seed/msx_24764bb8_item13/360/192", 301 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item13/1920/1080", 302 | "properties": { 303 | "image:extension": "| {col:msx-white}14th Item" 304 | } 305 | }, 306 | { 307 | "type": "default", 308 | "wrapperColor": "msx-glass", 309 | "imageWidth": 2.5, 310 | "layout": "0,5,6,1", 311 | "offset": "0,-0.5,0,0.5", 312 | "enumerate": true, 313 | "color": "msx-glass", 314 | "titleHeader": "{col:msx-white}15th Item", 315 | "titleFooter": "Quisque euismod urna a arcu", 316 | "imageFiller": "cover", 317 | "image": "https://picsum.photos/seed/msx_24764bb8_item14/360/192", 318 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item14/1920/1080", 319 | "properties": { 320 | "image:extension": "| {col:msx-white}15th Item" 321 | } 322 | }, 323 | { 324 | "type": "default", 325 | "wrapperColor": "msx-glass", 326 | "imageWidth": 2.5, 327 | "layout": "6,5,6,1", 328 | "offset": "0,-0.5,0,0.5", 329 | "enumerate": true, 330 | "color": "msx-glass", 331 | "titleHeader": "{col:msx-white}16th Item", 332 | "titleFooter": "Aliquam nulla orci", 333 | "imageFiller": "cover", 334 | "image": "https://picsum.photos/seed/msx_24764bb8_item15/360/192", 335 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item15/1920/1080", 336 | "properties": { 337 | "image:extension": "| {col:msx-white}16th Item" 338 | } 339 | } 340 | ] 341 | }, 342 | { 343 | "offset": "0,0,0,1", 344 | "headline": "First Section", 345 | "items": [ 346 | { 347 | "type": "default", 348 | "wrapperColor": "msx-glass", 349 | "imageWidth": 2.5, 350 | "layout": "0,0,6,1", 351 | "offset": "0,0,0,0.5", 352 | "enumerate": true, 353 | "color": "msx-glass", 354 | "titleHeader": "{col:msx-white}17th Item", 355 | "titleFooter": "Fusce posuere sapien turpis", 356 | "imageFiller": "cover", 357 | "image": "https://picsum.photos/seed/msx_24764bb8_item16/360/192", 358 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item16/1920/1080", 359 | "properties": { 360 | "image:extension": "| {col:msx-white}17th Item" 361 | } 362 | }, 363 | { 364 | "type": "default", 365 | "wrapperColor": "msx-glass", 366 | "imageWidth": 2.5, 367 | "layout": "6,0,6,1", 368 | "offset": "0,0,0,0.5", 369 | "enumerate": true, 370 | "color": "msx-glass", 371 | "titleHeader": "{col:msx-white}18th Item", 372 | "titleFooter": "Cras sapien tortor", 373 | "imageFiller": "cover", 374 | "image": "https://picsum.photos/seed/msx_24764bb8_item17/360/192", 375 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item17/1920/1080", 376 | "properties": { 377 | "image:extension": "| {col:msx-white}18th Item" 378 | } 379 | }, 380 | { 381 | "type": "default", 382 | "wrapperColor": "msx-glass", 383 | "imageWidth": 2.5, 384 | "layout": "0,2,6,1", 385 | "offset": "0,-0.5,0,0.5", 386 | "enumerate": true, 387 | "color": "msx-glass", 388 | "titleHeader": "{col:msx-white}19th Item", 389 | "titleFooter": "Cras sapien tortor", 390 | "imageFiller": "cover", 391 | "image": "https://picsum.photos/seed/msx_24764bb8_item18/360/192", 392 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item18/1920/1080", 393 | "properties": { 394 | "image:extension": "| {col:msx-white}19th Item" 395 | } 396 | }, 397 | { 398 | "type": "default", 399 | "wrapperColor": "msx-glass", 400 | "imageWidth": 2.5, 401 | "layout": "6,2,6,1", 402 | "offset": "0,-0.5,0,0.5", 403 | "enumerate": true, 404 | "color": "msx-glass", 405 | "titleHeader": "{col:msx-white}20th Item", 406 | "titleFooter": "Duis rutrum orci purus", 407 | "imageFiller": "cover", 408 | "image": "https://picsum.photos/seed/msx_24764bb8_item19/360/192", 409 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item19/1920/1080", 410 | "properties": { 411 | "image:extension": "| {col:msx-white}20th Item" 412 | } 413 | }, 414 | { 415 | "type": "default", 416 | "wrapperColor": "msx-glass", 417 | "imageWidth": 2.5, 418 | "layout": "0,3,6,1", 419 | "offset": "0,0,0,0.5", 420 | "enumerate": true, 421 | "color": "msx-glass", 422 | "titleHeader": "{col:msx-white}21st Item", 423 | "titleFooter": "Quisque dolor ipsum", 424 | "imageFiller": "cover", 425 | "image": "https://picsum.photos/seed/msx_24764bb8_item20/360/192", 426 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item20/1920/1080", 427 | "properties": { 428 | "image:extension": "| {col:msx-white}21st Item" 429 | } 430 | }, 431 | { 432 | "type": "default", 433 | "wrapperColor": "msx-glass", 434 | "imageWidth": 2.5, 435 | "layout": "6,3,6,1", 436 | "offset": "0,0,0,0.5", 437 | "enumerate": true, 438 | "color": "msx-glass", 439 | "titleHeader": "{col:msx-white}22nd Item", 440 | "titleFooter": "Sed et sem augue", 441 | "imageFiller": "cover", 442 | "image": "https://picsum.photos/seed/msx_24764bb8_item21/360/192", 443 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item21/1920/1080", 444 | "properties": { 445 | "image:extension": "| {col:msx-white}22nd Item" 446 | } 447 | }, 448 | { 449 | "type": "default", 450 | "wrapperColor": "msx-glass", 451 | "imageWidth": 2.5, 452 | "layout": "0,5,6,1", 453 | "offset": "0,-0.5,0,0.5", 454 | "enumerate": true, 455 | "color": "msx-glass", 456 | "titleHeader": "{col:msx-white}23rd Item", 457 | "titleFooter": "Orci varius natoque penatibus et", 458 | "imageFiller": "cover", 459 | "image": "https://picsum.photos/seed/msx_24764bb8_item22/360/192", 460 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item22/1920/1080", 461 | "properties": { 462 | "image:extension": "| {col:msx-white}23rd Item" 463 | } 464 | }, 465 | { 466 | "type": "default", 467 | "wrapperColor": "msx-glass", 468 | "imageWidth": 2.5, 469 | "layout": "6,5,6,1", 470 | "offset": "0,-0.5,0,0.5", 471 | "enumerate": true, 472 | "color": "msx-glass", 473 | "titleHeader": "{col:msx-white}24th Item", 474 | "titleFooter": "Cras sapien tortor", 475 | "imageFiller": "cover", 476 | "image": "https://picsum.photos/seed/msx_24764bb8_item23/360/192", 477 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item23/1920/1080", 478 | "properties": { 479 | "image:extension": "| {col:msx-white}24th Item" 480 | } 481 | } 482 | ] 483 | }, 484 | { 485 | "offset": "0,0,0,1", 486 | "headline": "First Section", 487 | "items": [ 488 | { 489 | "type": "default", 490 | "wrapperColor": "msx-glass", 491 | "imageWidth": 2.5, 492 | "layout": "0,0,6,1", 493 | "offset": "0,0,0,0.5", 494 | "enumerate": true, 495 | "color": "msx-glass", 496 | "titleHeader": "{col:msx-white}25th Item", 497 | "titleFooter": "Nullam", 498 | "imageFiller": "cover", 499 | "image": "https://picsum.photos/seed/msx_24764bb8_item24/360/192", 500 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item24/1920/1080", 501 | "properties": { 502 | "image:extension": "| {col:msx-white}25th Item" 503 | } 504 | }, 505 | { 506 | "type": "default", 507 | "wrapperColor": "msx-glass", 508 | "imageWidth": 2.5, 509 | "layout": "6,0,6,1", 510 | "offset": "0,0,0,0.5", 511 | "enumerate": true, 512 | "color": "msx-glass", 513 | "titleHeader": "{col:msx-white}26th Item", 514 | "titleFooter": "Aliquam nulla orci", 515 | "imageFiller": "cover", 516 | "image": "https://picsum.photos/seed/msx_24764bb8_item25/360/192", 517 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item25/1920/1080", 518 | "properties": { 519 | "image:extension": "| {col:msx-white}26th Item" 520 | } 521 | }, 522 | { 523 | "type": "default", 524 | "wrapperColor": "msx-glass", 525 | "imageWidth": 2.5, 526 | "layout": "0,2,6,1", 527 | "offset": "0,-0.5,0,0.5", 528 | "enumerate": true, 529 | "color": "msx-glass", 530 | "titleHeader": "{col:msx-white}27th Item", 531 | "titleFooter": "Duis rutrum orci purus", 532 | "imageFiller": "cover", 533 | "image": "https://picsum.photos/seed/msx_24764bb8_item26/360/192", 534 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item26/1920/1080", 535 | "properties": { 536 | "image:extension": "| {col:msx-white}27th Item" 537 | } 538 | }, 539 | { 540 | "type": "default", 541 | "wrapperColor": "msx-glass", 542 | "imageWidth": 2.5, 543 | "layout": "6,2,6,1", 544 | "offset": "0,-0.5,0,0.5", 545 | "enumerate": true, 546 | "color": "msx-glass", 547 | "titleHeader": "{col:msx-white}28th Item", 548 | "titleFooter": "Quisque euismod urna a arcu", 549 | "imageFiller": "cover", 550 | "image": "https://picsum.photos/seed/msx_24764bb8_item27/360/192", 551 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item27/1920/1080", 552 | "properties": { 553 | "image:extension": "| {col:msx-white}28th Item" 554 | } 555 | }, 556 | { 557 | "type": "default", 558 | "wrapperColor": "msx-glass", 559 | "imageWidth": 2.5, 560 | "layout": "0,3,6,1", 561 | "offset": "0,0,0,0.5", 562 | "enumerate": true, 563 | "color": "msx-glass", 564 | "titleHeader": "{col:msx-white}29th Item", 565 | "titleFooter": "Fusce posuere sapien turpis", 566 | "imageFiller": "cover", 567 | "image": "https://picsum.photos/seed/msx_24764bb8_item28/360/192", 568 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item28/1920/1080", 569 | "properties": { 570 | "image:extension": "| {col:msx-white}29th Item" 571 | } 572 | }, 573 | { 574 | "type": "default", 575 | "wrapperColor": "msx-glass", 576 | "imageWidth": 2.5, 577 | "layout": "6,3,6,1", 578 | "offset": "0,0,0,0.5", 579 | "enumerate": true, 580 | "color": "msx-glass", 581 | "titleHeader": "{col:msx-white}30th Item", 582 | "titleFooter": "Quisque dolor ipsum", 583 | "imageFiller": "cover", 584 | "image": "https://picsum.photos/seed/msx_24764bb8_item29/360/192", 585 | "action": "image:https://picsum.photos/seed/msx_24764bb8_item29/1920/1080", 586 | "properties": { 587 | "image:extension": "| {col:msx-white}30th Item" 588 | } 589 | } 590 | ] 591 | }, 592 | { 593 | "important": true, 594 | "items": [ 595 | { 596 | "type": "space", 597 | "layout": "0,0,12,1", 598 | "offset": "0,0,0,-0.5", 599 | "headline": "Mauris tincidunt non mauris ut" 600 | }, 601 | { 602 | "type": "default", 603 | "layout": "0,1,6,3", 604 | "offset": "0,-0.5,0,-0.25", 605 | "color": "msx-glass", 606 | "image": "https://picsum.photos/seed/msx_24764bb8_footer0/840/372", 607 | "imageFiller": "cover", 608 | "title": "Mauris tincidunt non mauris ut", 609 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 610 | "action": "[invalidate:content|reload:content]" 611 | }, 612 | { 613 | "type": "default", 614 | "layout": "6,1,6,3", 615 | "offset": "0,-0.5,0,-0.25", 616 | "color": "msx-glass", 617 | "image": "https://picsum.photos/seed/msx_24764bb8_footer1/840/372", 618 | "imageFiller": "cover", 619 | "title": "Duis rutrum orci purus", 620 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 621 | "action": "[invalidate:content|reload:content]" 622 | }, 623 | { 624 | "type": "default", 625 | "layout": "0,4,6,2", 626 | "offset": "0,-0.75,0,0.75", 627 | "color": "msx-glass", 628 | "image": "https://picsum.photos/seed/msx_24764bb8_footer2/840/372", 629 | "imageFiller": "cover", 630 | "title": "Vestibulum ex lectus", 631 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 632 | "action": "[invalidate:content|reload:content]" 633 | }, 634 | { 635 | "type": "default", 636 | "layout": "6,4,6,2", 637 | "offset": "0,-0.75,0,0.75", 638 | "color": "msx-glass", 639 | "image": "https://picsum.photos/seed/msx_24764bb8_footer3/840/372", 640 | "imageFiller": "cover", 641 | "title": "Mauris tincidunt non mauris ut", 642 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 643 | "action": "[invalidate:content|reload:content]" 644 | } 645 | ] 646 | } 647 | ] 648 | } -------------------------------------------------------------------------------- /data/extended/list3_section1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Fourth List", 4 | "preload": "next", 5 | "flag": "tabs", 6 | "pages": [ 7 | { 8 | "important": false, 9 | "offset": "0,0,0,0.25", 10 | "items": [ 11 | { 12 | "type": "space", 13 | "round": false, 14 | "layout": "0,0,12,3", 15 | "offset": "-1.25,-1,2,1", 16 | "color": "msx-glass", 17 | "image": "https://picsum.photos/seed/msx_504e7949_bg/1992/552", 18 | "imageFiller": "cover", 19 | "imageOverlay": 4 20 | }, 21 | { 22 | "type": "space", 23 | "round": false, 24 | "layout": "0,1,12,1", 25 | "offset": "-1.25,1,2,0", 26 | "color": "msx-black-soft" 27 | }, 28 | { 29 | "type": "default", 30 | "layout": "0,2,3,1", 31 | "color": "transparent", 32 | "label": "First Section", 33 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section0.json]" 34 | }, 35 | { 36 | "type": "default", 37 | "layout": "3,2,3,1", 38 | "color": "msx-white-soft", 39 | "label": "{col:msx-black}Second Section", 40 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section1.json]" 41 | }, 42 | { 43 | "type": "default", 44 | "layout": "6,2,3,1", 45 | "color": "transparent", 46 | "label": "Third Section", 47 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section2.json]" 48 | }, 49 | { 50 | "type": "default", 51 | "layout": "9,2,3,1", 52 | "color": "transparent", 53 | "label": "Fourth Section", 54 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section3.json]" 55 | } 56 | ] 57 | }, 58 | { 59 | "offset": "0,0,0,1", 60 | "headline": "Second Section", 61 | "items": [ 62 | { 63 | "type": "default", 64 | "wrapperColor": "msx-glass", 65 | "imageWidth": 2.5, 66 | "layout": "0,0,6,1", 67 | "offset": "0,0,0,0.5", 68 | "enumerate": true, 69 | "color": "msx-glass", 70 | "titleHeader": "{col:msx-white}First Item", 71 | "titleFooter": "Duis rutrum orci purus", 72 | "imageFiller": "cover", 73 | "image": "https://picsum.photos/seed/msx_504e7949_item0/360/192", 74 | "action": "image:https://picsum.photos/seed/msx_504e7949_item0/1920/1080", 75 | "properties": { 76 | "image:extension": "| {col:msx-white}First Item" 77 | } 78 | }, 79 | { 80 | "type": "default", 81 | "wrapperColor": "msx-glass", 82 | "imageWidth": 2.5, 83 | "layout": "6,0,6,1", 84 | "offset": "0,0,0,0.5", 85 | "enumerate": true, 86 | "color": "msx-glass", 87 | "titleHeader": "{col:msx-white}Second Item", 88 | "titleFooter": "Orci varius natoque penatibus et", 89 | "imageFiller": "cover", 90 | "image": "https://picsum.photos/seed/msx_504e7949_item1/360/192", 91 | "action": "image:https://picsum.photos/seed/msx_504e7949_item1/1920/1080", 92 | "properties": { 93 | "image:extension": "| {col:msx-white}Second Item" 94 | } 95 | }, 96 | { 97 | "type": "default", 98 | "wrapperColor": "msx-glass", 99 | "imageWidth": 2.5, 100 | "layout": "0,2,6,1", 101 | "offset": "0,-0.5,0,0.5", 102 | "enumerate": true, 103 | "color": "msx-glass", 104 | "titleHeader": "{col:msx-white}Third Item", 105 | "titleFooter": "Sed et sem augue", 106 | "imageFiller": "cover", 107 | "image": "https://picsum.photos/seed/msx_504e7949_item2/360/192", 108 | "action": "image:https://picsum.photos/seed/msx_504e7949_item2/1920/1080", 109 | "properties": { 110 | "image:extension": "| {col:msx-white}Third Item" 111 | } 112 | }, 113 | { 114 | "type": "default", 115 | "wrapperColor": "msx-glass", 116 | "imageWidth": 2.5, 117 | "layout": "6,2,6,1", 118 | "offset": "0,-0.5,0,0.5", 119 | "enumerate": true, 120 | "color": "msx-glass", 121 | "titleHeader": "{col:msx-white}Fourth Item", 122 | "titleFooter": "Mauris tincidunt non mauris ut", 123 | "imageFiller": "cover", 124 | "image": "https://picsum.photos/seed/msx_504e7949_item3/360/192", 125 | "action": "image:https://picsum.photos/seed/msx_504e7949_item3/1920/1080", 126 | "properties": { 127 | "image:extension": "| {col:msx-white}Fourth Item" 128 | } 129 | }, 130 | { 131 | "type": "default", 132 | "wrapperColor": "msx-glass", 133 | "imageWidth": 2.5, 134 | "layout": "0,3,6,1", 135 | "offset": "0,0,0,0.5", 136 | "enumerate": true, 137 | "color": "msx-glass", 138 | "titleHeader": "{col:msx-white}Fifth Item", 139 | "titleFooter": "Sed et sem augue", 140 | "imageFiller": "cover", 141 | "image": "https://picsum.photos/seed/msx_504e7949_item4/360/192", 142 | "action": "image:https://picsum.photos/seed/msx_504e7949_item4/1920/1080", 143 | "properties": { 144 | "image:extension": "| {col:msx-white}Fifth Item" 145 | } 146 | }, 147 | { 148 | "type": "default", 149 | "wrapperColor": "msx-glass", 150 | "imageWidth": 2.5, 151 | "layout": "6,3,6,1", 152 | "offset": "0,0,0,0.5", 153 | "enumerate": true, 154 | "color": "msx-glass", 155 | "titleHeader": "{col:msx-white}Sixth Item", 156 | "titleFooter": "Vestibulum ex lectus", 157 | "imageFiller": "cover", 158 | "image": "https://picsum.photos/seed/msx_504e7949_item5/360/192", 159 | "action": "image:https://picsum.photos/seed/msx_504e7949_item5/1920/1080", 160 | "properties": { 161 | "image:extension": "| {col:msx-white}Sixth Item" 162 | } 163 | }, 164 | { 165 | "type": "default", 166 | "wrapperColor": "msx-glass", 167 | "imageWidth": 2.5, 168 | "layout": "0,5,6,1", 169 | "offset": "0,-0.5,0,0.5", 170 | "enumerate": true, 171 | "color": "msx-glass", 172 | "titleHeader": "{col:msx-white}Seventh Item", 173 | "titleFooter": "Cras sapien tortor", 174 | "imageFiller": "cover", 175 | "image": "https://picsum.photos/seed/msx_504e7949_item6/360/192", 176 | "action": "image:https://picsum.photos/seed/msx_504e7949_item6/1920/1080", 177 | "properties": { 178 | "image:extension": "| {col:msx-white}Seventh Item" 179 | } 180 | }, 181 | { 182 | "type": "default", 183 | "wrapperColor": "msx-glass", 184 | "imageWidth": 2.5, 185 | "layout": "6,5,6,1", 186 | "offset": "0,-0.5,0,0.5", 187 | "enumerate": true, 188 | "color": "msx-glass", 189 | "titleHeader": "{col:msx-white}Eighth Item", 190 | "titleFooter": "Duis rutrum orci purus", 191 | "imageFiller": "cover", 192 | "image": "https://picsum.photos/seed/msx_504e7949_item7/360/192", 193 | "action": "image:https://picsum.photos/seed/msx_504e7949_item7/1920/1080", 194 | "properties": { 195 | "image:extension": "| {col:msx-white}Eighth Item" 196 | } 197 | } 198 | ] 199 | }, 200 | { 201 | "offset": "0,0,0,1", 202 | "headline": "Second Section", 203 | "items": [ 204 | { 205 | "type": "default", 206 | "wrapperColor": "msx-glass", 207 | "imageWidth": 2.5, 208 | "layout": "0,0,6,1", 209 | "offset": "0,0,0,0.5", 210 | "enumerate": true, 211 | "color": "msx-glass", 212 | "titleHeader": "{col:msx-white}Ninth Item", 213 | "titleFooter": "Aliquam nulla orci", 214 | "imageFiller": "cover", 215 | "image": "https://picsum.photos/seed/msx_504e7949_item8/360/192", 216 | "action": "image:https://picsum.photos/seed/msx_504e7949_item8/1920/1080", 217 | "properties": { 218 | "image:extension": "| {col:msx-white}Ninth Item" 219 | } 220 | }, 221 | { 222 | "type": "default", 223 | "wrapperColor": "msx-glass", 224 | "imageWidth": 2.5, 225 | "layout": "6,0,6,1", 226 | "offset": "0,0,0,0.5", 227 | "enumerate": true, 228 | "color": "msx-glass", 229 | "titleHeader": "{col:msx-white}Tenth Item", 230 | "titleFooter": "Fusce posuere sapien turpis", 231 | "imageFiller": "cover", 232 | "image": "https://picsum.photos/seed/msx_504e7949_item9/360/192", 233 | "action": "image:https://picsum.photos/seed/msx_504e7949_item9/1920/1080", 234 | "properties": { 235 | "image:extension": "| {col:msx-white}Tenth Item" 236 | } 237 | }, 238 | { 239 | "type": "default", 240 | "wrapperColor": "msx-glass", 241 | "imageWidth": 2.5, 242 | "layout": "0,2,6,1", 243 | "offset": "0,-0.5,0,0.5", 244 | "enumerate": true, 245 | "color": "msx-glass", 246 | "titleHeader": "{col:msx-white}Eleventh Item", 247 | "titleFooter": "Fusce convallis sagittis tempus", 248 | "imageFiller": "cover", 249 | "image": "https://picsum.photos/seed/msx_504e7949_item10/360/192", 250 | "action": "image:https://picsum.photos/seed/msx_504e7949_item10/1920/1080", 251 | "properties": { 252 | "image:extension": "| {col:msx-white}Eleventh Item" 253 | } 254 | }, 255 | { 256 | "type": "default", 257 | "wrapperColor": "msx-glass", 258 | "imageWidth": 2.5, 259 | "layout": "6,2,6,1", 260 | "offset": "0,-0.5,0,0.5", 261 | "enumerate": true, 262 | "color": "msx-glass", 263 | "titleHeader": "{col:msx-white}Twelfth Item", 264 | "titleFooter": "Aliquam nulla orci", 265 | "imageFiller": "cover", 266 | "image": "https://picsum.photos/seed/msx_504e7949_item11/360/192", 267 | "action": "image:https://picsum.photos/seed/msx_504e7949_item11/1920/1080", 268 | "properties": { 269 | "image:extension": "| {col:msx-white}Twelfth Item" 270 | } 271 | }, 272 | { 273 | "type": "default", 274 | "wrapperColor": "msx-glass", 275 | "imageWidth": 2.5, 276 | "layout": "0,3,6,1", 277 | "offset": "0,0,0,0.5", 278 | "enumerate": true, 279 | "color": "msx-glass", 280 | "titleHeader": "{col:msx-white}13th Item", 281 | "titleFooter": "Aliquam nulla orci", 282 | "imageFiller": "cover", 283 | "image": "https://picsum.photos/seed/msx_504e7949_item12/360/192", 284 | "action": "image:https://picsum.photos/seed/msx_504e7949_item12/1920/1080", 285 | "properties": { 286 | "image:extension": "| {col:msx-white}13th Item" 287 | } 288 | }, 289 | { 290 | "type": "default", 291 | "wrapperColor": "msx-glass", 292 | "imageWidth": 2.5, 293 | "layout": "6,3,6,1", 294 | "offset": "0,0,0,0.5", 295 | "enumerate": true, 296 | "color": "msx-glass", 297 | "titleHeader": "{col:msx-white}14th Item", 298 | "titleFooter": "Fusce posuere sapien turpis", 299 | "imageFiller": "cover", 300 | "image": "https://picsum.photos/seed/msx_504e7949_item13/360/192", 301 | "action": "image:https://picsum.photos/seed/msx_504e7949_item13/1920/1080", 302 | "properties": { 303 | "image:extension": "| {col:msx-white}14th Item" 304 | } 305 | }, 306 | { 307 | "type": "default", 308 | "wrapperColor": "msx-glass", 309 | "imageWidth": 2.5, 310 | "layout": "0,5,6,1", 311 | "offset": "0,-0.5,0,0.5", 312 | "enumerate": true, 313 | "color": "msx-glass", 314 | "titleHeader": "{col:msx-white}15th Item", 315 | "titleFooter": "Quisque euismod urna a arcu", 316 | "imageFiller": "cover", 317 | "image": "https://picsum.photos/seed/msx_504e7949_item14/360/192", 318 | "action": "image:https://picsum.photos/seed/msx_504e7949_item14/1920/1080", 319 | "properties": { 320 | "image:extension": "| {col:msx-white}15th Item" 321 | } 322 | }, 323 | { 324 | "type": "default", 325 | "wrapperColor": "msx-glass", 326 | "imageWidth": 2.5, 327 | "layout": "6,5,6,1", 328 | "offset": "0,-0.5,0,0.5", 329 | "enumerate": true, 330 | "color": "msx-glass", 331 | "titleHeader": "{col:msx-white}16th Item", 332 | "titleFooter": "Aliquam nulla orci", 333 | "imageFiller": "cover", 334 | "image": "https://picsum.photos/seed/msx_504e7949_item15/360/192", 335 | "action": "image:https://picsum.photos/seed/msx_504e7949_item15/1920/1080", 336 | "properties": { 337 | "image:extension": "| {col:msx-white}16th Item" 338 | } 339 | } 340 | ] 341 | }, 342 | { 343 | "offset": "0,0,0,1", 344 | "headline": "Second Section", 345 | "items": [ 346 | { 347 | "type": "default", 348 | "wrapperColor": "msx-glass", 349 | "imageWidth": 2.5, 350 | "layout": "0,0,6,1", 351 | "offset": "0,0,0,0.5", 352 | "enumerate": true, 353 | "color": "msx-glass", 354 | "titleHeader": "{col:msx-white}17th Item", 355 | "titleFooter": "Fusce posuere sapien turpis", 356 | "imageFiller": "cover", 357 | "image": "https://picsum.photos/seed/msx_504e7949_item16/360/192", 358 | "action": "image:https://picsum.photos/seed/msx_504e7949_item16/1920/1080", 359 | "properties": { 360 | "image:extension": "| {col:msx-white}17th Item" 361 | } 362 | }, 363 | { 364 | "type": "default", 365 | "wrapperColor": "msx-glass", 366 | "imageWidth": 2.5, 367 | "layout": "6,0,6,1", 368 | "offset": "0,0,0,0.5", 369 | "enumerate": true, 370 | "color": "msx-glass", 371 | "titleHeader": "{col:msx-white}18th Item", 372 | "titleFooter": "Cras sapien tortor", 373 | "imageFiller": "cover", 374 | "image": "https://picsum.photos/seed/msx_504e7949_item17/360/192", 375 | "action": "image:https://picsum.photos/seed/msx_504e7949_item17/1920/1080", 376 | "properties": { 377 | "image:extension": "| {col:msx-white}18th Item" 378 | } 379 | }, 380 | { 381 | "type": "default", 382 | "wrapperColor": "msx-glass", 383 | "imageWidth": 2.5, 384 | "layout": "0,2,6,1", 385 | "offset": "0,-0.5,0,0.5", 386 | "enumerate": true, 387 | "color": "msx-glass", 388 | "titleHeader": "{col:msx-white}19th Item", 389 | "titleFooter": "Cras sapien tortor", 390 | "imageFiller": "cover", 391 | "image": "https://picsum.photos/seed/msx_504e7949_item18/360/192", 392 | "action": "image:https://picsum.photos/seed/msx_504e7949_item18/1920/1080", 393 | "properties": { 394 | "image:extension": "| {col:msx-white}19th Item" 395 | } 396 | }, 397 | { 398 | "type": "default", 399 | "wrapperColor": "msx-glass", 400 | "imageWidth": 2.5, 401 | "layout": "6,2,6,1", 402 | "offset": "0,-0.5,0,0.5", 403 | "enumerate": true, 404 | "color": "msx-glass", 405 | "titleHeader": "{col:msx-white}20th Item", 406 | "titleFooter": "Duis rutrum orci purus", 407 | "imageFiller": "cover", 408 | "image": "https://picsum.photos/seed/msx_504e7949_item19/360/192", 409 | "action": "image:https://picsum.photos/seed/msx_504e7949_item19/1920/1080", 410 | "properties": { 411 | "image:extension": "| {col:msx-white}20th Item" 412 | } 413 | }, 414 | { 415 | "type": "default", 416 | "wrapperColor": "msx-glass", 417 | "imageWidth": 2.5, 418 | "layout": "0,3,6,1", 419 | "offset": "0,0,0,0.5", 420 | "enumerate": true, 421 | "color": "msx-glass", 422 | "titleHeader": "{col:msx-white}21st Item", 423 | "titleFooter": "Quisque dolor ipsum", 424 | "imageFiller": "cover", 425 | "image": "https://picsum.photos/seed/msx_504e7949_item20/360/192", 426 | "action": "image:https://picsum.photos/seed/msx_504e7949_item20/1920/1080", 427 | "properties": { 428 | "image:extension": "| {col:msx-white}21st Item" 429 | } 430 | }, 431 | { 432 | "type": "default", 433 | "wrapperColor": "msx-glass", 434 | "imageWidth": 2.5, 435 | "layout": "6,3,6,1", 436 | "offset": "0,0,0,0.5", 437 | "enumerate": true, 438 | "color": "msx-glass", 439 | "titleHeader": "{col:msx-white}22nd Item", 440 | "titleFooter": "Sed et sem augue", 441 | "imageFiller": "cover", 442 | "image": "https://picsum.photos/seed/msx_504e7949_item21/360/192", 443 | "action": "image:https://picsum.photos/seed/msx_504e7949_item21/1920/1080", 444 | "properties": { 445 | "image:extension": "| {col:msx-white}22nd Item" 446 | } 447 | }, 448 | { 449 | "type": "default", 450 | "wrapperColor": "msx-glass", 451 | "imageWidth": 2.5, 452 | "layout": "0,5,6,1", 453 | "offset": "0,-0.5,0,0.5", 454 | "enumerate": true, 455 | "color": "msx-glass", 456 | "titleHeader": "{col:msx-white}23rd Item", 457 | "titleFooter": "Orci varius natoque penatibus et", 458 | "imageFiller": "cover", 459 | "image": "https://picsum.photos/seed/msx_504e7949_item22/360/192", 460 | "action": "image:https://picsum.photos/seed/msx_504e7949_item22/1920/1080", 461 | "properties": { 462 | "image:extension": "| {col:msx-white}23rd Item" 463 | } 464 | }, 465 | { 466 | "type": "default", 467 | "wrapperColor": "msx-glass", 468 | "imageWidth": 2.5, 469 | "layout": "6,5,6,1", 470 | "offset": "0,-0.5,0,0.5", 471 | "enumerate": true, 472 | "color": "msx-glass", 473 | "titleHeader": "{col:msx-white}24th Item", 474 | "titleFooter": "Cras sapien tortor", 475 | "imageFiller": "cover", 476 | "image": "https://picsum.photos/seed/msx_504e7949_item23/360/192", 477 | "action": "image:https://picsum.photos/seed/msx_504e7949_item23/1920/1080", 478 | "properties": { 479 | "image:extension": "| {col:msx-white}24th Item" 480 | } 481 | } 482 | ] 483 | }, 484 | { 485 | "offset": "0,0,0,1", 486 | "headline": "Second Section", 487 | "items": [ 488 | { 489 | "type": "default", 490 | "wrapperColor": "msx-glass", 491 | "imageWidth": 2.5, 492 | "layout": "0,0,6,1", 493 | "offset": "0,0,0,0.5", 494 | "enumerate": true, 495 | "color": "msx-glass", 496 | "titleHeader": "{col:msx-white}25th Item", 497 | "titleFooter": "Nullam", 498 | "imageFiller": "cover", 499 | "image": "https://picsum.photos/seed/msx_504e7949_item24/360/192", 500 | "action": "image:https://picsum.photos/seed/msx_504e7949_item24/1920/1080", 501 | "properties": { 502 | "image:extension": "| {col:msx-white}25th Item" 503 | } 504 | }, 505 | { 506 | "type": "default", 507 | "wrapperColor": "msx-glass", 508 | "imageWidth": 2.5, 509 | "layout": "6,0,6,1", 510 | "offset": "0,0,0,0.5", 511 | "enumerate": true, 512 | "color": "msx-glass", 513 | "titleHeader": "{col:msx-white}26th Item", 514 | "titleFooter": "Aliquam nulla orci", 515 | "imageFiller": "cover", 516 | "image": "https://picsum.photos/seed/msx_504e7949_item25/360/192", 517 | "action": "image:https://picsum.photos/seed/msx_504e7949_item25/1920/1080", 518 | "properties": { 519 | "image:extension": "| {col:msx-white}26th Item" 520 | } 521 | }, 522 | { 523 | "type": "default", 524 | "wrapperColor": "msx-glass", 525 | "imageWidth": 2.5, 526 | "layout": "0,2,6,1", 527 | "offset": "0,-0.5,0,0.5", 528 | "enumerate": true, 529 | "color": "msx-glass", 530 | "titleHeader": "{col:msx-white}27th Item", 531 | "titleFooter": "Duis rutrum orci purus", 532 | "imageFiller": "cover", 533 | "image": "https://picsum.photos/seed/msx_504e7949_item26/360/192", 534 | "action": "image:https://picsum.photos/seed/msx_504e7949_item26/1920/1080", 535 | "properties": { 536 | "image:extension": "| {col:msx-white}27th Item" 537 | } 538 | }, 539 | { 540 | "type": "default", 541 | "wrapperColor": "msx-glass", 542 | "imageWidth": 2.5, 543 | "layout": "6,2,6,1", 544 | "offset": "0,-0.5,0,0.5", 545 | "enumerate": true, 546 | "color": "msx-glass", 547 | "titleHeader": "{col:msx-white}28th Item", 548 | "titleFooter": "Quisque euismod urna a arcu", 549 | "imageFiller": "cover", 550 | "image": "https://picsum.photos/seed/msx_504e7949_item27/360/192", 551 | "action": "image:https://picsum.photos/seed/msx_504e7949_item27/1920/1080", 552 | "properties": { 553 | "image:extension": "| {col:msx-white}28th Item" 554 | } 555 | }, 556 | { 557 | "type": "default", 558 | "wrapperColor": "msx-glass", 559 | "imageWidth": 2.5, 560 | "layout": "0,3,6,1", 561 | "offset": "0,0,0,0.5", 562 | "enumerate": true, 563 | "color": "msx-glass", 564 | "titleHeader": "{col:msx-white}29th Item", 565 | "titleFooter": "Fusce posuere sapien turpis", 566 | "imageFiller": "cover", 567 | "image": "https://picsum.photos/seed/msx_504e7949_item28/360/192", 568 | "action": "image:https://picsum.photos/seed/msx_504e7949_item28/1920/1080", 569 | "properties": { 570 | "image:extension": "| {col:msx-white}29th Item" 571 | } 572 | }, 573 | { 574 | "type": "default", 575 | "wrapperColor": "msx-glass", 576 | "imageWidth": 2.5, 577 | "layout": "6,3,6,1", 578 | "offset": "0,0,0,0.5", 579 | "enumerate": true, 580 | "color": "msx-glass", 581 | "titleHeader": "{col:msx-white}30th Item", 582 | "titleFooter": "Quisque dolor ipsum", 583 | "imageFiller": "cover", 584 | "image": "https://picsum.photos/seed/msx_504e7949_item29/360/192", 585 | "action": "image:https://picsum.photos/seed/msx_504e7949_item29/1920/1080", 586 | "properties": { 587 | "image:extension": "| {col:msx-white}30th Item" 588 | } 589 | } 590 | ] 591 | }, 592 | { 593 | "important": true, 594 | "items": [ 595 | { 596 | "type": "space", 597 | "layout": "0,0,12,1", 598 | "offset": "0,0,0,-0.5", 599 | "headline": "Mauris tincidunt non mauris ut" 600 | }, 601 | { 602 | "type": "default", 603 | "layout": "0,1,6,3", 604 | "offset": "0,-0.5,0,-0.25", 605 | "color": "msx-glass", 606 | "image": "https://picsum.photos/seed/msx_504e7949_footer0/840/372", 607 | "imageFiller": "cover", 608 | "title": "Mauris tincidunt non mauris ut", 609 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 610 | "action": "[invalidate:content|reload:content]" 611 | }, 612 | { 613 | "type": "default", 614 | "layout": "6,1,6,3", 615 | "offset": "0,-0.5,0,-0.25", 616 | "color": "msx-glass", 617 | "image": "https://picsum.photos/seed/msx_504e7949_footer1/840/372", 618 | "imageFiller": "cover", 619 | "title": "Duis rutrum orci purus", 620 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 621 | "action": "[invalidate:content|reload:content]" 622 | }, 623 | { 624 | "type": "default", 625 | "layout": "0,4,6,2", 626 | "offset": "0,-0.75,0,0.75", 627 | "color": "msx-glass", 628 | "image": "https://picsum.photos/seed/msx_504e7949_footer2/840/372", 629 | "imageFiller": "cover", 630 | "title": "Vestibulum ex lectus", 631 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 632 | "action": "[invalidate:content|reload:content]" 633 | }, 634 | { 635 | "type": "default", 636 | "layout": "6,4,6,2", 637 | "offset": "0,-0.75,0,0.75", 638 | "color": "msx-glass", 639 | "image": "https://picsum.photos/seed/msx_504e7949_footer3/840/372", 640 | "imageFiller": "cover", 641 | "title": "Mauris tincidunt non mauris ut", 642 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 643 | "action": "[invalidate:content|reload:content]" 644 | } 645 | ] 646 | } 647 | ] 648 | } -------------------------------------------------------------------------------- /data/extended/list3_section2.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Fourth List", 4 | "preload": "next", 5 | "flag": "tabs", 6 | "pages": [ 7 | { 8 | "important": false, 9 | "offset": "0,0,0,0.25", 10 | "items": [ 11 | { 12 | "type": "space", 13 | "round": false, 14 | "layout": "0,0,12,3", 15 | "offset": "-1.25,-1,2,1", 16 | "color": "msx-glass", 17 | "image": "https://picsum.photos/seed/msx_10ae802d_bg/1992/552", 18 | "imageFiller": "cover", 19 | "imageOverlay": 4 20 | }, 21 | { 22 | "type": "space", 23 | "round": false, 24 | "layout": "0,1,12,1", 25 | "offset": "-1.25,1,2,0", 26 | "color": "msx-black-soft" 27 | }, 28 | { 29 | "type": "default", 30 | "layout": "0,2,3,1", 31 | "color": "transparent", 32 | "label": "First Section", 33 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section0.json]" 34 | }, 35 | { 36 | "type": "default", 37 | "layout": "3,2,3,1", 38 | "color": "transparent", 39 | "label": "Second Section", 40 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section1.json]" 41 | }, 42 | { 43 | "type": "default", 44 | "layout": "6,2,3,1", 45 | "color": "msx-white-soft", 46 | "label": "{col:msx-black}Third Section", 47 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section2.json]" 48 | }, 49 | { 50 | "type": "default", 51 | "layout": "9,2,3,1", 52 | "color": "transparent", 53 | "label": "Fourth Section", 54 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section3.json]" 55 | } 56 | ] 57 | }, 58 | { 59 | "offset": "0,0,0,1", 60 | "headline": "Third Section", 61 | "items": [ 62 | { 63 | "type": "default", 64 | "wrapperColor": "msx-glass", 65 | "imageWidth": 2.5, 66 | "layout": "0,0,6,1", 67 | "offset": "0,0,0,0.5", 68 | "enumerate": true, 69 | "color": "msx-glass", 70 | "titleHeader": "{col:msx-white}First Item", 71 | "titleFooter": "Duis rutrum orci purus", 72 | "imageFiller": "cover", 73 | "image": "https://picsum.photos/seed/msx_10ae802d_item0/360/192", 74 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item0/1920/1080", 75 | "properties": { 76 | "image:extension": "| {col:msx-white}First Item" 77 | } 78 | }, 79 | { 80 | "type": "default", 81 | "wrapperColor": "msx-glass", 82 | "imageWidth": 2.5, 83 | "layout": "6,0,6,1", 84 | "offset": "0,0,0,0.5", 85 | "enumerate": true, 86 | "color": "msx-glass", 87 | "titleHeader": "{col:msx-white}Second Item", 88 | "titleFooter": "Orci varius natoque penatibus et", 89 | "imageFiller": "cover", 90 | "image": "https://picsum.photos/seed/msx_10ae802d_item1/360/192", 91 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item1/1920/1080", 92 | "properties": { 93 | "image:extension": "| {col:msx-white}Second Item" 94 | } 95 | }, 96 | { 97 | "type": "default", 98 | "wrapperColor": "msx-glass", 99 | "imageWidth": 2.5, 100 | "layout": "0,2,6,1", 101 | "offset": "0,-0.5,0,0.5", 102 | "enumerate": true, 103 | "color": "msx-glass", 104 | "titleHeader": "{col:msx-white}Third Item", 105 | "titleFooter": "Sed et sem augue", 106 | "imageFiller": "cover", 107 | "image": "https://picsum.photos/seed/msx_10ae802d_item2/360/192", 108 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item2/1920/1080", 109 | "properties": { 110 | "image:extension": "| {col:msx-white}Third Item" 111 | } 112 | }, 113 | { 114 | "type": "default", 115 | "wrapperColor": "msx-glass", 116 | "imageWidth": 2.5, 117 | "layout": "6,2,6,1", 118 | "offset": "0,-0.5,0,0.5", 119 | "enumerate": true, 120 | "color": "msx-glass", 121 | "titleHeader": "{col:msx-white}Fourth Item", 122 | "titleFooter": "Mauris tincidunt non mauris ut", 123 | "imageFiller": "cover", 124 | "image": "https://picsum.photos/seed/msx_10ae802d_item3/360/192", 125 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item3/1920/1080", 126 | "properties": { 127 | "image:extension": "| {col:msx-white}Fourth Item" 128 | } 129 | }, 130 | { 131 | "type": "default", 132 | "wrapperColor": "msx-glass", 133 | "imageWidth": 2.5, 134 | "layout": "0,3,6,1", 135 | "offset": "0,0,0,0.5", 136 | "enumerate": true, 137 | "color": "msx-glass", 138 | "titleHeader": "{col:msx-white}Fifth Item", 139 | "titleFooter": "Sed et sem augue", 140 | "imageFiller": "cover", 141 | "image": "https://picsum.photos/seed/msx_10ae802d_item4/360/192", 142 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item4/1920/1080", 143 | "properties": { 144 | "image:extension": "| {col:msx-white}Fifth Item" 145 | } 146 | }, 147 | { 148 | "type": "default", 149 | "wrapperColor": "msx-glass", 150 | "imageWidth": 2.5, 151 | "layout": "6,3,6,1", 152 | "offset": "0,0,0,0.5", 153 | "enumerate": true, 154 | "color": "msx-glass", 155 | "titleHeader": "{col:msx-white}Sixth Item", 156 | "titleFooter": "Vestibulum ex lectus", 157 | "imageFiller": "cover", 158 | "image": "https://picsum.photos/seed/msx_10ae802d_item5/360/192", 159 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item5/1920/1080", 160 | "properties": { 161 | "image:extension": "| {col:msx-white}Sixth Item" 162 | } 163 | }, 164 | { 165 | "type": "default", 166 | "wrapperColor": "msx-glass", 167 | "imageWidth": 2.5, 168 | "layout": "0,5,6,1", 169 | "offset": "0,-0.5,0,0.5", 170 | "enumerate": true, 171 | "color": "msx-glass", 172 | "titleHeader": "{col:msx-white}Seventh Item", 173 | "titleFooter": "Cras sapien tortor", 174 | "imageFiller": "cover", 175 | "image": "https://picsum.photos/seed/msx_10ae802d_item6/360/192", 176 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item6/1920/1080", 177 | "properties": { 178 | "image:extension": "| {col:msx-white}Seventh Item" 179 | } 180 | }, 181 | { 182 | "type": "default", 183 | "wrapperColor": "msx-glass", 184 | "imageWidth": 2.5, 185 | "layout": "6,5,6,1", 186 | "offset": "0,-0.5,0,0.5", 187 | "enumerate": true, 188 | "color": "msx-glass", 189 | "titleHeader": "{col:msx-white}Eighth Item", 190 | "titleFooter": "Duis rutrum orci purus", 191 | "imageFiller": "cover", 192 | "image": "https://picsum.photos/seed/msx_10ae802d_item7/360/192", 193 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item7/1920/1080", 194 | "properties": { 195 | "image:extension": "| {col:msx-white}Eighth Item" 196 | } 197 | } 198 | ] 199 | }, 200 | { 201 | "offset": "0,0,0,1", 202 | "headline": "Third Section", 203 | "items": [ 204 | { 205 | "type": "default", 206 | "wrapperColor": "msx-glass", 207 | "imageWidth": 2.5, 208 | "layout": "0,0,6,1", 209 | "offset": "0,0,0,0.5", 210 | "enumerate": true, 211 | "color": "msx-glass", 212 | "titleHeader": "{col:msx-white}Ninth Item", 213 | "titleFooter": "Aliquam nulla orci", 214 | "imageFiller": "cover", 215 | "image": "https://picsum.photos/seed/msx_10ae802d_item8/360/192", 216 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item8/1920/1080", 217 | "properties": { 218 | "image:extension": "| {col:msx-white}Ninth Item" 219 | } 220 | }, 221 | { 222 | "type": "default", 223 | "wrapperColor": "msx-glass", 224 | "imageWidth": 2.5, 225 | "layout": "6,0,6,1", 226 | "offset": "0,0,0,0.5", 227 | "enumerate": true, 228 | "color": "msx-glass", 229 | "titleHeader": "{col:msx-white}Tenth Item", 230 | "titleFooter": "Fusce posuere sapien turpis", 231 | "imageFiller": "cover", 232 | "image": "https://picsum.photos/seed/msx_10ae802d_item9/360/192", 233 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item9/1920/1080", 234 | "properties": { 235 | "image:extension": "| {col:msx-white}Tenth Item" 236 | } 237 | }, 238 | { 239 | "type": "default", 240 | "wrapperColor": "msx-glass", 241 | "imageWidth": 2.5, 242 | "layout": "0,2,6,1", 243 | "offset": "0,-0.5,0,0.5", 244 | "enumerate": true, 245 | "color": "msx-glass", 246 | "titleHeader": "{col:msx-white}Eleventh Item", 247 | "titleFooter": "Fusce convallis sagittis tempus", 248 | "imageFiller": "cover", 249 | "image": "https://picsum.photos/seed/msx_10ae802d_item10/360/192", 250 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item10/1920/1080", 251 | "properties": { 252 | "image:extension": "| {col:msx-white}Eleventh Item" 253 | } 254 | }, 255 | { 256 | "type": "default", 257 | "wrapperColor": "msx-glass", 258 | "imageWidth": 2.5, 259 | "layout": "6,2,6,1", 260 | "offset": "0,-0.5,0,0.5", 261 | "enumerate": true, 262 | "color": "msx-glass", 263 | "titleHeader": "{col:msx-white}Twelfth Item", 264 | "titleFooter": "Aliquam nulla orci", 265 | "imageFiller": "cover", 266 | "image": "https://picsum.photos/seed/msx_10ae802d_item11/360/192", 267 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item11/1920/1080", 268 | "properties": { 269 | "image:extension": "| {col:msx-white}Twelfth Item" 270 | } 271 | }, 272 | { 273 | "type": "default", 274 | "wrapperColor": "msx-glass", 275 | "imageWidth": 2.5, 276 | "layout": "0,3,6,1", 277 | "offset": "0,0,0,0.5", 278 | "enumerate": true, 279 | "color": "msx-glass", 280 | "titleHeader": "{col:msx-white}13th Item", 281 | "titleFooter": "Aliquam nulla orci", 282 | "imageFiller": "cover", 283 | "image": "https://picsum.photos/seed/msx_10ae802d_item12/360/192", 284 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item12/1920/1080", 285 | "properties": { 286 | "image:extension": "| {col:msx-white}13th Item" 287 | } 288 | }, 289 | { 290 | "type": "default", 291 | "wrapperColor": "msx-glass", 292 | "imageWidth": 2.5, 293 | "layout": "6,3,6,1", 294 | "offset": "0,0,0,0.5", 295 | "enumerate": true, 296 | "color": "msx-glass", 297 | "titleHeader": "{col:msx-white}14th Item", 298 | "titleFooter": "Fusce posuere sapien turpis", 299 | "imageFiller": "cover", 300 | "image": "https://picsum.photos/seed/msx_10ae802d_item13/360/192", 301 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item13/1920/1080", 302 | "properties": { 303 | "image:extension": "| {col:msx-white}14th Item" 304 | } 305 | }, 306 | { 307 | "type": "default", 308 | "wrapperColor": "msx-glass", 309 | "imageWidth": 2.5, 310 | "layout": "0,5,6,1", 311 | "offset": "0,-0.5,0,0.5", 312 | "enumerate": true, 313 | "color": "msx-glass", 314 | "titleHeader": "{col:msx-white}15th Item", 315 | "titleFooter": "Quisque euismod urna a arcu", 316 | "imageFiller": "cover", 317 | "image": "https://picsum.photos/seed/msx_10ae802d_item14/360/192", 318 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item14/1920/1080", 319 | "properties": { 320 | "image:extension": "| {col:msx-white}15th Item" 321 | } 322 | }, 323 | { 324 | "type": "default", 325 | "wrapperColor": "msx-glass", 326 | "imageWidth": 2.5, 327 | "layout": "6,5,6,1", 328 | "offset": "0,-0.5,0,0.5", 329 | "enumerate": true, 330 | "color": "msx-glass", 331 | "titleHeader": "{col:msx-white}16th Item", 332 | "titleFooter": "Aliquam nulla orci", 333 | "imageFiller": "cover", 334 | "image": "https://picsum.photos/seed/msx_10ae802d_item15/360/192", 335 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item15/1920/1080", 336 | "properties": { 337 | "image:extension": "| {col:msx-white}16th Item" 338 | } 339 | } 340 | ] 341 | }, 342 | { 343 | "offset": "0,0,0,1", 344 | "headline": "Third Section", 345 | "items": [ 346 | { 347 | "type": "default", 348 | "wrapperColor": "msx-glass", 349 | "imageWidth": 2.5, 350 | "layout": "0,0,6,1", 351 | "offset": "0,0,0,0.5", 352 | "enumerate": true, 353 | "color": "msx-glass", 354 | "titleHeader": "{col:msx-white}17th Item", 355 | "titleFooter": "Fusce posuere sapien turpis", 356 | "imageFiller": "cover", 357 | "image": "https://picsum.photos/seed/msx_10ae802d_item16/360/192", 358 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item16/1920/1080", 359 | "properties": { 360 | "image:extension": "| {col:msx-white}17th Item" 361 | } 362 | }, 363 | { 364 | "type": "default", 365 | "wrapperColor": "msx-glass", 366 | "imageWidth": 2.5, 367 | "layout": "6,0,6,1", 368 | "offset": "0,0,0,0.5", 369 | "enumerate": true, 370 | "color": "msx-glass", 371 | "titleHeader": "{col:msx-white}18th Item", 372 | "titleFooter": "Cras sapien tortor", 373 | "imageFiller": "cover", 374 | "image": "https://picsum.photos/seed/msx_10ae802d_item17/360/192", 375 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item17/1920/1080", 376 | "properties": { 377 | "image:extension": "| {col:msx-white}18th Item" 378 | } 379 | }, 380 | { 381 | "type": "default", 382 | "wrapperColor": "msx-glass", 383 | "imageWidth": 2.5, 384 | "layout": "0,2,6,1", 385 | "offset": "0,-0.5,0,0.5", 386 | "enumerate": true, 387 | "color": "msx-glass", 388 | "titleHeader": "{col:msx-white}19th Item", 389 | "titleFooter": "Cras sapien tortor", 390 | "imageFiller": "cover", 391 | "image": "https://picsum.photos/seed/msx_10ae802d_item18/360/192", 392 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item18/1920/1080", 393 | "properties": { 394 | "image:extension": "| {col:msx-white}19th Item" 395 | } 396 | }, 397 | { 398 | "type": "default", 399 | "wrapperColor": "msx-glass", 400 | "imageWidth": 2.5, 401 | "layout": "6,2,6,1", 402 | "offset": "0,-0.5,0,0.5", 403 | "enumerate": true, 404 | "color": "msx-glass", 405 | "titleHeader": "{col:msx-white}20th Item", 406 | "titleFooter": "Duis rutrum orci purus", 407 | "imageFiller": "cover", 408 | "image": "https://picsum.photos/seed/msx_10ae802d_item19/360/192", 409 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item19/1920/1080", 410 | "properties": { 411 | "image:extension": "| {col:msx-white}20th Item" 412 | } 413 | }, 414 | { 415 | "type": "default", 416 | "wrapperColor": "msx-glass", 417 | "imageWidth": 2.5, 418 | "layout": "0,3,6,1", 419 | "offset": "0,0,0,0.5", 420 | "enumerate": true, 421 | "color": "msx-glass", 422 | "titleHeader": "{col:msx-white}21st Item", 423 | "titleFooter": "Quisque dolor ipsum", 424 | "imageFiller": "cover", 425 | "image": "https://picsum.photos/seed/msx_10ae802d_item20/360/192", 426 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item20/1920/1080", 427 | "properties": { 428 | "image:extension": "| {col:msx-white}21st Item" 429 | } 430 | }, 431 | { 432 | "type": "default", 433 | "wrapperColor": "msx-glass", 434 | "imageWidth": 2.5, 435 | "layout": "6,3,6,1", 436 | "offset": "0,0,0,0.5", 437 | "enumerate": true, 438 | "color": "msx-glass", 439 | "titleHeader": "{col:msx-white}22nd Item", 440 | "titleFooter": "Sed et sem augue", 441 | "imageFiller": "cover", 442 | "image": "https://picsum.photos/seed/msx_10ae802d_item21/360/192", 443 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item21/1920/1080", 444 | "properties": { 445 | "image:extension": "| {col:msx-white}22nd Item" 446 | } 447 | }, 448 | { 449 | "type": "default", 450 | "wrapperColor": "msx-glass", 451 | "imageWidth": 2.5, 452 | "layout": "0,5,6,1", 453 | "offset": "0,-0.5,0,0.5", 454 | "enumerate": true, 455 | "color": "msx-glass", 456 | "titleHeader": "{col:msx-white}23rd Item", 457 | "titleFooter": "Orci varius natoque penatibus et", 458 | "imageFiller": "cover", 459 | "image": "https://picsum.photos/seed/msx_10ae802d_item22/360/192", 460 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item22/1920/1080", 461 | "properties": { 462 | "image:extension": "| {col:msx-white}23rd Item" 463 | } 464 | }, 465 | { 466 | "type": "default", 467 | "wrapperColor": "msx-glass", 468 | "imageWidth": 2.5, 469 | "layout": "6,5,6,1", 470 | "offset": "0,-0.5,0,0.5", 471 | "enumerate": true, 472 | "color": "msx-glass", 473 | "titleHeader": "{col:msx-white}24th Item", 474 | "titleFooter": "Cras sapien tortor", 475 | "imageFiller": "cover", 476 | "image": "https://picsum.photos/seed/msx_10ae802d_item23/360/192", 477 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item23/1920/1080", 478 | "properties": { 479 | "image:extension": "| {col:msx-white}24th Item" 480 | } 481 | } 482 | ] 483 | }, 484 | { 485 | "offset": "0,0,0,1", 486 | "headline": "Third Section", 487 | "items": [ 488 | { 489 | "type": "default", 490 | "wrapperColor": "msx-glass", 491 | "imageWidth": 2.5, 492 | "layout": "0,0,6,1", 493 | "offset": "0,0,0,0.5", 494 | "enumerate": true, 495 | "color": "msx-glass", 496 | "titleHeader": "{col:msx-white}25th Item", 497 | "titleFooter": "Nullam", 498 | "imageFiller": "cover", 499 | "image": "https://picsum.photos/seed/msx_10ae802d_item24/360/192", 500 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item24/1920/1080", 501 | "properties": { 502 | "image:extension": "| {col:msx-white}25th Item" 503 | } 504 | }, 505 | { 506 | "type": "default", 507 | "wrapperColor": "msx-glass", 508 | "imageWidth": 2.5, 509 | "layout": "6,0,6,1", 510 | "offset": "0,0,0,0.5", 511 | "enumerate": true, 512 | "color": "msx-glass", 513 | "titleHeader": "{col:msx-white}26th Item", 514 | "titleFooter": "Aliquam nulla orci", 515 | "imageFiller": "cover", 516 | "image": "https://picsum.photos/seed/msx_10ae802d_item25/360/192", 517 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item25/1920/1080", 518 | "properties": { 519 | "image:extension": "| {col:msx-white}26th Item" 520 | } 521 | }, 522 | { 523 | "type": "default", 524 | "wrapperColor": "msx-glass", 525 | "imageWidth": 2.5, 526 | "layout": "0,2,6,1", 527 | "offset": "0,-0.5,0,0.5", 528 | "enumerate": true, 529 | "color": "msx-glass", 530 | "titleHeader": "{col:msx-white}27th Item", 531 | "titleFooter": "Duis rutrum orci purus", 532 | "imageFiller": "cover", 533 | "image": "https://picsum.photos/seed/msx_10ae802d_item26/360/192", 534 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item26/1920/1080", 535 | "properties": { 536 | "image:extension": "| {col:msx-white}27th Item" 537 | } 538 | }, 539 | { 540 | "type": "default", 541 | "wrapperColor": "msx-glass", 542 | "imageWidth": 2.5, 543 | "layout": "6,2,6,1", 544 | "offset": "0,-0.5,0,0.5", 545 | "enumerate": true, 546 | "color": "msx-glass", 547 | "titleHeader": "{col:msx-white}28th Item", 548 | "titleFooter": "Quisque euismod urna a arcu", 549 | "imageFiller": "cover", 550 | "image": "https://picsum.photos/seed/msx_10ae802d_item27/360/192", 551 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item27/1920/1080", 552 | "properties": { 553 | "image:extension": "| {col:msx-white}28th Item" 554 | } 555 | }, 556 | { 557 | "type": "default", 558 | "wrapperColor": "msx-glass", 559 | "imageWidth": 2.5, 560 | "layout": "0,3,6,1", 561 | "offset": "0,0,0,0.5", 562 | "enumerate": true, 563 | "color": "msx-glass", 564 | "titleHeader": "{col:msx-white}29th Item", 565 | "titleFooter": "Fusce posuere sapien turpis", 566 | "imageFiller": "cover", 567 | "image": "https://picsum.photos/seed/msx_10ae802d_item28/360/192", 568 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item28/1920/1080", 569 | "properties": { 570 | "image:extension": "| {col:msx-white}29th Item" 571 | } 572 | }, 573 | { 574 | "type": "default", 575 | "wrapperColor": "msx-glass", 576 | "imageWidth": 2.5, 577 | "layout": "6,3,6,1", 578 | "offset": "0,0,0,0.5", 579 | "enumerate": true, 580 | "color": "msx-glass", 581 | "titleHeader": "{col:msx-white}30th Item", 582 | "titleFooter": "Quisque dolor ipsum", 583 | "imageFiller": "cover", 584 | "image": "https://picsum.photos/seed/msx_10ae802d_item29/360/192", 585 | "action": "image:https://picsum.photos/seed/msx_10ae802d_item29/1920/1080", 586 | "properties": { 587 | "image:extension": "| {col:msx-white}30th Item" 588 | } 589 | } 590 | ] 591 | }, 592 | { 593 | "important": true, 594 | "items": [ 595 | { 596 | "type": "space", 597 | "layout": "0,0,12,1", 598 | "offset": "0,0,0,-0.5", 599 | "headline": "Mauris tincidunt non mauris ut" 600 | }, 601 | { 602 | "type": "default", 603 | "layout": "0,1,6,3", 604 | "offset": "0,-0.5,0,-0.25", 605 | "color": "msx-glass", 606 | "image": "https://picsum.photos/seed/msx_10ae802d_footer0/840/372", 607 | "imageFiller": "cover", 608 | "title": "Mauris tincidunt non mauris ut", 609 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 610 | "action": "[invalidate:content|reload:content]" 611 | }, 612 | { 613 | "type": "default", 614 | "layout": "6,1,6,3", 615 | "offset": "0,-0.5,0,-0.25", 616 | "color": "msx-glass", 617 | "image": "https://picsum.photos/seed/msx_10ae802d_footer1/840/372", 618 | "imageFiller": "cover", 619 | "title": "Duis rutrum orci purus", 620 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 621 | "action": "[invalidate:content|reload:content]" 622 | }, 623 | { 624 | "type": "default", 625 | "layout": "0,4,6,2", 626 | "offset": "0,-0.75,0,0.75", 627 | "color": "msx-glass", 628 | "image": "https://picsum.photos/seed/msx_10ae802d_footer2/840/372", 629 | "imageFiller": "cover", 630 | "title": "Vestibulum ex lectus", 631 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 632 | "action": "[invalidate:content|reload:content]" 633 | }, 634 | { 635 | "type": "default", 636 | "layout": "6,4,6,2", 637 | "offset": "0,-0.75,0,0.75", 638 | "color": "msx-glass", 639 | "image": "https://picsum.photos/seed/msx_10ae802d_footer3/840/372", 640 | "imageFiller": "cover", 641 | "title": "Mauris tincidunt non mauris ut", 642 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 643 | "action": "[invalidate:content|reload:content]" 644 | } 645 | ] 646 | } 647 | ] 648 | } -------------------------------------------------------------------------------- /data/extended/list3_section3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "list", 3 | "headline": "Fourth List", 4 | "preload": "next", 5 | "flag": "tabs", 6 | "pages": [ 7 | { 8 | "important": false, 9 | "offset": "0,0,0,0.25", 10 | "items": [ 11 | { 12 | "type": "space", 13 | "round": false, 14 | "layout": "0,0,12,3", 15 | "offset": "-1.25,-1,2,1", 16 | "color": "msx-glass", 17 | "image": "https://picsum.photos/seed/msx_d476b985_bg/1992/552", 18 | "imageFiller": "cover", 19 | "imageOverlay": 4 20 | }, 21 | { 22 | "type": "space", 23 | "round": false, 24 | "layout": "0,1,12,1", 25 | "offset": "-1.25,1,2,0", 26 | "color": "msx-black-soft" 27 | }, 28 | { 29 | "type": "default", 30 | "layout": "0,2,3,1", 31 | "color": "transparent", 32 | "label": "First Section", 33 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section0.json]" 34 | }, 35 | { 36 | "type": "default", 37 | "layout": "3,2,3,1", 38 | "color": "transparent", 39 | "label": "Second Section", 40 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section1.json]" 41 | }, 42 | { 43 | "type": "default", 44 | "layout": "6,2,3,1", 45 | "color": "transparent", 46 | "label": "Third Section", 47 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section2.json]" 48 | }, 49 | { 50 | "type": "default", 51 | "layout": "9,2,3,1", 52 | "color": "msx-white-soft", 53 | "label": "{col:msx-black}Fourth Section", 54 | "action": "[invalidate:content|replace:content:tabs:https://benzac-de.github.io/msx/data/extended/list3_section3.json]" 55 | } 56 | ] 57 | }, 58 | { 59 | "offset": "0,0,0,1", 60 | "headline": "Fourth Section", 61 | "items": [ 62 | { 63 | "type": "default", 64 | "wrapperColor": "msx-glass", 65 | "imageWidth": 2.5, 66 | "layout": "0,0,6,1", 67 | "offset": "0,0,0,0.5", 68 | "enumerate": true, 69 | "color": "msx-glass", 70 | "titleHeader": "{col:msx-white}First Item", 71 | "titleFooter": "Duis rutrum orci purus", 72 | "imageFiller": "cover", 73 | "image": "https://picsum.photos/seed/msx_d476b985_item0/360/192", 74 | "action": "image:https://picsum.photos/seed/msx_d476b985_item0/1920/1080", 75 | "properties": { 76 | "image:extension": "| {col:msx-white}First Item" 77 | } 78 | }, 79 | { 80 | "type": "default", 81 | "wrapperColor": "msx-glass", 82 | "imageWidth": 2.5, 83 | "layout": "6,0,6,1", 84 | "offset": "0,0,0,0.5", 85 | "enumerate": true, 86 | "color": "msx-glass", 87 | "titleHeader": "{col:msx-white}Second Item", 88 | "titleFooter": "Orci varius natoque penatibus et", 89 | "imageFiller": "cover", 90 | "image": "https://picsum.photos/seed/msx_d476b985_item1/360/192", 91 | "action": "image:https://picsum.photos/seed/msx_d476b985_item1/1920/1080", 92 | "properties": { 93 | "image:extension": "| {col:msx-white}Second Item" 94 | } 95 | }, 96 | { 97 | "type": "default", 98 | "wrapperColor": "msx-glass", 99 | "imageWidth": 2.5, 100 | "layout": "0,2,6,1", 101 | "offset": "0,-0.5,0,0.5", 102 | "enumerate": true, 103 | "color": "msx-glass", 104 | "titleHeader": "{col:msx-white}Third Item", 105 | "titleFooter": "Sed et sem augue", 106 | "imageFiller": "cover", 107 | "image": "https://picsum.photos/seed/msx_d476b985_item2/360/192", 108 | "action": "image:https://picsum.photos/seed/msx_d476b985_item2/1920/1080", 109 | "properties": { 110 | "image:extension": "| {col:msx-white}Third Item" 111 | } 112 | }, 113 | { 114 | "type": "default", 115 | "wrapperColor": "msx-glass", 116 | "imageWidth": 2.5, 117 | "layout": "6,2,6,1", 118 | "offset": "0,-0.5,0,0.5", 119 | "enumerate": true, 120 | "color": "msx-glass", 121 | "titleHeader": "{col:msx-white}Fourth Item", 122 | "titleFooter": "Mauris tincidunt non mauris ut", 123 | "imageFiller": "cover", 124 | "image": "https://picsum.photos/seed/msx_d476b985_item3/360/192", 125 | "action": "image:https://picsum.photos/seed/msx_d476b985_item3/1920/1080", 126 | "properties": { 127 | "image:extension": "| {col:msx-white}Fourth Item" 128 | } 129 | }, 130 | { 131 | "type": "default", 132 | "wrapperColor": "msx-glass", 133 | "imageWidth": 2.5, 134 | "layout": "0,3,6,1", 135 | "offset": "0,0,0,0.5", 136 | "enumerate": true, 137 | "color": "msx-glass", 138 | "titleHeader": "{col:msx-white}Fifth Item", 139 | "titleFooter": "Sed et sem augue", 140 | "imageFiller": "cover", 141 | "image": "https://picsum.photos/seed/msx_d476b985_item4/360/192", 142 | "action": "image:https://picsum.photos/seed/msx_d476b985_item4/1920/1080", 143 | "properties": { 144 | "image:extension": "| {col:msx-white}Fifth Item" 145 | } 146 | }, 147 | { 148 | "type": "default", 149 | "wrapperColor": "msx-glass", 150 | "imageWidth": 2.5, 151 | "layout": "6,3,6,1", 152 | "offset": "0,0,0,0.5", 153 | "enumerate": true, 154 | "color": "msx-glass", 155 | "titleHeader": "{col:msx-white}Sixth Item", 156 | "titleFooter": "Vestibulum ex lectus", 157 | "imageFiller": "cover", 158 | "image": "https://picsum.photos/seed/msx_d476b985_item5/360/192", 159 | "action": "image:https://picsum.photos/seed/msx_d476b985_item5/1920/1080", 160 | "properties": { 161 | "image:extension": "| {col:msx-white}Sixth Item" 162 | } 163 | }, 164 | { 165 | "type": "default", 166 | "wrapperColor": "msx-glass", 167 | "imageWidth": 2.5, 168 | "layout": "0,5,6,1", 169 | "offset": "0,-0.5,0,0.5", 170 | "enumerate": true, 171 | "color": "msx-glass", 172 | "titleHeader": "{col:msx-white}Seventh Item", 173 | "titleFooter": "Cras sapien tortor", 174 | "imageFiller": "cover", 175 | "image": "https://picsum.photos/seed/msx_d476b985_item6/360/192", 176 | "action": "image:https://picsum.photos/seed/msx_d476b985_item6/1920/1080", 177 | "properties": { 178 | "image:extension": "| {col:msx-white}Seventh Item" 179 | } 180 | }, 181 | { 182 | "type": "default", 183 | "wrapperColor": "msx-glass", 184 | "imageWidth": 2.5, 185 | "layout": "6,5,6,1", 186 | "offset": "0,-0.5,0,0.5", 187 | "enumerate": true, 188 | "color": "msx-glass", 189 | "titleHeader": "{col:msx-white}Eighth Item", 190 | "titleFooter": "Duis rutrum orci purus", 191 | "imageFiller": "cover", 192 | "image": "https://picsum.photos/seed/msx_d476b985_item7/360/192", 193 | "action": "image:https://picsum.photos/seed/msx_d476b985_item7/1920/1080", 194 | "properties": { 195 | "image:extension": "| {col:msx-white}Eighth Item" 196 | } 197 | } 198 | ] 199 | }, 200 | { 201 | "offset": "0,0,0,1", 202 | "headline": "Fourth Section", 203 | "items": [ 204 | { 205 | "type": "default", 206 | "wrapperColor": "msx-glass", 207 | "imageWidth": 2.5, 208 | "layout": "0,0,6,1", 209 | "offset": "0,0,0,0.5", 210 | "enumerate": true, 211 | "color": "msx-glass", 212 | "titleHeader": "{col:msx-white}Ninth Item", 213 | "titleFooter": "Aliquam nulla orci", 214 | "imageFiller": "cover", 215 | "image": "https://picsum.photos/seed/msx_d476b985_item8/360/192", 216 | "action": "image:https://picsum.photos/seed/msx_d476b985_item8/1920/1080", 217 | "properties": { 218 | "image:extension": "| {col:msx-white}Ninth Item" 219 | } 220 | }, 221 | { 222 | "type": "default", 223 | "wrapperColor": "msx-glass", 224 | "imageWidth": 2.5, 225 | "layout": "6,0,6,1", 226 | "offset": "0,0,0,0.5", 227 | "enumerate": true, 228 | "color": "msx-glass", 229 | "titleHeader": "{col:msx-white}Tenth Item", 230 | "titleFooter": "Fusce posuere sapien turpis", 231 | "imageFiller": "cover", 232 | "image": "https://picsum.photos/seed/msx_d476b985_item9/360/192", 233 | "action": "image:https://picsum.photos/seed/msx_d476b985_item9/1920/1080", 234 | "properties": { 235 | "image:extension": "| {col:msx-white}Tenth Item" 236 | } 237 | }, 238 | { 239 | "type": "default", 240 | "wrapperColor": "msx-glass", 241 | "imageWidth": 2.5, 242 | "layout": "0,2,6,1", 243 | "offset": "0,-0.5,0,0.5", 244 | "enumerate": true, 245 | "color": "msx-glass", 246 | "titleHeader": "{col:msx-white}Eleventh Item", 247 | "titleFooter": "Fusce convallis sagittis tempus", 248 | "imageFiller": "cover", 249 | "image": "https://picsum.photos/seed/msx_d476b985_item10/360/192", 250 | "action": "image:https://picsum.photos/seed/msx_d476b985_item10/1920/1080", 251 | "properties": { 252 | "image:extension": "| {col:msx-white}Eleventh Item" 253 | } 254 | }, 255 | { 256 | "type": "default", 257 | "wrapperColor": "msx-glass", 258 | "imageWidth": 2.5, 259 | "layout": "6,2,6,1", 260 | "offset": "0,-0.5,0,0.5", 261 | "enumerate": true, 262 | "color": "msx-glass", 263 | "titleHeader": "{col:msx-white}Twelfth Item", 264 | "titleFooter": "Aliquam nulla orci", 265 | "imageFiller": "cover", 266 | "image": "https://picsum.photos/seed/msx_d476b985_item11/360/192", 267 | "action": "image:https://picsum.photos/seed/msx_d476b985_item11/1920/1080", 268 | "properties": { 269 | "image:extension": "| {col:msx-white}Twelfth Item" 270 | } 271 | }, 272 | { 273 | "type": "default", 274 | "wrapperColor": "msx-glass", 275 | "imageWidth": 2.5, 276 | "layout": "0,3,6,1", 277 | "offset": "0,0,0,0.5", 278 | "enumerate": true, 279 | "color": "msx-glass", 280 | "titleHeader": "{col:msx-white}13th Item", 281 | "titleFooter": "Aliquam nulla orci", 282 | "imageFiller": "cover", 283 | "image": "https://picsum.photos/seed/msx_d476b985_item12/360/192", 284 | "action": "image:https://picsum.photos/seed/msx_d476b985_item12/1920/1080", 285 | "properties": { 286 | "image:extension": "| {col:msx-white}13th Item" 287 | } 288 | }, 289 | { 290 | "type": "default", 291 | "wrapperColor": "msx-glass", 292 | "imageWidth": 2.5, 293 | "layout": "6,3,6,1", 294 | "offset": "0,0,0,0.5", 295 | "enumerate": true, 296 | "color": "msx-glass", 297 | "titleHeader": "{col:msx-white}14th Item", 298 | "titleFooter": "Fusce posuere sapien turpis", 299 | "imageFiller": "cover", 300 | "image": "https://picsum.photos/seed/msx_d476b985_item13/360/192", 301 | "action": "image:https://picsum.photos/seed/msx_d476b985_item13/1920/1080", 302 | "properties": { 303 | "image:extension": "| {col:msx-white}14th Item" 304 | } 305 | }, 306 | { 307 | "type": "default", 308 | "wrapperColor": "msx-glass", 309 | "imageWidth": 2.5, 310 | "layout": "0,5,6,1", 311 | "offset": "0,-0.5,0,0.5", 312 | "enumerate": true, 313 | "color": "msx-glass", 314 | "titleHeader": "{col:msx-white}15th Item", 315 | "titleFooter": "Quisque euismod urna a arcu", 316 | "imageFiller": "cover", 317 | "image": "https://picsum.photos/seed/msx_d476b985_item14/360/192", 318 | "action": "image:https://picsum.photos/seed/msx_d476b985_item14/1920/1080", 319 | "properties": { 320 | "image:extension": "| {col:msx-white}15th Item" 321 | } 322 | }, 323 | { 324 | "type": "default", 325 | "wrapperColor": "msx-glass", 326 | "imageWidth": 2.5, 327 | "layout": "6,5,6,1", 328 | "offset": "0,-0.5,0,0.5", 329 | "enumerate": true, 330 | "color": "msx-glass", 331 | "titleHeader": "{col:msx-white}16th Item", 332 | "titleFooter": "Aliquam nulla orci", 333 | "imageFiller": "cover", 334 | "image": "https://picsum.photos/seed/msx_d476b985_item15/360/192", 335 | "action": "image:https://picsum.photos/seed/msx_d476b985_item15/1920/1080", 336 | "properties": { 337 | "image:extension": "| {col:msx-white}16th Item" 338 | } 339 | } 340 | ] 341 | }, 342 | { 343 | "offset": "0,0,0,1", 344 | "headline": "Fourth Section", 345 | "items": [ 346 | { 347 | "type": "default", 348 | "wrapperColor": "msx-glass", 349 | "imageWidth": 2.5, 350 | "layout": "0,0,6,1", 351 | "offset": "0,0,0,0.5", 352 | "enumerate": true, 353 | "color": "msx-glass", 354 | "titleHeader": "{col:msx-white}17th Item", 355 | "titleFooter": "Fusce posuere sapien turpis", 356 | "imageFiller": "cover", 357 | "image": "https://picsum.photos/seed/msx_d476b985_item16/360/192", 358 | "action": "image:https://picsum.photos/seed/msx_d476b985_item16/1920/1080", 359 | "properties": { 360 | "image:extension": "| {col:msx-white}17th Item" 361 | } 362 | }, 363 | { 364 | "type": "default", 365 | "wrapperColor": "msx-glass", 366 | "imageWidth": 2.5, 367 | "layout": "6,0,6,1", 368 | "offset": "0,0,0,0.5", 369 | "enumerate": true, 370 | "color": "msx-glass", 371 | "titleHeader": "{col:msx-white}18th Item", 372 | "titleFooter": "Cras sapien tortor", 373 | "imageFiller": "cover", 374 | "image": "https://picsum.photos/seed/msx_d476b985_item17/360/192", 375 | "action": "image:https://picsum.photos/seed/msx_d476b985_item17/1920/1080", 376 | "properties": { 377 | "image:extension": "| {col:msx-white}18th Item" 378 | } 379 | }, 380 | { 381 | "type": "default", 382 | "wrapperColor": "msx-glass", 383 | "imageWidth": 2.5, 384 | "layout": "0,2,6,1", 385 | "offset": "0,-0.5,0,0.5", 386 | "enumerate": true, 387 | "color": "msx-glass", 388 | "titleHeader": "{col:msx-white}19th Item", 389 | "titleFooter": "Cras sapien tortor", 390 | "imageFiller": "cover", 391 | "image": "https://picsum.photos/seed/msx_d476b985_item18/360/192", 392 | "action": "image:https://picsum.photos/seed/msx_d476b985_item18/1920/1080", 393 | "properties": { 394 | "image:extension": "| {col:msx-white}19th Item" 395 | } 396 | }, 397 | { 398 | "type": "default", 399 | "wrapperColor": "msx-glass", 400 | "imageWidth": 2.5, 401 | "layout": "6,2,6,1", 402 | "offset": "0,-0.5,0,0.5", 403 | "enumerate": true, 404 | "color": "msx-glass", 405 | "titleHeader": "{col:msx-white}20th Item", 406 | "titleFooter": "Duis rutrum orci purus", 407 | "imageFiller": "cover", 408 | "image": "https://picsum.photos/seed/msx_d476b985_item19/360/192", 409 | "action": "image:https://picsum.photos/seed/msx_d476b985_item19/1920/1080", 410 | "properties": { 411 | "image:extension": "| {col:msx-white}20th Item" 412 | } 413 | }, 414 | { 415 | "type": "default", 416 | "wrapperColor": "msx-glass", 417 | "imageWidth": 2.5, 418 | "layout": "0,3,6,1", 419 | "offset": "0,0,0,0.5", 420 | "enumerate": true, 421 | "color": "msx-glass", 422 | "titleHeader": "{col:msx-white}21st Item", 423 | "titleFooter": "Quisque dolor ipsum", 424 | "imageFiller": "cover", 425 | "image": "https://picsum.photos/seed/msx_d476b985_item20/360/192", 426 | "action": "image:https://picsum.photos/seed/msx_d476b985_item20/1920/1080", 427 | "properties": { 428 | "image:extension": "| {col:msx-white}21st Item" 429 | } 430 | }, 431 | { 432 | "type": "default", 433 | "wrapperColor": "msx-glass", 434 | "imageWidth": 2.5, 435 | "layout": "6,3,6,1", 436 | "offset": "0,0,0,0.5", 437 | "enumerate": true, 438 | "color": "msx-glass", 439 | "titleHeader": "{col:msx-white}22nd Item", 440 | "titleFooter": "Sed et sem augue", 441 | "imageFiller": "cover", 442 | "image": "https://picsum.photos/seed/msx_d476b985_item21/360/192", 443 | "action": "image:https://picsum.photos/seed/msx_d476b985_item21/1920/1080", 444 | "properties": { 445 | "image:extension": "| {col:msx-white}22nd Item" 446 | } 447 | }, 448 | { 449 | "type": "default", 450 | "wrapperColor": "msx-glass", 451 | "imageWidth": 2.5, 452 | "layout": "0,5,6,1", 453 | "offset": "0,-0.5,0,0.5", 454 | "enumerate": true, 455 | "color": "msx-glass", 456 | "titleHeader": "{col:msx-white}23rd Item", 457 | "titleFooter": "Orci varius natoque penatibus et", 458 | "imageFiller": "cover", 459 | "image": "https://picsum.photos/seed/msx_d476b985_item22/360/192", 460 | "action": "image:https://picsum.photos/seed/msx_d476b985_item22/1920/1080", 461 | "properties": { 462 | "image:extension": "| {col:msx-white}23rd Item" 463 | } 464 | }, 465 | { 466 | "type": "default", 467 | "wrapperColor": "msx-glass", 468 | "imageWidth": 2.5, 469 | "layout": "6,5,6,1", 470 | "offset": "0,-0.5,0,0.5", 471 | "enumerate": true, 472 | "color": "msx-glass", 473 | "titleHeader": "{col:msx-white}24th Item", 474 | "titleFooter": "Cras sapien tortor", 475 | "imageFiller": "cover", 476 | "image": "https://picsum.photos/seed/msx_d476b985_item23/360/192", 477 | "action": "image:https://picsum.photos/seed/msx_d476b985_item23/1920/1080", 478 | "properties": { 479 | "image:extension": "| {col:msx-white}24th Item" 480 | } 481 | } 482 | ] 483 | }, 484 | { 485 | "offset": "0,0,0,1", 486 | "headline": "Fourth Section", 487 | "items": [ 488 | { 489 | "type": "default", 490 | "wrapperColor": "msx-glass", 491 | "imageWidth": 2.5, 492 | "layout": "0,0,6,1", 493 | "offset": "0,0,0,0.5", 494 | "enumerate": true, 495 | "color": "msx-glass", 496 | "titleHeader": "{col:msx-white}25th Item", 497 | "titleFooter": "Nullam", 498 | "imageFiller": "cover", 499 | "image": "https://picsum.photos/seed/msx_d476b985_item24/360/192", 500 | "action": "image:https://picsum.photos/seed/msx_d476b985_item24/1920/1080", 501 | "properties": { 502 | "image:extension": "| {col:msx-white}25th Item" 503 | } 504 | }, 505 | { 506 | "type": "default", 507 | "wrapperColor": "msx-glass", 508 | "imageWidth": 2.5, 509 | "layout": "6,0,6,1", 510 | "offset": "0,0,0,0.5", 511 | "enumerate": true, 512 | "color": "msx-glass", 513 | "titleHeader": "{col:msx-white}26th Item", 514 | "titleFooter": "Aliquam nulla orci", 515 | "imageFiller": "cover", 516 | "image": "https://picsum.photos/seed/msx_d476b985_item25/360/192", 517 | "action": "image:https://picsum.photos/seed/msx_d476b985_item25/1920/1080", 518 | "properties": { 519 | "image:extension": "| {col:msx-white}26th Item" 520 | } 521 | }, 522 | { 523 | "type": "default", 524 | "wrapperColor": "msx-glass", 525 | "imageWidth": 2.5, 526 | "layout": "0,2,6,1", 527 | "offset": "0,-0.5,0,0.5", 528 | "enumerate": true, 529 | "color": "msx-glass", 530 | "titleHeader": "{col:msx-white}27th Item", 531 | "titleFooter": "Duis rutrum orci purus", 532 | "imageFiller": "cover", 533 | "image": "https://picsum.photos/seed/msx_d476b985_item26/360/192", 534 | "action": "image:https://picsum.photos/seed/msx_d476b985_item26/1920/1080", 535 | "properties": { 536 | "image:extension": "| {col:msx-white}27th Item" 537 | } 538 | }, 539 | { 540 | "type": "default", 541 | "wrapperColor": "msx-glass", 542 | "imageWidth": 2.5, 543 | "layout": "6,2,6,1", 544 | "offset": "0,-0.5,0,0.5", 545 | "enumerate": true, 546 | "color": "msx-glass", 547 | "titleHeader": "{col:msx-white}28th Item", 548 | "titleFooter": "Quisque euismod urna a arcu", 549 | "imageFiller": "cover", 550 | "image": "https://picsum.photos/seed/msx_d476b985_item27/360/192", 551 | "action": "image:https://picsum.photos/seed/msx_d476b985_item27/1920/1080", 552 | "properties": { 553 | "image:extension": "| {col:msx-white}28th Item" 554 | } 555 | }, 556 | { 557 | "type": "default", 558 | "wrapperColor": "msx-glass", 559 | "imageWidth": 2.5, 560 | "layout": "0,3,6,1", 561 | "offset": "0,0,0,0.5", 562 | "enumerate": true, 563 | "color": "msx-glass", 564 | "titleHeader": "{col:msx-white}29th Item", 565 | "titleFooter": "Fusce posuere sapien turpis", 566 | "imageFiller": "cover", 567 | "image": "https://picsum.photos/seed/msx_d476b985_item28/360/192", 568 | "action": "image:https://picsum.photos/seed/msx_d476b985_item28/1920/1080", 569 | "properties": { 570 | "image:extension": "| {col:msx-white}29th Item" 571 | } 572 | }, 573 | { 574 | "type": "default", 575 | "wrapperColor": "msx-glass", 576 | "imageWidth": 2.5, 577 | "layout": "6,3,6,1", 578 | "offset": "0,0,0,0.5", 579 | "enumerate": true, 580 | "color": "msx-glass", 581 | "titleHeader": "{col:msx-white}30th Item", 582 | "titleFooter": "Quisque dolor ipsum", 583 | "imageFiller": "cover", 584 | "image": "https://picsum.photos/seed/msx_d476b985_item29/360/192", 585 | "action": "image:https://picsum.photos/seed/msx_d476b985_item29/1920/1080", 586 | "properties": { 587 | "image:extension": "| {col:msx-white}30th Item" 588 | } 589 | } 590 | ] 591 | }, 592 | { 593 | "important": true, 594 | "items": [ 595 | { 596 | "type": "space", 597 | "layout": "0,0,12,1", 598 | "offset": "0,0,0,-0.5", 599 | "headline": "Mauris tincidunt non mauris ut" 600 | }, 601 | { 602 | "type": "default", 603 | "layout": "0,1,6,3", 604 | "offset": "0,-0.5,0,-0.25", 605 | "color": "msx-glass", 606 | "image": "https://picsum.photos/seed/msx_d476b985_footer0/840/372", 607 | "imageFiller": "cover", 608 | "title": "Mauris tincidunt non mauris ut", 609 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 610 | "action": "[invalidate:content|reload:content]" 611 | }, 612 | { 613 | "type": "default", 614 | "layout": "6,1,6,3", 615 | "offset": "0,-0.5,0,-0.25", 616 | "color": "msx-glass", 617 | "image": "https://picsum.photos/seed/msx_d476b985_footer1/840/372", 618 | "imageFiller": "cover", 619 | "title": "Duis rutrum orci purus", 620 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 621 | "action": "[invalidate:content|reload:content]" 622 | }, 623 | { 624 | "type": "default", 625 | "layout": "0,4,6,2", 626 | "offset": "0,-0.75,0,0.75", 627 | "color": "msx-glass", 628 | "image": "https://picsum.photos/seed/msx_d476b985_footer2/840/372", 629 | "imageFiller": "cover", 630 | "title": "Vestibulum ex lectus", 631 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 632 | "action": "[invalidate:content|reload:content]" 633 | }, 634 | { 635 | "type": "default", 636 | "layout": "6,4,6,2", 637 | "offset": "0,-0.75,0,0.75", 638 | "color": "msx-glass", 639 | "image": "https://picsum.photos/seed/msx_d476b985_footer3/840/372", 640 | "imageFiller": "cover", 641 | "title": "Mauris tincidunt non mauris ut", 642 | "titleFooter": "Press {txt:msx-white:OK} to reload content", 643 | "action": "[invalidate:content|reload:content]" 644 | } 645 | ] 646 | } 647 | ] 648 | } --------------------------------------------------------------------------------