Last active
February 15, 2016 22:43
-
-
Save maxali/c6ee9e9caf74a459ca5d to your computer and use it in GitHub Desktop.
Content Aware, JSON Based Structure FrontPage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FrontPage Structure", | |
"fields": [ | |
"article", | |
"fosition", | |
"font", | |
"header", | |
"image" | |
], | |
"articles": [ | |
{ | |
"id": 1, | |
"position": { | |
"row": 3, | |
"column": 1, | |
"place": "full" | |
}, | |
"font": { | |
"line1": 12, | |
"line2": 25, | |
"blockColor": "#adadad", | |
"blockBackcolor": "#FFF" | |
}, | |
"header": { | |
"line1": "Article head1", | |
"line2": "Article head2" | |
}, | |
"img": { | |
"src": "image1.jpg", | |
"width": 512, | |
"height": 212 | |
} | |
}, | |
{ | |
"id": 2, | |
"position": { | |
"row": 3, | |
"column": 2, | |
"place": "up" | |
}, | |
"font": { | |
"line1": 12, | |
"line2": 25, | |
"blockColor": "#adadad", | |
"blockBackcolor": "#FFF" | |
}, | |
"header": { | |
"line1": "Article head1", | |
"line2": "Article head2" | |
}, | |
"img": { | |
"src": "image2.jpg", | |
"width": 214, | |
"height": 212 | |
} | |
}, | |
{ | |
"id": 3, | |
"position": { | |
"row": 3, | |
"column": 2, | |
"place": "down" | |
}, | |
"font": { | |
"line1": 12, | |
"line2": 25, | |
"blockColor": "#adadad", | |
"blockBackcolor": "#FFF" | |
}, | |
"header": { | |
"line1": "Article head1", | |
"line2": "Article head2" | |
}, | |
"img": { | |
"src": "image3.jpg", | |
"width": 214, | |
"height": 212 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment