database.json 577 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998
  1. [
  2. {
  3. "model": "website.formpagefield",
  4. "pk": 1,
  5. "fields": {
  6. "sort_order": 0,
  7. "label": "Name",
  8. "required": true,
  9. "choices": "",
  10. "default_value": "",
  11. "help_text": "",
  12. "field_type": "singleline",
  13. "page": 10
  14. }
  15. },
  16. {
  17. "model": "website.formpagefield",
  18. "pk": 2,
  19. "fields": {
  20. "sort_order": 1,
  21. "label": "Email",
  22. "required": true,
  23. "choices": "",
  24. "default_value": "",
  25. "help_text": "",
  26. "field_type": "email",
  27. "page": 10
  28. }
  29. },
  30. {
  31. "model": "website.formpagefield",
  32. "pk": 3,
  33. "fields": {
  34. "sort_order": 2,
  35. "label": "Number of Cupcakes",
  36. "required": true,
  37. "choices": "",
  38. "default_value": "",
  39. "help_text": "",
  40. "field_type": "number",
  41. "page": 10
  42. }
  43. },
  44. {
  45. "model": "website.formpagefield",
  46. "pk": 4,
  47. "fields": {
  48. "sort_order": 3,
  49. "label": "Cupcake Flavors",
  50. "required": true,
  51. "choices": "Chocolate,\r\nStrawberry,\r\nVanilla,\r\nBlueberry,\r\nWhite Raspberry",
  52. "default_value": "",
  53. "help_text": "Choose all the ones you want",
  54. "field_type": "multiselect",
  55. "page": 10
  56. }
  57. },
  58. {
  59. "model": "website.formpagefield",
  60. "pk": 5,
  61. "fields": {
  62. "sort_order": 4,
  63. "label": "Message",
  64. "required": true,
  65. "choices": "",
  66. "default_value": "",
  67. "help_text": "When do you need this order? Tell us more about it.",
  68. "field_type": "multiline",
  69. "page": 10
  70. }
  71. },
  72. {
  73. "model": "website.formpagefield",
  74. "pk": 6,
  75. "fields": {
  76. "sort_order": 0,
  77. "label": "Name",
  78. "required": true,
  79. "choices": "",
  80. "default_value": "",
  81. "help_text": "",
  82. "field_type": "singleline",
  83. "page": 11
  84. }
  85. },
  86. {
  87. "model": "website.formpagefield",
  88. "pk": 7,
  89. "fields": {
  90. "sort_order": 1,
  91. "label": "Email",
  92. "required": true,
  93. "choices": "",
  94. "default_value": "",
  95. "help_text": "",
  96. "field_type": "email",
  97. "page": 11
  98. }
  99. },
  100. {
  101. "model": "website.formpagefield",
  102. "pk": 8,
  103. "fields": {
  104. "sort_order": 2,
  105. "label": "Number of Cupcakes",
  106. "required": true,
  107. "choices": "",
  108. "default_value": "",
  109. "help_text": "",
  110. "field_type": "number",
  111. "page": 11
  112. }
  113. },
  114. {
  115. "model": "website.formpagefield",
  116. "pk": 9,
  117. "fields": {
  118. "sort_order": 3,
  119. "label": "Cupcake Flavors",
  120. "required": true,
  121. "choices": "Chocolate,\r\nStrawberry,\r\nVanilla,\r\nBlueberry,\r\nWhite Raspberry",
  122. "default_value": "",
  123. "help_text": "Choose all the ones you want",
  124. "field_type": "multiselect",
  125. "page": 11
  126. }
  127. },
  128. {
  129. "model": "website.formpagefield",
  130. "pk": 10,
  131. "fields": {
  132. "sort_order": 4,
  133. "label": "Message",
  134. "required": true,
  135. "choices": "",
  136. "default_value": "",
  137. "help_text": "When do you need this order? Tell us more about it.",
  138. "field_type": "multiline",
  139. "page": 11
  140. }
  141. },
  142. {
  143. "model": "website.formpagefield",
  144. "pk": 11,
  145. "fields": {
  146. "sort_order": 0,
  147. "label": "Name",
  148. "required": true,
  149. "choices": "",
  150. "default_value": "",
  151. "help_text": "",
  152. "field_type": "singleline",
  153. "page": 12
  154. }
  155. },
  156. {
  157. "model": "website.formpagefield",
  158. "pk": 12,
  159. "fields": {
  160. "sort_order": 1,
  161. "label": "Email",
  162. "required": true,
  163. "choices": "",
  164. "default_value": "",
  165. "help_text": "",
  166. "field_type": "email",
  167. "page": 12
  168. }
  169. },
  170. {
  171. "model": "website.formpagefield",
  172. "pk": 13,
  173. "fields": {
  174. "sort_order": 2,
  175. "label": "Number of Cupcakes",
  176. "required": true,
  177. "choices": "",
  178. "default_value": "",
  179. "help_text": "",
  180. "field_type": "number",
  181. "page": 12
  182. }
  183. },
  184. {
  185. "model": "website.formpagefield",
  186. "pk": 14,
  187. "fields": {
  188. "sort_order": 3,
  189. "label": "Cupcake Flavors",
  190. "required": true,
  191. "choices": "Chocolate,\r\nStrawberry,\r\nVanilla,\r\nBlueberry,\r\nWhite Raspberry",
  192. "default_value": "",
  193. "help_text": "Choose all the ones you want",
  194. "field_type": "multiselect",
  195. "page": 12
  196. }
  197. },
  198. {
  199. "model": "website.formpagefield",
  200. "pk": 15,
  201. "fields": {
  202. "sort_order": 4,
  203. "label": "Message",
  204. "required": true,
  205. "choices": "",
  206. "default_value": "",
  207. "help_text": "When do you need this order? Tell us more about it.",
  208. "field_type": "multiline",
  209. "page": 12
  210. }
  211. },
  212. {
  213. "model": "website.formconfirmemail",
  214. "pk": 1,
  215. "fields": {
  216. "to_address": "{{email}}",
  217. "from_address": "",
  218. "reply_address": "",
  219. "cc_address": "",
  220. "bcc_address": "",
  221. "subject": "Order Received!",
  222. "body": "Hello {{name}}, You ordered {{number_of_cupcakes}} and {{cupcake_flavors}}. Thank you for your order! We have received it and will contact you within 24 hours for more details and to arrange payment!",
  223. "page": 10
  224. }
  225. },
  226. {
  227. "model": "coderedcms.classifier",
  228. "pk": 1,
  229. "fields": {
  230. "slug": "baked-goods",
  231. "name": "Baked Goods"
  232. }
  233. },
  234. {
  235. "model": "coderedcms.classifier",
  236. "pk": 2,
  237. "fields": {
  238. "slug": "content-type",
  239. "name": "Content Type"
  240. }
  241. },
  242. {
  243. "model": "coderedcms.classifierterm",
  244. "pk": 1,
  245. "fields": {
  246. "sort_order": 0,
  247. "classifier": 1,
  248. "slug": "cupcakes",
  249. "name": "Cupcakes"
  250. }
  251. },
  252. {
  253. "model": "coderedcms.classifierterm",
  254. "pk": 2,
  255. "fields": {
  256. "sort_order": 1,
  257. "classifier": 1,
  258. "slug": "cookies",
  259. "name": "Cookies"
  260. }
  261. },
  262. {
  263. "model": "coderedcms.classifierterm",
  264. "pk": 3,
  265. "fields": {
  266. "sort_order": 2,
  267. "classifier": 1,
  268. "slug": "cinnamon-rolls",
  269. "name": "Cinnamon Rolls"
  270. }
  271. },
  272. {
  273. "model": "coderedcms.classifierterm",
  274. "pk": 4,
  275. "fields": {
  276. "sort_order": 0,
  277. "classifier": 2,
  278. "slug": "news",
  279. "name": "News"
  280. }
  281. },
  282. {
  283. "model": "coderedcms.classifierterm",
  284. "pk": 5,
  285. "fields": {
  286. "sort_order": 1,
  287. "classifier": 2,
  288. "slug": "interviews",
  289. "name": "Interviews"
  290. }
  291. },
  292. {
  293. "model": "coderedcms.classifierterm",
  294. "pk": 6,
  295. "fields": {
  296. "sort_order": 2,
  297. "classifier": 2,
  298. "slug": "recipes",
  299. "name": "Recipes"
  300. }
  301. },
  302. {
  303. "model": "coderedcms.navbar",
  304. "pk": 1,
  305. "fields": {
  306. "name": "Main Nav",
  307. "custom_css_class": "",
  308. "custom_id": "",
  309. "menu_items": "[{\"type\": \"page_link\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"display_text\": \"Our Baked Goods\", \"image\": null, \"page\": 23, \"sub_links\": [], \"show_child_links\": false}, \"id\": \"5242381c-6de9-439f-ad15-60036f83b4da\"}, {\"type\": \"page_link\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"display_text\": \"About Us\", \"image\": null, \"page\": 9, \"sub_links\": [], \"show_child_links\": false}, \"id\": \"c2b550b1-d5d1-4e98-97d3-aaf95ff52ca1\"}, {\"type\": \"page_link\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"display_text\": \"Blog\", \"image\": null, \"page\": 4, \"sub_links\": [], \"show_child_links\": false}, \"id\": \"13d9c623-c6a6-4805-adef-fd60a8682a9f\"}, {\"type\": \"page_link\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"display_text\": \"Contact Us\", \"image\": null, \"page\": 13, \"sub_links\": [], \"show_child_links\": false}, \"id\": \"5bdb39c7-3d0d-44ef-b978-28d94fa8e6c0\"}]"
  310. }
  311. },
  312. {
  313. "model": "coderedcms.footer",
  314. "pk": 1,
  315. "fields": {
  316. "name": "Main Footer",
  317. "custom_css_class": "bg-lightyellow py-5",
  318. "custom_id": "",
  319. "content": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"3\", \"content\": [{\"type\": \"image_link\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 3, \"doc_link\": null, \"other_link\": \"\", \"image\": 12, \"alt_text\": \"Simple Sweet Desserts\"}, \"id\": \"8a344ff6-c1b4-4a3e-9906-bbf08b2d259a\"}]}, \"id\": \"119860e5-d0a2-4775-8b8f-e90b3b469bba\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-links\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"3\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Our Menu</h2><p><a id=\\\"8\\\" linktype=\\\"page\\\">Mini Cupcakes</a></p><p><a id=\\\"15\\\" linktype=\\\"page\\\">Cupcakes</a></p><p><a id=\\\"19\\\" linktype=\\\"page\\\">Mini Cookies</a></p><p><a id=\\\"3\\\" linktype=\\\"page\\\">Cinnamon Rolls (Special)</a></p><p><a id=\\\"10\\\" linktype=\\\"page\\\">Custom Cakes and Cupcakes</a></p>\", \"id\": \"6fec16f6-7ddc-447b-bbf9-e233c18946da\"}]}, \"id\": \"6e06d979-a288-4004-a148-c69c46981fbe\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-links\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"3\", \"content\": [{\"type\": \"text\", \"value\": \"<h3><a id=\\\"23\\\" linktype=\\\"page\\\">Our Baked Goods</a></h3><h3><a id=\\\"9\\\" linktype=\\\"page\\\">About Us</a></h3><h3><a id=\\\"3\\\" linktype=\\\"page\\\">In The News</a></h3><h3><a id=\\\"3\\\" linktype=\\\"page\\\">Privacy Policy</a></h3>\", \"id\": \"3f5a2ae9-3954-4702-9df7-b6b0336e00ef\"}]}, \"id\": \"31b66be4-a5bf-4b68-a1e2-7fbff99cbb50\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-links\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"3\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Contact Us</h2><p>123 Bakery Way</p><p>Any Town, Any State, USA</p><p></p><p><b>PHONE:</b> <a href=\\\"tel:123-456-7890\\\"><b>123-456-7890</b></a></p><p></p>\", \"id\": \"acc2a521-51a8-4ffd-9e7d-329de086d457\"}]}, \"id\": \"7a109988-10d0-4b58-8224-e36d16209160\"}]}, \"id\": \"0aac6444-081b-4ed9-9fe2-38e024cf75d5\"}]"
  320. }
  321. },
  322. {
  323. "model": "taggit.tag",
  324. "pk": 1,
  325. "fields": {
  326. "name": "chocolate cupcake",
  327. "slug": "chocolate-cupcake"
  328. }
  329. },
  330. {
  331. "model": "taggit.taggeditem",
  332. "pk": 1,
  333. "fields": {
  334. "tag": 1,
  335. "content_type": [
  336. "wagtailimages",
  337. "image"
  338. ],
  339. "object_id": 13
  340. }
  341. },
  342. {
  343. "model": "wagtailforms.formsubmission",
  344. "pk": 1,
  345. "fields": {
  346. "form_data": "{\"name\": \"Roxanna\", \"email\": \"roxanna@coderedcorp.com\", \"number-of-cupcakes\": \"12\", \"cupcake-flavors\": [\"Chocolate\", \"Vanilla\"], \"message\": \"i am ordering cupcakes for myself\"}",
  347. "page": 10,
  348. "submit_time": "2020-09-09T13:31:21.084Z"
  349. }
  350. },
  351. {
  352. "model": "wagtailforms.formsubmission",
  353. "pk": 2,
  354. "fields": {
  355. "form_data": "{\"name\": \"Roxanna\", \"email\": \"roxanna@coderedcorp.com\", \"number-of-cupcakes\": \"2\", \"cupcake-flavors\": [\"Chocolate\", \"Blueberry\"], \"message\": \"Make these cupcakes as fancy as possible.\"}",
  356. "page": 10,
  357. "submit_time": "2020-09-23T13:26:09.862Z"
  358. }
  359. },
  360. {
  361. "model": "wagtailforms.formsubmission",
  362. "pk": 3,
  363. "fields": {
  364. "form_data": "{\"name\": \"Roxanna\", \"email\": \"roxanna@lovecupcakes.com\", \"number-of-cupcakes\": \"5\", \"cupcake-flavors\": [\"Chocolate\", \"Vanilla\"], \"message\": \"I want cupcakes with buttermilk frosting and sprinkles.\"}",
  365. "page": 10,
  366. "submit_time": "2020-09-23T14:30:26.116Z"
  367. }
  368. },
  369. {
  370. "model": "wagtailimages.rendition",
  371. "pk": 1,
  372. "fields": {
  373. "filter_spec": "max-165x165",
  374. "file": "images/SIMPLE_SWEET_DESSERTS.max-165x165.png",
  375. "width": 165,
  376. "height": 165,
  377. "focal_point_key": "",
  378. "image": 1
  379. }
  380. },
  381. {
  382. "model": "wagtailimages.rendition",
  383. "pk": 2,
  384. "fields": {
  385. "filter_spec": "max-165x165",
  386. "file": "images/cupcakae-favicon.max-165x165.png",
  387. "width": 165,
  388. "height": 163,
  389. "focal_point_key": "",
  390. "image": 2
  391. }
  392. },
  393. {
  394. "model": "wagtailimages.rendition",
  395. "pk": 3,
  396. "fields": {
  397. "filter_spec": "max-165x165",
  398. "file": "images/cupcake-red.max-165x165.png",
  399. "width": 165,
  400. "height": 165,
  401. "focal_point_key": "",
  402. "image": 3
  403. }
  404. },
  405. {
  406. "model": "wagtailimages.rendition",
  407. "pk": 4,
  408. "fields": {
  409. "filter_spec": "max-300x300",
  410. "file": "images/SIMPLE_SWEET_DESSERTS.max-300x300.png",
  411. "width": 300,
  412. "height": 300,
  413. "focal_point_key": "",
  414. "image": 1
  415. }
  416. },
  417. {
  418. "model": "wagtailimages.rendition",
  419. "pk": 5,
  420. "fields": {
  421. "filter_spec": "original",
  422. "file": "images/SIMPLE_SWEET_DESSERTS.original.png",
  423. "width": 500,
  424. "height": 500,
  425. "focal_point_key": "",
  426. "image": 1
  427. }
  428. },
  429. {
  430. "model": "wagtailimages.rendition",
  431. "pk": 6,
  432. "fields": {
  433. "filter_spec": "fill-120x120|format-png",
  434. "file": "images/cupcake-red.2e16d0ba.fill-120x120.format-png.png",
  435. "width": 120,
  436. "height": 120,
  437. "focal_point_key": "2e16d0ba",
  438. "image": 3
  439. }
  440. },
  441. {
  442. "model": "wagtailimages.rendition",
  443. "pk": 7,
  444. "fields": {
  445. "filter_spec": "fill-180x180|format-png",
  446. "file": "images/cupcake-red.2e16d0ba.fill-180x180.format-png.png",
  447. "width": 180,
  448. "height": 180,
  449. "focal_point_key": "2e16d0ba",
  450. "image": 3
  451. }
  452. },
  453. {
  454. "model": "wagtailimages.rendition",
  455. "pk": 8,
  456. "fields": {
  457. "filter_spec": "fill-152x152|format-png",
  458. "file": "images/cupcake-red.2e16d0ba.fill-152x152.format-png.png",
  459. "width": 152,
  460. "height": 152,
  461. "focal_point_key": "2e16d0ba",
  462. "image": 3
  463. }
  464. },
  465. {
  466. "model": "wagtailimages.rendition",
  467. "pk": 9,
  468. "fields": {
  469. "filter_spec": "fill-167x167|format-png",
  470. "file": "images/cupcake-red.2e16d0ba.fill-167x167.format-png.png",
  471. "width": 167,
  472. "height": 167,
  473. "focal_point_key": "2e16d0ba",
  474. "image": 3
  475. }
  476. },
  477. {
  478. "model": "wagtailimages.rendition",
  479. "pk": 10,
  480. "fields": {
  481. "filter_spec": "max-165x165",
  482. "file": "images/cupcake-4457880_1920.max-165x165.jpg",
  483. "width": 165,
  484. "height": 110,
  485. "focal_point_key": "",
  486. "image": 4
  487. }
  488. },
  489. {
  490. "model": "wagtailimages.rendition",
  491. "pk": 11,
  492. "fields": {
  493. "filter_spec": "max-2000x2000",
  494. "file": "images/cupcake-4457880_1920.max-2000x2000.jpg",
  495. "width": 1920,
  496. "height": 1281,
  497. "focal_point_key": "",
  498. "image": 4
  499. }
  500. },
  501. {
  502. "model": "wagtailimages.rendition",
  503. "pk": 12,
  504. "fields": {
  505. "filter_spec": "max-1000x1000",
  506. "file": "images/SIMPLE_SWEET_DESSERTS.max-1000x1000.png",
  507. "width": 500,
  508. "height": 500,
  509. "focal_point_key": "",
  510. "image": 1
  511. }
  512. },
  513. {
  514. "model": "wagtailimages.rendition",
  515. "pk": 13,
  516. "fields": {
  517. "filter_spec": "max-165x165",
  518. "file": "images/logo-small.max-165x165.png",
  519. "width": 100,
  520. "height": 100,
  521. "focal_point_key": "",
  522. "image": 5
  523. }
  524. },
  525. {
  526. "model": "wagtailimages.rendition",
  527. "pk": 14,
  528. "fields": {
  529. "filter_spec": "max-1000x1000",
  530. "file": "images/logo-small.max-1000x1000.png",
  531. "width": 100,
  532. "height": 100,
  533. "focal_point_key": "",
  534. "image": 5
  535. }
  536. },
  537. {
  538. "model": "wagtailimages.rendition",
  539. "pk": 15,
  540. "fields": {
  541. "filter_spec": "max-165x165",
  542. "file": "images/dessert-352475_1920.max-165x165.jpg",
  543. "width": 165,
  544. "height": 110,
  545. "focal_point_key": "",
  546. "image": 6
  547. }
  548. },
  549. {
  550. "model": "wagtailimages.rendition",
  551. "pk": 16,
  552. "fields": {
  553. "filter_spec": "max-2000x2000",
  554. "file": "images/dessert-352475_1920.max-2000x2000.jpg",
  555. "width": 1920,
  556. "height": 1280,
  557. "focal_point_key": "",
  558. "image": 6
  559. }
  560. },
  561. {
  562. "model": "wagtailimages.rendition",
  563. "pk": 17,
  564. "fields": {
  565. "filter_spec": "original",
  566. "file": "images/dessert-352475_1920.original.jpg",
  567. "width": 1920,
  568. "height": 1280,
  569. "focal_point_key": "",
  570. "image": 6
  571. }
  572. },
  573. {
  574. "model": "wagtailimages.rendition",
  575. "pk": 18,
  576. "fields": {
  577. "filter_spec": "max-800x600",
  578. "file": "images/dessert-352475_1920.max-800x600.jpg",
  579. "width": 800,
  580. "height": 533,
  581. "focal_point_key": "",
  582. "image": 6
  583. }
  584. },
  585. {
  586. "model": "wagtailimages.rendition",
  587. "pk": 19,
  588. "fields": {
  589. "filter_spec": "max-165x165",
  590. "file": "images/strawberry-dessert.max-165x165.jpg",
  591. "width": 165,
  592. "height": 59,
  593. "focal_point_key": "",
  594. "image": 7
  595. }
  596. },
  597. {
  598. "model": "wagtailimages.rendition",
  599. "pk": 20,
  600. "fields": {
  601. "filter_spec": "max-2000x2000",
  602. "file": "images/strawberry-dessert.max-2000x2000.jpg",
  603. "width": 1884,
  604. "height": 680,
  605. "focal_point_key": "",
  606. "image": 7
  607. }
  608. },
  609. {
  610. "model": "wagtailimages.rendition",
  611. "pk": 21,
  612. "fields": {
  613. "filter_spec": "original",
  614. "file": "images/cupcake-4457880_1920.original.jpg",
  615. "width": 1920,
  616. "height": 1281,
  617. "focal_point_key": "",
  618. "image": 4
  619. }
  620. },
  621. {
  622. "model": "wagtailimages.rendition",
  623. "pk": 22,
  624. "fields": {
  625. "filter_spec": "fill-2000x1000",
  626. "file": "images/cupcake-4457880_1920.2e16d0ba.fill-2000x1000.jpg",
  627. "width": 1920,
  628. "height": 961,
  629. "focal_point_key": "2e16d0ba",
  630. "image": 4
  631. }
  632. },
  633. {
  634. "model": "wagtailimages.rendition",
  635. "pk": 23,
  636. "fields": {
  637. "filter_spec": "fill-10000x10000",
  638. "file": "images/cupcake-4457880_1920.2e16d0ba.fill-10000x10000.jpg",
  639. "width": 1282,
  640. "height": 1281,
  641. "focal_point_key": "2e16d0ba",
  642. "image": 4
  643. }
  644. },
  645. {
  646. "model": "wagtailimages.rendition",
  647. "pk": 24,
  648. "fields": {
  649. "filter_spec": "fill-40000x30000",
  650. "file": "images/cupcake-4457880_1920.2e16d0ba.fill-40000x30000.jpg",
  651. "width": 1708,
  652. "height": 1281,
  653. "focal_point_key": "2e16d0ba",
  654. "image": 4
  655. }
  656. },
  657. {
  658. "model": "wagtailimages.rendition",
  659. "pk": 25,
  660. "fields": {
  661. "filter_spec": "fill-16000x9000",
  662. "file": "images/cupcake-4457880_1920.2e16d0ba.fill-16000x9000.jpg",
  663. "width": 1920,
  664. "height": 1081,
  665. "focal_point_key": "2e16d0ba",
  666. "image": 4
  667. }
  668. },
  669. {
  670. "model": "wagtailimages.rendition",
  671. "pk": 26,
  672. "fields": {
  673. "filter_spec": "max-165x165",
  674. "file": "images/cupcake-berries.max-165x165.jpg",
  675. "width": 165,
  676. "height": 75,
  677. "focal_point_key": "",
  678. "image": 8
  679. }
  680. },
  681. {
  682. "model": "wagtailimages.rendition",
  683. "pk": 27,
  684. "fields": {
  685. "filter_spec": "original",
  686. "file": "images/cupcake-berries.original.jpg",
  687. "width": 1918,
  688. "height": 874,
  689. "focal_point_key": "",
  690. "image": 8
  691. }
  692. },
  693. {
  694. "model": "wagtailimages.rendition",
  695. "pk": 28,
  696. "fields": {
  697. "filter_spec": "fill-2000x1000",
  698. "file": "images/cupcake-berries.2e16d0ba.fill-2000x1000.jpg",
  699. "width": 1748,
  700. "height": 874,
  701. "focal_point_key": "2e16d0ba",
  702. "image": 8
  703. }
  704. },
  705. {
  706. "model": "wagtailimages.rendition",
  707. "pk": 29,
  708. "fields": {
  709. "filter_spec": "fill-1000x500",
  710. "file": "images/cupcake-4457880_1920.2e16d0ba.fill-1000x500.jpg",
  711. "width": 1000,
  712. "height": 500,
  713. "focal_point_key": "2e16d0ba",
  714. "image": 4
  715. }
  716. },
  717. {
  718. "model": "wagtailimages.rendition",
  719. "pk": 30,
  720. "fields": {
  721. "filter_spec": "fill-1000x500",
  722. "file": "images/cupcake-berries.2e16d0ba.fill-1000x500.jpg",
  723. "width": 1000,
  724. "height": 500,
  725. "focal_point_key": "2e16d0ba",
  726. "image": 8
  727. }
  728. },
  729. {
  730. "model": "wagtailimages.rendition",
  731. "pk": 31,
  732. "fields": {
  733. "filter_spec": "fill-1000x500",
  734. "file": "images/strawberry-dessert.2e16d0ba.fill-1000x500.jpg",
  735. "width": 1000,
  736. "height": 500,
  737. "focal_point_key": "2e16d0ba",
  738. "image": 7
  739. }
  740. },
  741. {
  742. "model": "wagtailimages.rendition",
  743. "pk": 32,
  744. "fields": {
  745. "filter_spec": "max-165x165",
  746. "file": "images/cupcake-1388972_1920.max-165x165.jpg",
  747. "width": 165,
  748. "height": 112,
  749. "focal_point_key": "",
  750. "image": 9
  751. }
  752. },
  753. {
  754. "model": "wagtailimages.rendition",
  755. "pk": 33,
  756. "fields": {
  757. "filter_spec": "max-165x165",
  758. "file": "images/cupcake-1498603_1920.max-165x165.jpg",
  759. "width": 109,
  760. "height": 165,
  761. "focal_point_key": "",
  762. "image": 10
  763. }
  764. },
  765. {
  766. "model": "wagtailimages.rendition",
  767. "pk": 34,
  768. "fields": {
  769. "filter_spec": "original",
  770. "file": "images/cupcake-1388972_1920.original.jpg",
  771. "width": 1920,
  772. "height": 1311,
  773. "focal_point_key": "",
  774. "image": 9
  775. }
  776. },
  777. {
  778. "model": "wagtailimages.rendition",
  779. "pk": 35,
  780. "fields": {
  781. "filter_spec": "fill-2000x1000",
  782. "file": "images/cupcake-1388972_1920.2e16d0ba.fill-2000x1000.jpg",
  783. "width": 1920,
  784. "height": 961,
  785. "focal_point_key": "2e16d0ba",
  786. "image": 9
  787. }
  788. },
  789. {
  790. "model": "wagtailimages.rendition",
  791. "pk": 36,
  792. "fields": {
  793. "filter_spec": "max-1000x1000",
  794. "file": "images/cupcake-1498603_1920.max-1000x1000.jpg",
  795. "width": 666,
  796. "height": 1000,
  797. "focal_point_key": "",
  798. "image": 10
  799. }
  800. },
  801. {
  802. "model": "wagtailimages.rendition",
  803. "pk": 37,
  804. "fields": {
  805. "filter_spec": "max-1000x1000",
  806. "file": "images/cupcake-4457880_1920.max-1000x1000.jpg",
  807. "width": 1000,
  808. "height": 667,
  809. "focal_point_key": "",
  810. "image": 4
  811. }
  812. },
  813. {
  814. "model": "wagtailimages.rendition",
  815. "pk": 38,
  816. "fields": {
  817. "filter_spec": "original",
  818. "file": "images/cupcake-1498603_1920.original.jpg",
  819. "width": 1279,
  820. "height": 1920,
  821. "focal_point_key": "",
  822. "image": 10
  823. }
  824. },
  825. {
  826. "model": "wagtailimages.rendition",
  827. "pk": 39,
  828. "fields": {
  829. "filter_spec": "fill-2000x1000",
  830. "file": "images/cupcake-1498603_1920.2e16d0ba.fill-2000x1000.jpg",
  831. "width": 1279,
  832. "height": 640,
  833. "focal_point_key": "2e16d0ba",
  834. "image": 10
  835. }
  836. },
  837. {
  838. "model": "wagtailimages.rendition",
  839. "pk": 40,
  840. "fields": {
  841. "filter_spec": "max-800x600",
  842. "file": "images/cupcake-berries.max-800x600.jpg",
  843. "width": 800,
  844. "height": 364,
  845. "focal_point_key": "",
  846. "image": 8
  847. }
  848. },
  849. {
  850. "model": "wagtailimages.rendition",
  851. "pk": 41,
  852. "fields": {
  853. "filter_spec": "max-165x165",
  854. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW.max-165x165.png",
  855. "width": 165,
  856. "height": 165,
  857. "focal_point_key": "",
  858. "image": 11
  859. }
  860. },
  861. {
  862. "model": "wagtailimages.rendition",
  863. "pk": 42,
  864. "fields": {
  865. "filter_spec": "max-300x300",
  866. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW.max-300x300.png",
  867. "width": 300,
  868. "height": 300,
  869. "focal_point_key": "",
  870. "image": 11
  871. }
  872. },
  873. {
  874. "model": "wagtailimages.rendition",
  875. "pk": 43,
  876. "fields": {
  877. "filter_spec": "original",
  878. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW.original.png",
  879. "width": 500,
  880. "height": 500,
  881. "focal_point_key": "",
  882. "image": 11
  883. }
  884. },
  885. {
  886. "model": "wagtailimages.rendition",
  887. "pk": 44,
  888. "fields": {
  889. "filter_spec": "max-165x165",
  890. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW1.max-165x165.png",
  891. "width": 165,
  892. "height": 165,
  893. "focal_point_key": "",
  894. "image": 12
  895. }
  896. },
  897. {
  898. "model": "wagtailimages.rendition",
  899. "pk": 45,
  900. "fields": {
  901. "filter_spec": "max-300x300",
  902. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW1.max-300x300.png",
  903. "width": 300,
  904. "height": 300,
  905. "focal_point_key": "",
  906. "image": 12
  907. }
  908. },
  909. {
  910. "model": "wagtailimages.rendition",
  911. "pk": 46,
  912. "fields": {
  913. "filter_spec": "original",
  914. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW1.original.png",
  915. "width": 500,
  916. "height": 500,
  917. "focal_point_key": "",
  918. "image": 12
  919. }
  920. },
  921. {
  922. "model": "wagtailimages.rendition",
  923. "pk": 47,
  924. "fields": {
  925. "filter_spec": "max-1000x1000",
  926. "file": "images/SIMPLE_SWEET_DESSERTS-YELLOW1.max-1000x1000.png",
  927. "width": 500,
  928. "height": 500,
  929. "focal_point_key": "",
  930. "image": 12
  931. }
  932. },
  933. {
  934. "model": "wagtailimages.rendition",
  935. "pk": 48,
  936. "fields": {
  937. "filter_spec": "max-165x165",
  938. "file": "images/muffin-3607780_640.max-165x165.jpg",
  939. "width": 165,
  940. "height": 109,
  941. "focal_point_key": "",
  942. "image": 13
  943. }
  944. },
  945. {
  946. "model": "wagtailimages.rendition",
  947. "pk": 49,
  948. "fields": {
  949. "filter_spec": "original",
  950. "file": "images/cupcake-red.original.png",
  951. "width": 200,
  952. "height": 200,
  953. "focal_point_key": "",
  954. "image": 3
  955. }
  956. },
  957. {
  958. "model": "wagtailimages.rendition",
  959. "pk": 50,
  960. "fields": {
  961. "filter_spec": "fill-500x500",
  962. "file": "images/muffin-3607780_640.2e16d0ba.fill-500x500.jpg",
  963. "width": 426,
  964. "height": 426,
  965. "focal_point_key": "2e16d0ba",
  966. "image": 13
  967. }
  968. },
  969. {
  970. "model": "wagtailimages.rendition",
  971. "pk": 51,
  972. "fields": {
  973. "filter_spec": "fill-300x300",
  974. "file": "images/muffin-3607780_640.2e16d0ba.fill-300x300.jpg",
  975. "width": 300,
  976. "height": 300,
  977. "focal_point_key": "2e16d0ba",
  978. "image": 13
  979. }
  980. },
  981. {
  982. "model": "wagtailimages.rendition",
  983. "pk": 52,
  984. "fields": {
  985. "filter_spec": "max-165x165",
  986. "file": "images/cupcakes-5441972_640.max-165x165.jpg",
  987. "width": 165,
  988. "height": 111,
  989. "focal_point_key": "",
  990. "image": 14
  991. }
  992. },
  993. {
  994. "model": "wagtailimages.rendition",
  995. "pk": 53,
  996. "fields": {
  997. "filter_spec": "fill-300x300",
  998. "file": "images/cupcakes-5441972_640.2e16d0ba.fill-300x300.jpg",
  999. "width": 300,
  1000. "height": 300,
  1001. "focal_point_key": "2e16d0ba",
  1002. "image": 14
  1003. }
  1004. },
  1005. {
  1006. "model": "wagtailimages.rendition",
  1007. "pk": 54,
  1008. "fields": {
  1009. "filter_spec": "max-165x165",
  1010. "file": "images/cupcakes-2250367_640.max-165x165.jpg",
  1011. "width": 165,
  1012. "height": 123,
  1013. "focal_point_key": "",
  1014. "image": 15
  1015. }
  1016. },
  1017. {
  1018. "model": "wagtailimages.rendition",
  1019. "pk": 55,
  1020. "fields": {
  1021. "filter_spec": "fill-300x300",
  1022. "file": "images/cupcakes-2250367_640.2e16d0ba.fill-300x300.jpg",
  1023. "width": 300,
  1024. "height": 300,
  1025. "focal_point_key": "2e16d0ba",
  1026. "image": 15
  1027. }
  1028. },
  1029. {
  1030. "model": "wagtailimages.rendition",
  1031. "pk": 56,
  1032. "fields": {
  1033. "filter_spec": "max-165x165",
  1034. "file": "images/cookies-banner.max-165x165.jpg",
  1035. "width": 165,
  1036. "height": 70,
  1037. "focal_point_key": "",
  1038. "image": 16
  1039. }
  1040. },
  1041. {
  1042. "model": "wagtailimages.rendition",
  1043. "pk": 57,
  1044. "fields": {
  1045. "filter_spec": "original",
  1046. "file": "images/cookies-banner.original.jpg",
  1047. "width": 1280,
  1048. "height": 547,
  1049. "focal_point_key": "",
  1050. "image": 16
  1051. }
  1052. },
  1053. {
  1054. "model": "wagtailimages.rendition",
  1055. "pk": 58,
  1056. "fields": {
  1057. "filter_spec": "fill-2000x1000",
  1058. "file": "images/cookies-banner.2e16d0ba.fill-2000x1000.jpg",
  1059. "width": 1094,
  1060. "height": 547,
  1061. "focal_point_key": "2e16d0ba",
  1062. "image": 16
  1063. }
  1064. },
  1065. {
  1066. "model": "wagtailimages.rendition",
  1067. "pk": 59,
  1068. "fields": {
  1069. "filter_spec": "max-165x165",
  1070. "file": "images/chocolate-chip-cookies-940428_640.max-165x165.jpg",
  1071. "width": 165,
  1072. "height": 131,
  1073. "focal_point_key": "",
  1074. "image": 17
  1075. }
  1076. },
  1077. {
  1078. "model": "wagtailimages.rendition",
  1079. "pk": 60,
  1080. "fields": {
  1081. "filter_spec": "fill-300x300",
  1082. "file": "images/chocolate-chip-cookies-940428_640.2e16d0ba.fill-300x300.jpg",
  1083. "width": 300,
  1084. "height": 300,
  1085. "focal_point_key": "2e16d0ba",
  1086. "image": 17
  1087. }
  1088. },
  1089. {
  1090. "model": "wagtailimages.rendition",
  1091. "pk": 61,
  1092. "fields": {
  1093. "filter_spec": "max-165x165",
  1094. "file": "images/oatmeal-raisin-cookies-1511599_640.max-165x165.jpg",
  1095. "width": 165,
  1096. "height": 91,
  1097. "focal_point_key": "",
  1098. "image": 18
  1099. }
  1100. },
  1101. {
  1102. "model": "wagtailimages.rendition",
  1103. "pk": 62,
  1104. "fields": {
  1105. "filter_spec": "fill-300x300",
  1106. "file": "images/oatmeal-raisin-cookies-1511599_640.2e16d0ba.fill-300x300.jpg",
  1107. "width": 300,
  1108. "height": 300,
  1109. "focal_point_key": "2e16d0ba",
  1110. "image": 18
  1111. }
  1112. },
  1113. {
  1114. "model": "wagtailimages.rendition",
  1115. "pk": 63,
  1116. "fields": {
  1117. "filter_spec": "max-165x165",
  1118. "file": "images/stained-glass-cookie.max-165x165.jpg",
  1119. "width": 165,
  1120. "height": 109,
  1121. "focal_point_key": "",
  1122. "image": 19
  1123. }
  1124. },
  1125. {
  1126. "model": "wagtailimages.rendition",
  1127. "pk": 64,
  1128. "fields": {
  1129. "filter_spec": "fill-300x300",
  1130. "file": "images/stained-glass-cookie.2e16d0ba.fill-300x300.jpg",
  1131. "width": 300,
  1132. "height": 300,
  1133. "focal_point_key": "2e16d0ba",
  1134. "image": 19
  1135. }
  1136. },
  1137. {
  1138. "model": "wagtailcore.site",
  1139. "fields": {
  1140. "hostname": "localhost",
  1141. "port": 80,
  1142. "site_name": "Simple Sweet Desserts",
  1143. "root_page": 3,
  1144. "is_default_site": true
  1145. }
  1146. },
  1147. {
  1148. "model": "wagtailcore.collection",
  1149. "pk": 1,
  1150. "fields": {
  1151. "path": "0001",
  1152. "depth": 1,
  1153. "numchild": 0,
  1154. "name": "Root"
  1155. }
  1156. },
  1157. {
  1158. "model": "auth.group",
  1159. "fields": {
  1160. "name": "Moderators",
  1161. "permissions": [
  1162. [
  1163. "access_admin",
  1164. "wagtailadmin",
  1165. "admin"
  1166. ],
  1167. [
  1168. "add_document",
  1169. "wagtaildocs",
  1170. "document"
  1171. ],
  1172. [
  1173. "change_document",
  1174. "wagtaildocs",
  1175. "document"
  1176. ],
  1177. [
  1178. "delete_document",
  1179. "wagtaildocs",
  1180. "document"
  1181. ],
  1182. [
  1183. "add_image",
  1184. "wagtailimages",
  1185. "image"
  1186. ],
  1187. [
  1188. "change_image",
  1189. "wagtailimages",
  1190. "image"
  1191. ],
  1192. [
  1193. "delete_image",
  1194. "wagtailimages",
  1195. "image"
  1196. ]
  1197. ]
  1198. }
  1199. },
  1200. {
  1201. "model": "auth.group",
  1202. "fields": {
  1203. "name": "Editors",
  1204. "permissions": [
  1205. [
  1206. "access_admin",
  1207. "wagtailadmin",
  1208. "admin"
  1209. ],
  1210. [
  1211. "add_document",
  1212. "wagtaildocs",
  1213. "document"
  1214. ],
  1215. [
  1216. "change_document",
  1217. "wagtaildocs",
  1218. "document"
  1219. ],
  1220. [
  1221. "delete_document",
  1222. "wagtaildocs",
  1223. "document"
  1224. ],
  1225. [
  1226. "add_image",
  1227. "wagtailimages",
  1228. "image"
  1229. ],
  1230. [
  1231. "change_image",
  1232. "wagtailimages",
  1233. "image"
  1234. ],
  1235. [
  1236. "delete_image",
  1237. "wagtailimages",
  1238. "image"
  1239. ]
  1240. ]
  1241. }
  1242. },
  1243. {
  1244. "model": "auth.user",
  1245. "fields": {
  1246. "password": "pbkdf2_sha256$180000$87rabrJ2f5zE$UjCFNu87gbsNVjeW8JC4aapj4c9UgVjS6fIa8u35XnM=",
  1247. "last_login": "2020-09-28T11:02:45.981Z",
  1248. "is_superuser": true,
  1249. "username": "admin",
  1250. "first_name": "",
  1251. "last_name": "",
  1252. "email": "roxanna@coderedcorp.com",
  1253. "is_staff": true,
  1254. "is_active": true,
  1255. "date_joined": "2020-09-02T17:50:58.888Z",
  1256. "groups": [],
  1257. "user_permissions": []
  1258. }
  1259. },
  1260. {
  1261. "model": "sessions.session",
  1262. "pk": "km6mmfs4s1lgkqd5sqm5ux3qx0p948j2",
  1263. "fields": {
  1264. "session_data": "NDNmOGIwYTQ3MjAyNzEwOGI0NDQyNGUxYjZmMmM3MGY1OTU0YWIyMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI0ZjFlMzVlMWM1ZDE3NzU0MDEzM2MxN2FiNTAxMjJjNzEwZmJlMTI0In0=",
  1265. "expire_date": "2020-10-07T13:20:05.895Z"
  1266. }
  1267. },
  1268. {
  1269. "model": "sessions.session",
  1270. "pk": "vyydrcb1t6aypdjzfggubufq8rwhyxt7",
  1271. "fields": {
  1272. "session_data": "NDNmOGIwYTQ3MjAyNzEwOGI0NDQyNGUxYjZmMmM3MGY1OTU0YWIyMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI0ZjFlMzVlMWM1ZDE3NzU0MDEzM2MxN2FiNTAxMjJjNzEwZmJlMTI0In0=",
  1273. "expire_date": "2020-10-12T11:02:46.050Z"
  1274. }
  1275. },
  1276. {
  1277. "model": "sessions.session",
  1278. "pk": "yg87he0npizdrgqlcdwqrd2dvidkeflt",
  1279. "fields": {
  1280. "session_data": "NDNmOGIwYTQ3MjAyNzEwOGI0NDQyNGUxYjZmMmM3MGY1OTU0YWIyMjp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI0ZjFlMzVlMWM1ZDE3NzU0MDEzM2MxN2FiNTAxMjJjNzEwZmJlMTI0In0=",
  1281. "expire_date": "2020-09-16T17:54:14.428Z"
  1282. }
  1283. },
  1284. {
  1285. "model": "wagtailcore.groupcollectionpermission",
  1286. "pk": 1,
  1287. "fields": {
  1288. "group": [
  1289. "Editors"
  1290. ],
  1291. "collection": 1,
  1292. "permission": [
  1293. "add_image",
  1294. "wagtailimages",
  1295. "image"
  1296. ]
  1297. }
  1298. },
  1299. {
  1300. "model": "wagtailcore.groupcollectionpermission",
  1301. "pk": 2,
  1302. "fields": {
  1303. "group": [
  1304. "Moderators"
  1305. ],
  1306. "collection": 1,
  1307. "permission": [
  1308. "add_image",
  1309. "wagtailimages",
  1310. "image"
  1311. ]
  1312. }
  1313. },
  1314. {
  1315. "model": "wagtailcore.groupcollectionpermission",
  1316. "pk": 3,
  1317. "fields": {
  1318. "group": [
  1319. "Editors"
  1320. ],
  1321. "collection": 1,
  1322. "permission": [
  1323. "change_image",
  1324. "wagtailimages",
  1325. "image"
  1326. ]
  1327. }
  1328. },
  1329. {
  1330. "model": "wagtailcore.groupcollectionpermission",
  1331. "pk": 4,
  1332. "fields": {
  1333. "group": [
  1334. "Moderators"
  1335. ],
  1336. "collection": 1,
  1337. "permission": [
  1338. "change_image",
  1339. "wagtailimages",
  1340. "image"
  1341. ]
  1342. }
  1343. },
  1344. {
  1345. "model": "wagtailcore.groupcollectionpermission",
  1346. "pk": 5,
  1347. "fields": {
  1348. "group": [
  1349. "Editors"
  1350. ],
  1351. "collection": 1,
  1352. "permission": [
  1353. "add_document",
  1354. "wagtaildocs",
  1355. "document"
  1356. ]
  1357. }
  1358. },
  1359. {
  1360. "model": "wagtailcore.groupcollectionpermission",
  1361. "pk": 6,
  1362. "fields": {
  1363. "group": [
  1364. "Moderators"
  1365. ],
  1366. "collection": 1,
  1367. "permission": [
  1368. "add_document",
  1369. "wagtaildocs",
  1370. "document"
  1371. ]
  1372. }
  1373. },
  1374. {
  1375. "model": "wagtailcore.groupcollectionpermission",
  1376. "pk": 7,
  1377. "fields": {
  1378. "group": [
  1379. "Editors"
  1380. ],
  1381. "collection": 1,
  1382. "permission": [
  1383. "change_document",
  1384. "wagtaildocs",
  1385. "document"
  1386. ]
  1387. }
  1388. },
  1389. {
  1390. "model": "wagtailcore.groupcollectionpermission",
  1391. "pk": 8,
  1392. "fields": {
  1393. "group": [
  1394. "Moderators"
  1395. ],
  1396. "collection": 1,
  1397. "permission": [
  1398. "change_document",
  1399. "wagtaildocs",
  1400. "document"
  1401. ]
  1402. }
  1403. },
  1404. {
  1405. "model": "wagtailcore.pageviewrestriction",
  1406. "pk": 1,
  1407. "fields": {
  1408. "restriction_type": "password",
  1409. "password": "passwordhere",
  1410. "page": 14,
  1411. "groups": []
  1412. }
  1413. },
  1414. {
  1415. "model": "wagtailcore.grouppagepermission",
  1416. "pk": 1,
  1417. "fields": {
  1418. "group": [
  1419. "Moderators"
  1420. ],
  1421. "page": 1,
  1422. "permission_type": "add"
  1423. }
  1424. },
  1425. {
  1426. "model": "wagtailcore.grouppagepermission",
  1427. "pk": 2,
  1428. "fields": {
  1429. "group": [
  1430. "Moderators"
  1431. ],
  1432. "page": 1,
  1433. "permission_type": "edit"
  1434. }
  1435. },
  1436. {
  1437. "model": "wagtailcore.grouppagepermission",
  1438. "pk": 3,
  1439. "fields": {
  1440. "group": [
  1441. "Moderators"
  1442. ],
  1443. "page": 1,
  1444. "permission_type": "publish"
  1445. }
  1446. },
  1447. {
  1448. "model": "wagtailcore.grouppagepermission",
  1449. "pk": 4,
  1450. "fields": {
  1451. "group": [
  1452. "Editors"
  1453. ],
  1454. "page": 1,
  1455. "permission_type": "add"
  1456. }
  1457. },
  1458. {
  1459. "model": "wagtailcore.grouppagepermission",
  1460. "pk": 5,
  1461. "fields": {
  1462. "group": [
  1463. "Editors"
  1464. ],
  1465. "page": 1,
  1466. "permission_type": "edit"
  1467. }
  1468. },
  1469. {
  1470. "model": "wagtailcore.grouppagepermission",
  1471. "pk": 6,
  1472. "fields": {
  1473. "group": [
  1474. "Moderators"
  1475. ],
  1476. "page": 1,
  1477. "permission_type": "lock"
  1478. }
  1479. },
  1480. {
  1481. "model": "wagtailcore.grouppagepermission",
  1482. "pk": 7,
  1483. "fields": {
  1484. "group": [
  1485. "Moderators"
  1486. ],
  1487. "page": 1,
  1488. "permission_type": "unlock"
  1489. }
  1490. },
  1491. {
  1492. "model": "wagtailcore.pagerevision",
  1493. "pk": 1,
  1494. "fields": {
  1495. "page": 3,
  1496. "submitted_for_moderation": false,
  1497. "created_at": "2020-09-02T19:06:49.090Z",
  1498. "user": [
  1499. "admin"
  1500. ],
  1501. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1502. "approved_go_live_at": null
  1503. }
  1504. },
  1505. {
  1506. "model": "wagtailcore.pagerevision",
  1507. "pk": 2,
  1508. "fields": {
  1509. "page": 3,
  1510. "submitted_for_moderation": false,
  1511. "created_at": "2020-09-02T19:28:36.065Z",
  1512. "user": [
  1513. "admin"
  1514. ],
  1515. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:06:49.128Z\", \"latest_revision_created_at\": \"2020-09-02T19:06:49.090Z\", \"live_revision\": 1, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"c2f5cb86-3381-43af-89de-ada143920c2a\\\"}]}, \\\"id\\\": \\\"8f3cf200-54ec-4f98-a9c9-96caf93f75d7\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"1e990d12-3e9a-4c84-b215-de04c898f6a1\\\"}]}, \\\"id\\\": \\\"fcaa57c9-0b30-4202-918e-cfb4f024659d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"ff521162-4ffb-493e-8552-7922ec3fa8a4\\\"}]}, \\\"id\\\": \\\"073ac11e-f62e-4ba4-97f3-552c7040145e\\\"}]}, \\\"id\\\": \\\"4783387b-4a20-4123-b350-f1fa08d839cd\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1516. "approved_go_live_at": null
  1517. }
  1518. },
  1519. {
  1520. "model": "wagtailcore.pagerevision",
  1521. "pk": 3,
  1522. "fields": {
  1523. "page": 3,
  1524. "submitted_for_moderation": false,
  1525. "created_at": "2020-09-02T19:32:29.807Z",
  1526. "user": [
  1527. "admin"
  1528. ],
  1529. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:28:36.109Z\", \"latest_revision_created_at\": \"2020-09-02T19:28:36.065Z\", \"live_revision\": 2, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1530. "approved_go_live_at": null
  1531. }
  1532. },
  1533. {
  1534. "model": "wagtailcore.pagerevision",
  1535. "pk": 4,
  1536. "fields": {
  1537. "page": 3,
  1538. "submitted_for_moderation": false,
  1539. "created_at": "2020-09-02T19:47:32.919Z",
  1540. "user": [
  1541. "admin"
  1542. ],
  1543. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:32:30.202Z\", \"latest_revision_created_at\": \"2020-09-02T19:32:29.807Z\", \"live_revision\": 3, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1544. "approved_go_live_at": null
  1545. }
  1546. },
  1547. {
  1548. "model": "wagtailcore.pagerevision",
  1549. "pk": 5,
  1550. "fields": {
  1551. "page": 3,
  1552. "submitted_for_moderation": false,
  1553. "created_at": "2020-09-02T19:52:05.934Z",
  1554. "user": [
  1555. "admin"
  1556. ],
  1557. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:47:32.962Z\", \"latest_revision_created_at\": \"2020-09-02T19:47:32.919Z\", \"live_revision\": 4, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day. </p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1558. "approved_go_live_at": null
  1559. }
  1560. },
  1561. {
  1562. "model": "wagtailcore.pagerevision",
  1563. "pk": 6,
  1564. "fields": {
  1565. "page": 3,
  1566. "submitted_for_moderation": false,
  1567. "created_at": "2020-09-02T19:52:53.183Z",
  1568. "user": [
  1569. "admin"
  1570. ],
  1571. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:52:05.980Z\", \"latest_revision_created_at\": \"2020-09-02T19:52:05.934Z\", \"live_revision\": 5, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-danger\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1572. "approved_go_live_at": null
  1573. }
  1574. },
  1575. {
  1576. "model": "wagtailcore.pagerevision",
  1577. "pk": 7,
  1578. "fields": {
  1579. "page": 3,
  1580. "submitted_for_moderation": false,
  1581. "created_at": "2020-09-02T19:53:16.365Z",
  1582. "user": [
  1583. "admin"
  1584. ],
  1585. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:52:53.230Z\", \"latest_revision_created_at\": \"2020-09-02T19:52:53.183Z\", \"live_revision\": 6, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-danger\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1586. "approved_go_live_at": null
  1587. }
  1588. },
  1589. {
  1590. "model": "wagtailcore.pagerevision",
  1591. "pk": 8,
  1592. "fields": {
  1593. "page": 3,
  1594. "submitted_for_moderation": false,
  1595. "created_at": "2020-09-02T19:54:19.381Z",
  1596. "user": [
  1597. "admin"
  1598. ],
  1599. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:53:16.405Z\", \"latest_revision_created_at\": \"2020-09-02T19:53:16.365Z\", \"live_revision\": 7, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-danger\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1600. "approved_go_live_at": null
  1601. }
  1602. },
  1603. {
  1604. "model": "wagtailcore.pagerevision",
  1605. "pk": 9,
  1606. "fields": {
  1607. "page": 3,
  1608. "submitted_for_moderation": false,
  1609. "created_at": "2020-09-02T19:58:45.956Z",
  1610. "user": [
  1611. "admin"
  1612. ],
  1613. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:54:19.475Z\", \"latest_revision_created_at\": \"2020-09-02T19:54:19.381Z\", \"live_revision\": 8, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1614. "approved_go_live_at": null
  1615. }
  1616. },
  1617. {
  1618. "model": "wagtailcore.pagerevision",
  1619. "pk": 10,
  1620. "fields": {
  1621. "page": 3,
  1622. "submitted_for_moderation": false,
  1623. "created_at": "2020-09-03T12:08:01.983Z",
  1624. "user": [
  1625. "admin"
  1626. ],
  1627. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-02T19:58:45.994Z\", \"latest_revision_created_at\": \"2020-09-02T19:58:45.956Z\", \"live_revision\": 9, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-warning\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-warning\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1628. "approved_go_live_at": null
  1629. }
  1630. },
  1631. {
  1632. "model": "wagtailcore.pagerevision",
  1633. "pk": 11,
  1634. "fields": {
  1635. "page": 3,
  1636. "submitted_for_moderation": false,
  1637. "created_at": "2020-09-03T12:08:55.585Z",
  1638. "user": [
  1639. "admin"
  1640. ],
  1641. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T12:08:02.030Z\", \"latest_revision_created_at\": \"2020-09-03T12:08:01.983Z\", \"live_revision\": 10, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"51b6faa0-8d61-4b97-b51a-df638ee6f2ec\\\"}]}, \\\"id\\\": \\\"0b0dfcd2-12f1-4ea2-a03a-cf6556d3b723\\\"}]}, \\\"id\\\": \\\"35c8fb05-f442-468d-a90b-ddb08fa474c3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1642. "approved_go_live_at": null
  1643. }
  1644. },
  1645. {
  1646. "model": "wagtailcore.pagerevision",
  1647. "pk": 12,
  1648. "fields": {
  1649. "page": 3,
  1650. "submitted_for_moderation": false,
  1651. "created_at": "2020-09-03T12:10:32.559Z",
  1652. "user": [
  1653. "admin"
  1654. ],
  1655. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T12:08:55.628Z\", \"latest_revision_created_at\": \"2020-09-03T12:08:55.585Z\", \"live_revision\": 11, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"bg-warning\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1656. "approved_go_live_at": null
  1657. }
  1658. },
  1659. {
  1660. "model": "wagtailcore.pagerevision",
  1661. "pk": 13,
  1662. "fields": {
  1663. "page": 3,
  1664. "submitted_for_moderation": false,
  1665. "created_at": "2020-09-03T12:13:23.986Z",
  1666. "user": [
  1667. "admin"
  1668. ],
  1669. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T12:10:32.606Z\", \"latest_revision_created_at\": \"2020-09-03T12:10:32.559Z\", \"live_revision\": 12, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1670. "approved_go_live_at": null
  1671. }
  1672. },
  1673. {
  1674. "model": "wagtailcore.pagerevision",
  1675. "pk": 14,
  1676. "fields": {
  1677. "page": 3,
  1678. "submitted_for_moderation": false,
  1679. "created_at": "2020-09-03T12:14:15.335Z",
  1680. "user": [
  1681. "admin"
  1682. ],
  1683. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T12:13:24.029Z\", \"latest_revision_created_at\": \"2020-09-03T12:13:23.986Z\", \"live_revision\": 13, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1684. "approved_go_live_at": null
  1685. }
  1686. },
  1687. {
  1688. "model": "wagtailcore.pagerevision",
  1689. "pk": 15,
  1690. "fields": {
  1691. "page": 3,
  1692. "submitted_for_moderation": false,
  1693. "created_at": "2020-09-03T13:50:15.058Z",
  1694. "user": [
  1695. "admin"
  1696. ],
  1697. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T12:14:15.376Z\", \"latest_revision_created_at\": \"2020-09-03T12:14:15.335Z\", \"live_revision\": 14, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 6, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1698. "approved_go_live_at": null
  1699. }
  1700. },
  1701. {
  1702. "model": "wagtailcore.pagerevision",
  1703. "pk": 16,
  1704. "fields": {
  1705. "page": 3,
  1706. "submitted_for_moderation": false,
  1707. "created_at": "2020-09-03T13:51:53.519Z",
  1708. "user": [
  1709. "admin"
  1710. ],
  1711. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 0, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T13:50:15.111Z\", \"latest_revision_created_at\": \"2020-09-03T13:50:15.058Z\", \"live_revision\": 15, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1712. "approved_go_live_at": null
  1713. }
  1714. },
  1715. {
  1716. "model": "wagtailcore.pagerevision",
  1717. "pk": 17,
  1718. "fields": {
  1719. "page": 4,
  1720. "submitted_for_moderation": false,
  1721. "created_at": "2020-09-03T14:42:17.625Z",
  1722. "user": [
  1723. "admin"
  1724. ],
  1725. "content_json": "{\"pk\": 4, \"path\": \"000100010001\", \"depth\": 3, \"numchild\": 0, \"title\": \"Blog\", \"draft_title\": \"Blog\", \"slug\": \"blog\", \"content_type\": 6, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": true, \"index_order_by\": \"-date_display\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"show_images\": true, \"show_captions\": true, \"show_meta\": true, \"show_preview_text\": true, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1726. "approved_go_live_at": null
  1727. }
  1728. },
  1729. {
  1730. "model": "wagtailcore.pagerevision",
  1731. "pk": 18,
  1732. "fields": {
  1733. "page": 5,
  1734. "submitted_for_moderation": false,
  1735. "created_at": "2020-09-03T15:01:02.906Z",
  1736. "user": [
  1737. "admin"
  1738. ],
  1739. "content_json": "{\"pk\": 5, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p> </p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1740. "approved_go_live_at": null
  1741. }
  1742. },
  1743. {
  1744. "model": "wagtailcore.pagerevision",
  1745. "pk": 19,
  1746. "fields": {
  1747. "page": 5,
  1748. "submitted_for_moderation": false,
  1749. "created_at": "2020-09-03T15:08:11.690Z",
  1750. "user": [
  1751. "admin"
  1752. ],
  1753. "content_json": "{\"pk\": 5, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:01:02.949Z\", \"latest_revision_created_at\": \"2020-09-03T15:01:02.906Z\", \"live_revision\": 18, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1754. "approved_go_live_at": null
  1755. }
  1756. },
  1757. {
  1758. "model": "wagtailcore.pagerevision",
  1759. "pk": 20,
  1760. "fields": {
  1761. "page": 6,
  1762. "submitted_for_moderation": false,
  1763. "created_at": "2020-09-03T15:01:02.906Z",
  1764. "user": [
  1765. "admin"
  1766. ],
  1767. "content_json": "{\"pk\": 6, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p> </p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1768. "approved_go_live_at": null
  1769. }
  1770. },
  1771. {
  1772. "model": "wagtailcore.pagerevision",
  1773. "pk": 21,
  1774. "fields": {
  1775. "page": 6,
  1776. "submitted_for_moderation": false,
  1777. "created_at": "2020-09-03T15:08:11.690Z",
  1778. "user": [
  1779. "admin"
  1780. ],
  1781. "content_json": "{\"pk\": 6, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:01:02.949Z\", \"latest_revision_created_at\": \"2020-09-03T15:01:02.906Z\", \"live_revision\": 18, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1782. "approved_go_live_at": null
  1783. }
  1784. },
  1785. {
  1786. "model": "wagtailcore.pagerevision",
  1787. "pk": 22,
  1788. "fields": {
  1789. "page": 6,
  1790. "submitted_for_moderation": false,
  1791. "created_at": "2020-09-03T15:08:38.322Z",
  1792. "user": [
  1793. "admin"
  1794. ],
  1795. "content_json": "{\"pk\": 6, \"path\": \"0001000100010002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Why We Love Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"love-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/love-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:08:11.738Z\", \"latest_revision_created_at\": \"2020-09-03T15:08:11.690Z\", \"live_revision\": 19, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1796. "approved_go_live_at": null
  1797. }
  1798. },
  1799. {
  1800. "model": "wagtailcore.pagerevision",
  1801. "pk": 23,
  1802. "fields": {
  1803. "page": 7,
  1804. "submitted_for_moderation": false,
  1805. "created_at": "2020-09-03T15:01:02.906Z",
  1806. "user": [
  1807. "admin"
  1808. ],
  1809. "content_json": "{\"pk\": 7, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p> </p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1810. "approved_go_live_at": null
  1811. }
  1812. },
  1813. {
  1814. "model": "wagtailcore.pagerevision",
  1815. "pk": 24,
  1816. "fields": {
  1817. "page": 7,
  1818. "submitted_for_moderation": false,
  1819. "created_at": "2020-09-03T15:08:11.690Z",
  1820. "user": [
  1821. "admin"
  1822. ],
  1823. "content_json": "{\"pk\": 7, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:01:02.949Z\", \"latest_revision_created_at\": \"2020-09-03T15:01:02.906Z\", \"live_revision\": 18, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1824. "approved_go_live_at": null
  1825. }
  1826. },
  1827. {
  1828. "model": "wagtailcore.pagerevision",
  1829. "pk": 25,
  1830. "fields": {
  1831. "page": 7,
  1832. "submitted_for_moderation": false,
  1833. "created_at": "2020-09-03T15:09:07.951Z",
  1834. "user": [
  1835. "admin"
  1836. ],
  1837. "content_json": "{\"pk\": 7, \"path\": \"0001000100010003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Simple Sweet Desserts Expands Menu\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"expand-menu\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/expand-menu/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:08:11.738Z\", \"latest_revision_created_at\": \"2020-09-03T15:08:11.690Z\", \"live_revision\": 19, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1838. "approved_go_live_at": null
  1839. }
  1840. },
  1841. {
  1842. "model": "wagtailcore.pagerevision",
  1843. "pk": 26,
  1844. "fields": {
  1845. "page": 4,
  1846. "submitted_for_moderation": false,
  1847. "created_at": "2020-09-03T15:19:59.731Z",
  1848. "user": [
  1849. "admin"
  1850. ],
  1851. "content_json": "{\"pk\": 4, \"path\": \"000100010001\", \"depth\": 3, \"numchild\": 3, \"title\": \"Blog\", \"draft_title\": \"Blog\", \"slug\": \"blog\", \"content_type\": 6, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T14:42:17.667Z\", \"last_published_at\": \"2020-09-03T14:42:17.667Z\", \"latest_revision_created_at\": \"2020-09-03T14:42:17.625Z\", \"live_revision\": 17, \"cover_image\": 8, \"index_show_subpages\": true, \"index_order_by\": \"-date_display\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Blog</h2><p> </p><p>Powder drag\\\\u00e9e caramels pudding. Cotton candy bear claw muffin sweet roll. Cake caramels donut dessert carrot cake.</p><p>Danish icing wafer pudding lemon drops cake oat cake pastry candy. Macaroon gingerbread cookie cheesecake. Sweet jelly-o chocolate cake powder.</p><p>Chocolate cake apple pie pastry pastry chocolate cake. Bear claw jujubes danish wafer caramels chocolate cake. Lemon drops cake gummi bears oat cake croissant brownie cake jelly-o chocolate bar.</p>\\\", \\\"id\\\": \\\"99b5715d-2e28-4d47-9518-348b8f5e8c7c\\\"}]}, \\\"id\\\": \\\"ad8e2b45-1f1b-46bd-a210-58efba613150\\\"}]}, \\\"id\\\": \\\"97a77cdd-a044-4ad5-a871-fe6de53475aa\\\"}]\", \"show_images\": true, \"show_captions\": true, \"show_meta\": true, \"show_preview_text\": true, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1852. "approved_go_live_at": null
  1853. }
  1854. },
  1855. {
  1856. "model": "wagtailcore.pagerevision",
  1857. "pk": 27,
  1858. "fields": {
  1859. "page": 6,
  1860. "submitted_for_moderation": false,
  1861. "created_at": "2020-09-03T15:23:50.177Z",
  1862. "user": [
  1863. "admin"
  1864. ],
  1865. "content_json": "{\"pk\": 6, \"path\": \"0001000100010002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Why We Love Cupcakes\", \"draft_title\": \"Why We Love Cupcakes\", \"slug\": \"love-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/love-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:08:38.322Z\", \"last_published_at\": \"2020-09-03T15:08:38.322Z\", \"latest_revision_created_at\": \"2020-09-03T15:08:38.322Z\", \"live_revision\": 22, \"cover_image\": 8, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1866. "approved_go_live_at": null
  1867. }
  1868. },
  1869. {
  1870. "model": "wagtailcore.pagerevision",
  1871. "pk": 28,
  1872. "fields": {
  1873. "page": 7,
  1874. "submitted_for_moderation": false,
  1875. "created_at": "2020-09-03T15:24:02.621Z",
  1876. "user": [
  1877. "admin"
  1878. ],
  1879. "content_json": "{\"pk\": 7, \"path\": \"0001000100010003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Simple Sweet Desserts Expands Menu\", \"draft_title\": \"Simple Sweet Desserts Expands Menu\", \"slug\": \"expand-menu\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/expand-menu/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:09:07.951Z\", \"last_published_at\": \"2020-09-03T15:09:07.951Z\", \"latest_revision_created_at\": \"2020-09-03T15:09:07.951Z\", \"live_revision\": 25, \"cover_image\": 7, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1880. "approved_go_live_at": null
  1881. }
  1882. },
  1883. {
  1884. "model": "wagtailcore.pagerevision",
  1885. "pk": 29,
  1886. "fields": {
  1887. "page": 4,
  1888. "submitted_for_moderation": false,
  1889. "created_at": "2020-09-03T15:57:06.897Z",
  1890. "user": [
  1891. "admin"
  1892. ],
  1893. "content_json": "{\"pk\": 4, \"path\": \"000100010001\", \"depth\": 3, \"numchild\": 3, \"title\": \"Blog\", \"draft_title\": \"Blog\", \"slug\": \"blog\", \"content_type\": 6, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T14:42:17.667Z\", \"last_published_at\": \"2020-09-03T15:19:59.779Z\", \"latest_revision_created_at\": \"2020-09-03T15:19:59.731Z\", \"live_revision\": 26, \"cover_image\": 8, \"index_show_subpages\": false, \"index_order_by\": \"-date_display\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Blog</h2><p></p><p>Powder drag\\\\u00e9e caramels pudding. Cotton candy bear claw muffin sweet roll. Cake caramels donut dessert carrot cake.</p><p>Danish icing wafer pudding lemon drops cake oat cake pastry candy. Macaroon gingerbread cookie cheesecake. Sweet jelly-o chocolate cake powder.</p><p>Chocolate cake apple pie pastry pastry chocolate cake. Bear claw jujubes danish wafer caramels chocolate cake. Lemon drops cake gummi bears oat cake croissant brownie cake jelly-o chocolate bar.</p>\\\", \\\"id\\\": \\\"99b5715d-2e28-4d47-9518-348b8f5e8c7c\\\"}]}, \\\"id\\\": \\\"ad8e2b45-1f1b-46bd-a210-58efba613150\\\"}]}, \\\"id\\\": \\\"97a77cdd-a044-4ad5-a871-fe6de53475aa\\\"}]\", \"show_images\": true, \"show_captions\": true, \"show_meta\": true, \"show_preview_text\": true, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1894. "approved_go_live_at": null
  1895. }
  1896. },
  1897. {
  1898. "model": "wagtailcore.pagerevision",
  1899. "pk": 30,
  1900. "fields": {
  1901. "page": 4,
  1902. "submitted_for_moderation": false,
  1903. "created_at": "2020-09-03T16:03:29.899Z",
  1904. "user": [
  1905. "admin"
  1906. ],
  1907. "content_json": "{\"pk\": 4, \"path\": \"000100010001\", \"depth\": 3, \"numchild\": 3, \"title\": \"Blog\", \"draft_title\": \"Blog\", \"slug\": \"blog\", \"content_type\": 6, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T14:42:17.667Z\", \"last_published_at\": \"2020-09-03T15:57:06.929Z\", \"latest_revision_created_at\": \"2020-09-03T15:57:06.897Z\", \"live_revision\": 29, \"cover_image\": 8, \"index_show_subpages\": true, \"index_order_by\": \"-date_display\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Blog</h2><p></p><p>Powder drag\\\\u00e9e caramels pudding. Cotton candy bear claw muffin sweet roll. Cake caramels donut dessert carrot cake.</p><p>Danish icing wafer pudding lemon drops cake oat cake pastry candy. Macaroon gingerbread cookie cheesecake. Sweet jelly-o chocolate cake powder.</p><p>Chocolate cake apple pie pastry pastry chocolate cake. Bear claw jujubes danish wafer caramels chocolate cake. Lemon drops cake gummi bears oat cake croissant brownie cake jelly-o chocolate bar.</p>\\\", \\\"id\\\": \\\"99b5715d-2e28-4d47-9518-348b8f5e8c7c\\\"}]}, \\\"id\\\": \\\"ad8e2b45-1f1b-46bd-a210-58efba613150\\\"}]}, \\\"id\\\": \\\"97a77cdd-a044-4ad5-a871-fe6de53475aa\\\"}]\", \"show_images\": true, \"show_captions\": true, \"show_meta\": true, \"show_preview_text\": true, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1908. "approved_go_live_at": null
  1909. }
  1910. },
  1911. {
  1912. "model": "wagtailcore.pagerevision",
  1913. "pk": 31,
  1914. "fields": {
  1915. "page": 8,
  1916. "submitted_for_moderation": false,
  1917. "created_at": "2020-09-03T17:02:20.636Z",
  1918. "user": [
  1919. "admin"
  1920. ],
  1921. "content_json": "{\"pk\": 8, \"path\": \"000100010002\", \"depth\": 3, \"numchild\": 0, \"title\": \"Mini Cupcakes\", \"draft_title\": \"Mini Cupcakes\", \"slug\": \"mini-cupcakes\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/mini-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 9, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Mini Cupcakes</h2><p> </p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\\\u00e9e jelly toffee souffl\\\\u00e9 muffin drag\\\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p>Jujubes apple pie cake. Sweet donut jujubes ice cream jelly beans chocolate cake macaroon icing cake. Candy canes powder sugar plum biscuit croissant. Drag\\\\u00e9e drag\\\\u00e9e biscuit. Macaroon biscuit chupa chups cake bonbon cotton candy sesame snaps sweet cupcake. Apple pie oat cake lollipop. Pudding tiramisu cookie sweet cake danish sweet toffee croissant.</p>\\\", \\\"id\\\": \\\"9c65ab5b-9000-4300-a995-94b39660b040\\\"}]}, \\\"id\\\": \\\"7e990d4d-06ac-4b75-9861-cd049350e830\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"image\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": 10}, \\\"id\\\": \\\"e3031971-107e-4303-b7d4-193d772a81bd\\\"}]}, \\\"id\\\": \\\"47b6b538-76f0-4f2f-a449-c62763ac8f6a\\\"}]}, \\\"id\\\": \\\"ef25508b-ca49-4fc7-acda-ff51c13a5900\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h4>Mini Cupcake Flavors</h4><ul><li>Vanilla</li><li>Chocolate</li><li>Strawberry</li><li>Blueberry </li><li>White Raspberry</li><li>Orange Creamsicle</li><li>Vanilla/Chocolate Swirl</li><li>Birthday Party Confetti</li><li>&quot;Cupcake Dirt&quot; with gummy worms</li><li>Lemonberry</li></ul>\\\", \\\"id\\\": \\\"d1da67bf-38a3-451a-9806-ba65c9dd90db\\\"}]}, \\\"id\\\": \\\"d06dbc85-3b2a-4adf-a254-5f02beae249a\\\"}]}, \\\"id\\\": \\\"46da3ed8-a2d3-4b8f-97a4-10859b4515b3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1922. "approved_go_live_at": null
  1923. }
  1924. },
  1925. {
  1926. "model": "wagtailcore.pagerevision",
  1927. "pk": 32,
  1928. "fields": {
  1929. "page": 8,
  1930. "submitted_for_moderation": false,
  1931. "created_at": "2020-09-03T17:03:35.386Z",
  1932. "user": [
  1933. "admin"
  1934. ],
  1935. "content_json": "{\"pk\": 8, \"path\": \"000100010002\", \"depth\": 3, \"numchild\": 0, \"title\": \"Mini Cupcakes\", \"draft_title\": \"Mini Cupcakes\", \"slug\": \"mini-cupcakes\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/mini-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T17:02:20.677Z\", \"last_published_at\": \"2020-09-03T17:02:20.677Z\", \"latest_revision_created_at\": \"2020-09-03T17:02:20.636Z\", \"live_revision\": 31, \"cover_image\": 9, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Mini Cupcakes</h2><p></p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\\\u00e9e jelly toffee souffl\\\\u00e9 muffin drag\\\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p>Jujubes apple pie cake. Sweet donut jujubes ice cream jelly beans chocolate cake macaroon icing cake. Candy canes powder sugar plum biscuit croissant. Drag\\\\u00e9e drag\\\\u00e9e biscuit. Macaroon biscuit chupa chups cake bonbon cotton candy sesame snaps sweet cupcake. Apple pie oat cake lollipop. Pudding tiramisu cookie sweet cake danish sweet toffee croissant.</p>\\\", \\\"id\\\": \\\"9c65ab5b-9000-4300-a995-94b39660b040\\\"}]}, \\\"id\\\": \\\"7e990d4d-06ac-4b75-9861-cd049350e830\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"image\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": 10}, \\\"id\\\": \\\"e3031971-107e-4303-b7d4-193d772a81bd\\\"}]}, \\\"id\\\": \\\"47b6b538-76f0-4f2f-a449-c62763ac8f6a\\\"}]}, \\\"id\\\": \\\"ef25508b-ca49-4fc7-acda-ff51c13a5900\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"image\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": 4}, \\\"id\\\": \\\"1ba78a32-aaed-47c8-8176-9379a7944091\\\"}]}, \\\"id\\\": \\\"8918293f-c112-4495-93f0-98dd5e38ebac\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h4>Mini Cupcake Flavors</h4><ul><li>Vanilla</li><li>Chocolate</li><li>Strawberry</li><li>Blueberry</li><li>White Raspberry</li><li>Orange Creamsicle</li><li>Vanilla/Chocolate Swirl</li><li>Birthday Party Confetti</li><li>&quot;Cupcake Dirt&quot; with gummy worms</li><li>Lemonberry</li></ul>\\\", \\\"id\\\": \\\"d1da67bf-38a3-451a-9806-ba65c9dd90db\\\"}]}, \\\"id\\\": \\\"d06dbc85-3b2a-4adf-a254-5f02beae249a\\\"}]}, \\\"id\\\": \\\"46da3ed8-a2d3-4b8f-97a4-10859b4515b3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  1936. "approved_go_live_at": null
  1937. }
  1938. },
  1939. {
  1940. "model": "wagtailcore.pagerevision",
  1941. "pk": 33,
  1942. "fields": {
  1943. "page": 8,
  1944. "submitted_for_moderation": false,
  1945. "created_at": "2020-09-03T17:51:52.949Z",
  1946. "user": [
  1947. "admin"
  1948. ],
  1949. "content_json": "{\"pk\": 8, \"path\": \"000100010002\", \"depth\": 3, \"numchild\": 0, \"title\": \"Mini Cupcakes\", \"draft_title\": \"Mini Cupcakes\", \"slug\": \"mini-cupcakes\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/mini-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T17:02:20.677Z\", \"last_published_at\": \"2020-09-03T17:03:35.439Z\", \"latest_revision_created_at\": \"2020-09-03T17:03:35.386Z\", \"live_revision\": 32, \"cover_image\": 9, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>About Our Mini Cupcakes</h2><p></p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\\\u00e9e jelly toffee souffl\\\\u00e9 muffin drag\\\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p>Jujubes apple pie cake. Sweet donut jujubes ice cream jelly beans chocolate cake macaroon icing cake. Candy canes powder sugar plum biscuit croissant. Drag\\\\u00e9e drag\\\\u00e9e biscuit. Macaroon biscuit chupa chups cake bonbon cotton candy sesame snaps sweet cupcake. Apple pie oat cake lollipop. Pudding tiramisu cookie sweet cake danish sweet toffee croissant.</p>\\\", \\\"id\\\": \\\"9c65ab5b-9000-4300-a995-94b39660b040\\\"}]}, \\\"id\\\": \\\"7e990d4d-06ac-4b75-9861-cd049350e830\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"image\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": 10}, \\\"id\\\": \\\"e3031971-107e-4303-b7d4-193d772a81bd\\\"}]}, \\\"id\\\": \\\"47b6b538-76f0-4f2f-a449-c62763ac8f6a\\\"}]}, \\\"id\\\": \\\"ef25508b-ca49-4fc7-acda-ff51c13a5900\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"image\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": 4}, \\\"id\\\": \\\"1ba78a32-aaed-47c8-8176-9379a7944091\\\"}]}, \\\"id\\\": \\\"8918293f-c112-4495-93f0-98dd5e38ebac\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h4>Mini Cupcake Flavors</h4><ul><li>Vanilla</li><li>Chocolate</li><li>Strawberry</li><li>Blueberry</li><li>White Raspberry</li><li>Orange Creamsicle</li><li>Vanilla/Chocolate Swirl</li><li>Birthday Party Confetti</li><li>&quot;Cupcake Dirt&quot; with gummy worms</li><li>Lemonberry</li></ul>\\\", \\\"id\\\": \\\"d1da67bf-38a3-451a-9806-ba65c9dd90db\\\"}]}, \\\"id\\\": \\\"d06dbc85-3b2a-4adf-a254-5f02beae249a\\\"}]}, \\\"id\\\": \\\"46da3ed8-a2d3-4b8f-97a4-10859b4515b3\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": [1]}",
  1950. "approved_go_live_at": null
  1951. }
  1952. },
  1953. {
  1954. "model": "wagtailcore.pagerevision",
  1955. "pk": 34,
  1956. "fields": {
  1957. "page": 5,
  1958. "submitted_for_moderation": false,
  1959. "created_at": "2020-09-03T18:27:28.861Z",
  1960. "user": [
  1961. "admin"
  1962. ],
  1963. "content_json": "{\"pk\": 5, \"path\": \"0001000100010001\", \"depth\": 4, \"numchild\": 0, \"title\": \"The Story Behind Our Cupcakes\", \"draft_title\": \"The Story Behind Our Cupcakes\", \"slug\": \"story-behind-our-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/story-behind-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:01:02.949Z\", \"last_published_at\": \"2020-09-03T15:08:11.738Z\", \"latest_revision_created_at\": \"2020-09-03T15:08:11.690Z\", \"live_revision\": 19, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": [1, 4]}",
  1964. "approved_go_live_at": null
  1965. }
  1966. },
  1967. {
  1968. "model": "wagtailcore.pagerevision",
  1969. "pk": 35,
  1970. "fields": {
  1971. "page": 7,
  1972. "submitted_for_moderation": false,
  1973. "created_at": "2020-09-03T18:27:58.335Z",
  1974. "user": [
  1975. "admin"
  1976. ],
  1977. "content_json": "{\"pk\": 7, \"path\": \"0001000100010003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Simple Sweet Desserts Expands Menu\", \"draft_title\": \"Simple Sweet Desserts Expands Menu\", \"slug\": \"expand-menu\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/expand-menu/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:09:07.951Z\", \"last_published_at\": \"2020-09-03T15:24:02.663Z\", \"latest_revision_created_at\": \"2020-09-03T15:24:02.621Z\", \"live_revision\": 28, \"cover_image\": 7, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": [4]}",
  1978. "approved_go_live_at": null
  1979. }
  1980. },
  1981. {
  1982. "model": "wagtailcore.pagerevision",
  1983. "pk": 36,
  1984. "fields": {
  1985. "page": 6,
  1986. "submitted_for_moderation": false,
  1987. "created_at": "2020-09-03T18:28:10.142Z",
  1988. "user": [
  1989. "admin"
  1990. ],
  1991. "content_json": "{\"pk\": 6, \"path\": \"0001000100010002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Why We Love Cupcakes\", \"draft_title\": \"Why We Love Cupcakes\", \"slug\": \"love-cupcakes\", \"content_type\": 10, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/blog/love-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T15:08:38.322Z\", \"last_published_at\": \"2020-09-03T15:23:50.222Z\", \"latest_revision_created_at\": \"2020-09-03T15:23:50.177Z\", \"live_revision\": 27, \"cover_image\": 8, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\\\", \\\"id\\\": \\\"f7f49dc6-3d11-42d6-a836-371e5840ac27\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 3, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"edf50607-6061-4ca3-8a2b-c8b98015dfd0\\\"}]\", \"caption\": \"We reveal our origins.\", \"author\": 1, \"author_display\": \"Betty Baker\", \"date_display\": \"2020-09-03\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": [1]}",
  1992. "approved_go_live_at": null
  1993. }
  1994. },
  1995. {
  1996. "model": "wagtailcore.pagerevision",
  1997. "pk": 37,
  1998. "fields": {
  1999. "page": 3,
  2000. "submitted_for_moderation": false,
  2001. "created_at": "2020-09-03T18:59:51.820Z",
  2002. "user": [
  2003. "admin"
  2004. ],
  2005. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 2, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T13:51:53.566Z\", \"latest_revision_created_at\": \"2020-09-03T13:51:53.519Z\", \"live_revision\": 16, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 4, \\\"classified_by\\\": 4, \\\"show_preview\\\": true, \\\"num_posts\\\": 3}, \\\"id\\\": \\\"fc43a153-fd6b-4cdc-b6e8-33c8780813d6\\\"}]}, \\\"id\\\": \\\"e8470691-b9f5-434f-ad2c-964ecd27d6e1\\\"}]}, \\\"id\\\": \\\"5acb5433-125e-43c5-9b5b-4c87fc480abd\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2006. "approved_go_live_at": null
  2007. }
  2008. },
  2009. {
  2010. "model": "wagtailcore.pagerevision",
  2011. "pk": 38,
  2012. "fields": {
  2013. "page": 3,
  2014. "submitted_for_moderation": false,
  2015. "created_at": "2020-09-03T19:10:45.333Z",
  2016. "user": [
  2017. "admin"
  2018. ],
  2019. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 2, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T18:59:51.885Z\", \"latest_revision_created_at\": \"2020-09-03T18:59:51.820Z\", \"live_revision\": 37, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"btn-danger\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2020. "approved_go_live_at": null
  2021. }
  2022. },
  2023. {
  2024. "model": "wagtailcore.pagerevision",
  2025. "pk": 39,
  2026. "fields": {
  2027. "page": 9,
  2028. "submitted_for_moderation": false,
  2029. "created_at": "2020-09-03T19:12:22.247Z",
  2030. "user": [
  2031. "admin"
  2032. ],
  2033. "content_json": "{\"pk\": 9, \"path\": \"000100010003\", \"depth\": 3, \"numchild\": 0, \"title\": \"About Us\", \"draft_title\": \"About Us\", \"slug\": \"about-us\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/about-us/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 10, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Where we came from</h2><p> </p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\\\u00e9e jelly toffee souffl\\\\u00e9 muffin drag\\\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p></p><h2>Who we are</h2><p> </p><p>Chocolate cake tiramisu tart bear claw brownie wafer. Pie sweet jelly croissant gingerbread. Tart gummies candy canes gingerbread. Lemon drops marzipan cupcake tootsie roll jelly. Chocolate cake sweet roll danish. Souffl\\\\u00e9 candy canes souffl\\\\u00e9 marshmallow powder. Croissant cake jelly powder oat cake ice cream. Tart biscuit candy icing toffee caramels chocolate cake. Jelly-o tart cotton candy marshmallow. Sweet roll tootsie roll apple pie cotton candy sugar plum apple pie gingerbread.</p><p>Donut halvah donut macaroon. Sesame snaps jelly-o tootsie roll. Halvah liquorice pudding biscuit pastry bear claw. Tart danish sweet roll marshmallow jelly beans dessert. Muffin dessert marzipan gingerbread. Apple pie caramels ice cream icing sweet. Bonbon fruitcake tiramisu. Cheesecake pie cotton candy cake.</p><p>Gummies jelly beans bonbon cheesecake oat cake pudding gingerbread chocolate cake cotton candy. Carrot cake lemon drops jelly beans chocolate bar sugar plum carrot cake fruitcake jelly-o donut. Ice cream souffl\\\\u00e9 croissant muffin souffl\\\\u00e9 cake. Muffin gummi bears croissant jujubes cheesecake. Drag\\\\u00e9e gingerbread topping pastry cake dessert donut. Croissant halvah croissant souffl\\\\u00e9 cupcake caramels. Brownie chocolate powder tart. Jelly muffin donut sweet halvah sweet roll sesame snaps powder cotton candy.</p>\\\", \\\"id\\\": \\\"9d4ffbc9-d70a-4622-b8e7-5396e8c8a2a4\\\"}]}, \\\"id\\\": \\\"29de8ef4-d502-4bb7-9a78-0d247cbe0b0e\\\"}]}, \\\"id\\\": \\\"fa987783-d957-416a-8891-cdaa2cd3bbe8\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2034. "approved_go_live_at": null
  2035. }
  2036. },
  2037. {
  2038. "model": "wagtailcore.pagerevision",
  2039. "pk": 40,
  2040. "fields": {
  2041. "page": 10,
  2042. "submitted_for_moderation": false,
  2043. "created_at": "2020-09-03T19:56:56.784Z",
  2044. "user": [
  2045. "admin"
  2046. ],
  2047. "content_json": "{\"pk\": 10, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 1, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 10}, {\"pk\": 2, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 10}, {\"pk\": 3, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 10}, {\"pk\": 4, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 10}, {\"pk\": 5, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 10}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2048. "approved_go_live_at": null
  2049. }
  2050. },
  2051. {
  2052. "model": "wagtailcore.pagerevision",
  2053. "pk": 41,
  2054. "fields": {
  2055. "page": 11,
  2056. "submitted_for_moderation": false,
  2057. "created_at": "2020-09-03T19:56:56.784Z",
  2058. "user": [
  2059. "admin"
  2060. ],
  2061. "content_json": "{\"pk\": 11, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 6, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 11}, {\"pk\": 7, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 11}, {\"pk\": 8, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 11}, {\"pk\": 9, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 11}, {\"pk\": 10, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 11}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2062. "approved_go_live_at": null
  2063. }
  2064. },
  2065. {
  2066. "model": "wagtailcore.pagerevision",
  2067. "pk": 42,
  2068. "fields": {
  2069. "page": 11,
  2070. "submitted_for_moderation": false,
  2071. "created_at": "2020-09-03T20:01:33.887Z",
  2072. "user": [
  2073. "admin"
  2074. ],
  2075. "content_json": "{\"pk\": 11, \"path\": \"000100010005\", \"depth\": 3, \"numchild\": 0, \"title\": \"Career Interest\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"career-interest\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/career-interest/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T19:56:56.830Z\", \"last_published_at\": \"2020-09-03T19:56:56.830Z\", \"latest_revision_created_at\": \"2020-09-03T19:56:56.784Z\", \"live_revision\": 40, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 6, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 11}, {\"pk\": 7, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 11}, {\"pk\": 8, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 11}, {\"pk\": 9, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 11}, {\"pk\": 10, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 11}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2076. "approved_go_live_at": null
  2077. }
  2078. },
  2079. {
  2080. "model": "wagtailcore.pagerevision",
  2081. "pk": 43,
  2082. "fields": {
  2083. "page": 12,
  2084. "submitted_for_moderation": false,
  2085. "created_at": "2020-09-03T19:56:56.784Z",
  2086. "user": [
  2087. "admin"
  2088. ],
  2089. "content_json": "{\"pk\": 12, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 11, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 12}, {\"pk\": 12, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 12}, {\"pk\": 13, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 12}, {\"pk\": 14, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 12}, {\"pk\": 15, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 12}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2090. "approved_go_live_at": null
  2091. }
  2092. },
  2093. {
  2094. "model": "wagtailcore.pagerevision",
  2095. "pk": 44,
  2096. "fields": {
  2097. "page": 12,
  2098. "submitted_for_moderation": false,
  2099. "created_at": "2020-09-03T20:01:33.887Z",
  2100. "user": [
  2101. "admin"
  2102. ],
  2103. "content_json": "{\"pk\": 12, \"path\": \"000100010005\", \"depth\": 3, \"numchild\": 0, \"title\": \"Career Interest\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"career-interest\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/career-interest/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T19:56:56.830Z\", \"last_published_at\": \"2020-09-03T19:56:56.830Z\", \"latest_revision_created_at\": \"2020-09-03T19:56:56.784Z\", \"live_revision\": 40, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 11, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 12}, {\"pk\": 12, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 12}, {\"pk\": 13, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 12}, {\"pk\": 14, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 12}, {\"pk\": 15, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 12}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2104. "approved_go_live_at": null
  2105. }
  2106. },
  2107. {
  2108. "model": "wagtailcore.pagerevision",
  2109. "pk": 45,
  2110. "fields": {
  2111. "page": 12,
  2112. "submitted_for_moderation": false,
  2113. "created_at": "2020-09-03T20:02:03.710Z",
  2114. "user": [
  2115. "admin"
  2116. ],
  2117. "content_json": "{\"pk\": 12, \"path\": \"000100010006\", \"depth\": 3, \"numchild\": 0, \"title\": \"General Inquiries\", \"draft_title\": \"Career Interest\", \"slug\": \"general-inquiries\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/general-inquiries/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T20:01:33.887Z\", \"last_published_at\": \"2020-09-03T20:01:33.887Z\", \"latest_revision_created_at\": \"2020-09-03T20:01:33.887Z\", \"live_revision\": 42, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 11, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 12}, {\"pk\": 12, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 12}, {\"pk\": 13, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 12}, {\"pk\": 14, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 12}, {\"pk\": 15, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 12}], \"confirmation_emails\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2118. "approved_go_live_at": null
  2119. }
  2120. },
  2121. {
  2122. "model": "wagtailcore.pagerevision",
  2123. "pk": 46,
  2124. "fields": {
  2125. "page": 13,
  2126. "submitted_for_moderation": false,
  2127. "created_at": "2020-09-03T20:05:17.357Z",
  2128. "user": [
  2129. "admin"
  2130. ],
  2131. "content_json": "{\"pk\": 13, \"path\": \"000100010007\", \"depth\": 3, \"numchild\": 0, \"title\": \"Contact Us\", \"draft_title\": \"Contact Us\", \"slug\": \"contact-us\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/contact-us/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 4, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>We would love to hear from you!</h2><p>Please select the choice below that reflects what you need!</p><p></p><p><a id=\\\\\\\"10\\\\\\\" linktype=\\\\\\\"page\\\\\\\">Custom Cupcake Order</a></p><p><a id=\\\\\\\"11\\\\\\\" linktype=\\\\\\\"page\\\\\\\">Career Interest</a></p><p><a id=\\\\\\\"12\\\\\\\" linktype=\\\\\\\"page\\\\\\\">General Inquiry</a></p>\\\", \\\"id\\\": \\\"b41131f3-c698-48b0-8478-4d735ab37a60\\\"}]}, \\\"id\\\": \\\"cb0320ba-c856-4164-b968-546eea30abd0\\\"}]}, \\\"id\\\": \\\"6846898a-ffca-458d-b247-c7310e031b59\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2132. "approved_go_live_at": null
  2133. }
  2134. },
  2135. {
  2136. "model": "wagtailcore.pagerevision",
  2137. "pk": 47,
  2138. "fields": {
  2139. "page": 14,
  2140. "submitted_for_moderation": false,
  2141. "created_at": "2020-09-04T14:49:37.269Z",
  2142. "user": [
  2143. "admin"
  2144. ],
  2145. "content_json": "{\"pk\": 14, \"path\": \"000100010008\", \"depth\": 3, \"numchild\": 0, \"title\": \"Insiders Corner\", \"draft_title\": \"Insiders Corner\", \"slug\": \"insiders-corner\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/insiders-corner/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p>Insiders Corner</p>\\\", \\\"id\\\": \\\"db7652f4-bf58-4e48-99b1-9dc31796477e\\\"}]}, \\\"id\\\": \\\"a39eed92-08c2-4858-a1c2-de5a2d35ff36\\\"}]}, \\\"id\\\": \\\"2b996476-1a00-4a86-aa59-52e26031ab3e\\\"}]}, \\\"id\\\": \\\"8c8d2257-b12d-498c-9185-149662370c67\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Cool Stuff for Members ONLY</h2><p> Tweeting a baseball chew master&#x27;s slippers. I am the best you have cat to be kitten me right meow. All of a sudden cat goes crazy fish i must find my red catnip fishy fish asdflkjaertvlkjasntvkjn (sits on keyboard) so making sure that fluff gets into the owner&#x27;s eyes. Scratch my tummy actually i hate you now fight me cough. Attack the child shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff play riveting piece on synthesizer keyboard so catty ipsum rub face on everything. </p><p>Twitch tail in permanent irritation i see a bird i stare at it i meow at it i do a wiggle come here birdy meow and walk away yet meow meow, headbutt owner&#x27;s knee pretend not to be evil. Fall over dead (not really but gets sypathy) love and coo around boyfriend who purrs and makes the perfect moonlight eyes so i can purr and swat the glittery gleaming yarn to him (the yarn is from a $125 sweater) crash against wall but walk away like nothing happened. </p>\\\", \\\"id\\\": \\\"9a2d1a9b-285a-4885-9988-df6a255fc589\\\"}]}, \\\"id\\\": \\\"344bf66f-db38-4abb-8415-7ce3a2d7b5df\\\"}]}, \\\"id\\\": \\\"0da56d2c-ce6c-40a8-b141-5a37f6b55a1f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2146. "approved_go_live_at": null
  2147. }
  2148. },
  2149. {
  2150. "model": "wagtailcore.pagerevision",
  2151. "pk": 48,
  2152. "fields": {
  2153. "page": 14,
  2154. "submitted_for_moderation": false,
  2155. "created_at": "2020-09-04T15:37:06.727Z",
  2156. "user": [
  2157. "admin"
  2158. ],
  2159. "content_json": "{\"pk\": 14, \"path\": \"000100010008\", \"depth\": 3, \"numchild\": 0, \"title\": \"Insiders Corner\", \"draft_title\": \"Insiders Corner\", \"slug\": \"insiders-corner\", \"content_type\": 5, \"live\": false, \"has_unpublished_changes\": true, \"url_path\": \"/home/insiders-corner/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": true, \"locked_at\": \"2020-09-04T15:36:53.989Z\", \"locked_by\": 1, \"first_published_at\": \"2020-09-04T14:49:37.302Z\", \"last_published_at\": null, \"latest_revision_created_at\": \"2020-09-04T14:49:37.269Z\", \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p>Insiders Corner</p>\\\", \\\"id\\\": \\\"db7652f4-bf58-4e48-99b1-9dc31796477e\\\"}]}, \\\"id\\\": \\\"a39eed92-08c2-4858-a1c2-de5a2d35ff36\\\"}]}, \\\"id\\\": \\\"2b996476-1a00-4a86-aa59-52e26031ab3e\\\"}]}, \\\"id\\\": \\\"8c8d2257-b12d-498c-9185-149662370c67\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Cool Stuff for Members ONLY</h2><p>Tweeting a baseball chew master&#x27;s slippers. I am the best you have cat to be kitten me right meow. All of a sudden cat goes crazy fish i must find my red catnip fishy fish asdflkjaertvlkjasntvkjn (sits on keyboard) so making sure that fluff gets into the owner&#x27;s eyes. Scratch my tummy actually i hate you now fight me cough. Attack the child shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff play riveting piece on synthesizer keyboard so catty ipsum rub face on everything.</p><p>Twitch tail in permanent irritation i see a bird i stare at it i meow at it i do a wiggle come here birdy meow and walk away yet meow meow, headbutt owner&#x27;s knee pretend not to be evil. Fall over dead (not really but gets sypathy) love and coo around boyfriend who purrs and makes the perfect moonlight eyes so i can purr and swat the glittery gleaming yarn to him (the yarn is from a $125 sweater) crash against wall but walk away like nothing happened.</p>\\\", \\\"id\\\": \\\"9a2d1a9b-285a-4885-9988-df6a255fc589\\\"}]}, \\\"id\\\": \\\"344bf66f-db38-4abb-8415-7ce3a2d7b5df\\\"}]}, \\\"id\\\": \\\"0da56d2c-ce6c-40a8-b141-5a37f6b55a1f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2160. "approved_go_live_at": null
  2161. }
  2162. },
  2163. {
  2164. "model": "wagtailcore.pagerevision",
  2165. "pk": 49,
  2166. "fields": {
  2167. "page": 3,
  2168. "submitted_for_moderation": false,
  2169. "created_at": "2020-09-08T20:19:59.891Z",
  2170. "user": [
  2171. "admin"
  2172. ],
  2173. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-03T19:10:45.372Z\", \"latest_revision_created_at\": \"2020-09-03T19:10:45.333Z\", \"live_revision\": 38, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#FFC107\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2174. "approved_go_live_at": null
  2175. }
  2176. },
  2177. {
  2178. "model": "wagtailcore.pagerevision",
  2179. "pk": 50,
  2180. "fields": {
  2181. "page": 3,
  2182. "submitted_for_moderation": false,
  2183. "created_at": "2020-09-08T20:21:27.411Z",
  2184. "user": [
  2185. "admin"
  2186. ],
  2187. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:19:59.935Z\", \"latest_revision_created_at\": \"2020-09-08T20:19:59.891Z\", \"live_revision\": 49, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2188. "approved_go_live_at": null
  2189. }
  2190. },
  2191. {
  2192. "model": "wagtailcore.pagerevision",
  2193. "pk": 51,
  2194. "fields": {
  2195. "page": 3,
  2196. "submitted_for_moderation": false,
  2197. "created_at": "2020-09-08T20:22:06.445Z",
  2198. "user": [
  2199. "admin"
  2200. ],
  2201. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:21:27.810Z\", \"latest_revision_created_at\": \"2020-09-08T20:21:27.411Z\", \"live_revision\": 50, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2202. "approved_go_live_at": null
  2203. }
  2204. },
  2205. {
  2206. "model": "wagtailcore.pagerevision",
  2207. "pk": 52,
  2208. "fields": {
  2209. "page": 3,
  2210. "submitted_for_moderation": false,
  2211. "created_at": "2020-09-08T20:23:03.136Z",
  2212. "user": [
  2213. "admin"
  2214. ],
  2215. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:22:06.488Z\", \"latest_revision_created_at\": \"2020-09-08T20:22:06.445Z\", \"live_revision\": 51, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2216. "approved_go_live_at": null
  2217. }
  2218. },
  2219. {
  2220. "model": "wagtailcore.pagerevision",
  2221. "pk": 53,
  2222. "fields": {
  2223. "page": 3,
  2224. "submitted_for_moderation": false,
  2225. "created_at": "2020-09-08T20:23:53.460Z",
  2226. "user": [
  2227. "admin"
  2228. ],
  2229. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:23:03.181Z\", \"latest_revision_created_at\": \"2020-09-08T20:23:03.136Z\", \"live_revision\": 52, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2230. "approved_go_live_at": null
  2231. }
  2232. },
  2233. {
  2234. "model": "wagtailcore.pagerevision",
  2235. "pk": 54,
  2236. "fields": {
  2237. "page": 3,
  2238. "submitted_for_moderation": false,
  2239. "created_at": "2020-09-08T20:24:29.140Z",
  2240. "user": [
  2241. "admin"
  2242. ],
  2243. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:23:53.848Z\", \"latest_revision_created_at\": \"2020-09-08T20:23:53.460Z\", \"live_revision\": 53, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2244. "approved_go_live_at": null
  2245. }
  2246. },
  2247. {
  2248. "model": "wagtailcore.pagerevision",
  2249. "pk": 55,
  2250. "fields": {
  2251. "page": 3,
  2252. "submitted_for_moderation": false,
  2253. "created_at": "2020-09-08T20:25:15.944Z",
  2254. "user": [
  2255. "admin"
  2256. ],
  2257. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:24:29.185Z\", \"latest_revision_created_at\": \"2020-09-08T20:24:29.140Z\", \"live_revision\": 54, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"6\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2258. "approved_go_live_at": null
  2259. }
  2260. },
  2261. {
  2262. "model": "wagtailcore.pagerevision",
  2263. "pk": 56,
  2264. "fields": {
  2265. "page": 3,
  2266. "submitted_for_moderation": false,
  2267. "created_at": "2020-09-08T20:25:46.428Z",
  2268. "user": [
  2269. "admin"
  2270. ],
  2271. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 8, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:25:15.984Z\", \"latest_revision_created_at\": \"2020-09-08T20:25:15.944Z\", \"live_revision\": 55, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2272. "approved_go_live_at": null
  2273. }
  2274. },
  2275. {
  2276. "model": "wagtailcore.pagerevision",
  2277. "pk": 57,
  2278. "fields": {
  2279. "page": 10,
  2280. "submitted_for_moderation": false,
  2281. "created_at": "2020-09-09T13:30:47.736Z",
  2282. "user": [
  2283. "admin"
  2284. ],
  2285. "content_json": "{\"pk\": 10, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T19:56:56.830Z\", \"last_published_at\": \"2020-09-03T19:56:56.830Z\", \"latest_revision_created_at\": \"2020-09-03T19:56:56.784Z\", \"live_revision\": 40, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 1, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 10}, {\"pk\": 2, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 10}, {\"pk\": 3, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 10}, {\"pk\": 4, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 10}, {\"pk\": 5, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 10}], \"confirmation_emails\": [{\"pk\": null, \"to_address\": \"\", \"from_address\": \"roxanna@coderedcorp.com\", \"reply_address\": \"\", \"cc_address\": \"\", \"bcc_address\": \"\", \"subject\": \"Order Received!\", \"body\": \"Thank you for your order! We have received it and will contact you within 24 hours for more details and to arrange payment!\", \"page\": 10}], \"index_classifiers\": [], \"classifier_terms\": []}",
  2286. "approved_go_live_at": null
  2287. }
  2288. },
  2289. {
  2290. "model": "wagtailcore.pagerevision",
  2291. "pk": 58,
  2292. "fields": {
  2293. "page": 15,
  2294. "submitted_for_moderation": false,
  2295. "created_at": "2020-09-09T17:01:22.466Z",
  2296. "user": [
  2297. "admin"
  2298. ],
  2299. "content_json": "{\"pk\": 15, \"path\": \"000100010009\", \"depth\": 3, \"numchild\": 0, \"title\": \"All Of Our Cupcakes\", \"draft_title\": \"All Of Our Cupcakes\", \"slug\": \"all-our-cupcakes\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2300. "approved_go_live_at": null
  2301. }
  2302. },
  2303. {
  2304. "model": "wagtailcore.pagerevision",
  2305. "pk": 59,
  2306. "fields": {
  2307. "page": 16,
  2308. "submitted_for_moderation": false,
  2309. "created_at": "2020-09-09T17:06:15.992Z",
  2310. "user": [
  2311. "admin"
  2312. ],
  2313. "content_json": "{\"pk\": 16, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"1\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2314. "approved_go_live_at": null
  2315. }
  2316. },
  2317. {
  2318. "model": "wagtailcore.pagerevision",
  2319. "pk": 60,
  2320. "fields": {
  2321. "page": 16,
  2322. "submitted_for_moderation": false,
  2323. "created_at": "2020-09-09T17:06:33.411Z",
  2324. "user": [
  2325. "admin"
  2326. ],
  2327. "content_json": "{\"pk\": 16, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:16.045Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:15.992Z\", \"live_revision\": 59, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"2\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2328. "approved_go_live_at": null
  2329. }
  2330. },
  2331. {
  2332. "model": "wagtailcore.pagerevision",
  2333. "pk": 61,
  2334. "fields": {
  2335. "page": 16,
  2336. "submitted_for_moderation": false,
  2337. "created_at": "2020-09-09T17:08:31.488Z",
  2338. "user": [
  2339. "admin"
  2340. ],
  2341. "content_json": "{\"pk\": 16, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:33.464Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:33.411Z\", \"live_revision\": 60, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": 2, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2342. "approved_go_live_at": null
  2343. }
  2344. },
  2345. {
  2346. "model": "wagtailcore.pagerevision",
  2347. "pk": 62,
  2348. "fields": {
  2349. "page": 16,
  2350. "submitted_for_moderation": false,
  2351. "created_at": "2020-09-09T18:29:29.708Z",
  2352. "user": [
  2353. "admin"
  2354. ],
  2355. "content_json": "{\"pk\": 16, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:08:31.534Z\", \"latest_revision_created_at\": \"2020-09-09T17:08:31.488Z\", \"live_revision\": 61, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2356. "approved_go_live_at": null
  2357. }
  2358. },
  2359. {
  2360. "model": "wagtailcore.pagerevision",
  2361. "pk": 63,
  2362. "fields": {
  2363. "page": 15,
  2364. "submitted_for_moderation": false,
  2365. "created_at": "2020-09-09T18:46:04.826Z",
  2366. "user": [
  2367. "admin"
  2368. ],
  2369. "content_json": "{\"pk\": 15, \"path\": \"000100010009\", \"depth\": 3, \"numchild\": 1, \"title\": \"All Of Our Cupcakes\", \"draft_title\": \"All Of Our Cupcakes\", \"slug\": \"all-our-cupcakes\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:01:22.503Z\", \"last_published_at\": \"2020-09-09T17:01:22.503Z\", \"latest_revision_created_at\": \"2020-09-09T17:01:22.466Z\", \"live_revision\": 58, \"cover_image\": null, \"index_show_subpages\": true, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2370. "approved_go_live_at": null
  2371. }
  2372. },
  2373. {
  2374. "model": "wagtailcore.pagerevision",
  2375. "pk": 64,
  2376. "fields": {
  2377. "page": 15,
  2378. "submitted_for_moderation": false,
  2379. "created_at": "2020-09-09T18:49:23.625Z",
  2380. "user": [
  2381. "admin"
  2382. ],
  2383. "content_json": "{\"pk\": 15, \"path\": \"000100010009\", \"depth\": 3, \"numchild\": 1, \"title\": \"All Of Our Cupcakes\", \"draft_title\": \"All Of Our Cupcakes\", \"slug\": \"all-our-cupcakes\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:01:22.503Z\", \"last_published_at\": \"2020-09-09T18:46:04.864Z\", \"latest_revision_created_at\": \"2020-09-09T18:46:04.826Z\", \"live_revision\": 63, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 15, \\\"classified_by\\\": null, \\\"show_preview\\\": true, \\\"num_posts\\\": 3}, \\\"id\\\": \\\"ac1bd5df-706a-4e08-8e09-8eab0f2414e0\\\"}]}, \\\"id\\\": \\\"10d60846-a75f-4c3d-ad1c-85c207ae0583\\\"}]}, \\\"id\\\": \\\"f14dd744-d00e-4310-9efd-5d27b5cd2833\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2384. "approved_go_live_at": null
  2385. }
  2386. },
  2387. {
  2388. "model": "wagtailcore.pagerevision",
  2389. "pk": 65,
  2390. "fields": {
  2391. "page": 15,
  2392. "submitted_for_moderation": false,
  2393. "created_at": "2020-09-09T18:55:44.245Z",
  2394. "user": [
  2395. "admin"
  2396. ],
  2397. "content_json": "{\"pk\": 15, \"path\": \"000100010009\", \"depth\": 3, \"numchild\": 1, \"title\": \"All Of Our Cupcakes\", \"draft_title\": \"All Of Our Cupcakes\", \"slug\": \"all-our-cupcakes\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:01:22.503Z\", \"last_published_at\": \"2020-09-09T18:49:23.672Z\", \"latest_revision_created_at\": \"2020-09-09T18:49:23.625Z\", \"live_revision\": 64, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 15, \\\"classified_by\\\": null, \\\"show_preview\\\": true, \\\"num_posts\\\": 3}, \\\"id\\\": \\\"ac1bd5df-706a-4e08-8e09-8eab0f2414e0\\\"}]}, \\\"id\\\": \\\"10d60846-a75f-4c3d-ad1c-85c207ae0583\\\"}]}, \\\"id\\\": \\\"f14dd744-d00e-4310-9efd-5d27b5cd2833\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2398. "approved_go_live_at": null
  2399. }
  2400. },
  2401. {
  2402. "model": "wagtailcore.pagerevision",
  2403. "pk": 66,
  2404. "fields": {
  2405. "page": 15,
  2406. "submitted_for_moderation": false,
  2407. "created_at": "2020-09-09T18:56:48.589Z",
  2408. "user": [
  2409. "admin"
  2410. ],
  2411. "content_json": "{\"pk\": 15, \"path\": \"000100010009\", \"depth\": 3, \"numchild\": 1, \"title\": \"All Of Our Cupcakes\", \"draft_title\": \"All Of Our Cupcakes\", \"slug\": \"all-our-cupcakes\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:01:22.503Z\", \"last_published_at\": \"2020-09-09T18:55:44.292Z\", \"latest_revision_created_at\": \"2020-09-09T18:55:44.245Z\", \"live_revision\": 65, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2412. "approved_go_live_at": null
  2413. }
  2414. },
  2415. {
  2416. "model": "wagtailcore.pagerevision",
  2417. "pk": 67,
  2418. "fields": {
  2419. "page": 17,
  2420. "submitted_for_moderation": false,
  2421. "created_at": "2020-09-09T17:06:15.992Z",
  2422. "user": [
  2423. "admin"
  2424. ],
  2425. "content_json": "{\"pk\": 17, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"1\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2426. "approved_go_live_at": null
  2427. }
  2428. },
  2429. {
  2430. "model": "wagtailcore.pagerevision",
  2431. "pk": 68,
  2432. "fields": {
  2433. "page": 17,
  2434. "submitted_for_moderation": false,
  2435. "created_at": "2020-09-09T17:06:33.411Z",
  2436. "user": [
  2437. "admin"
  2438. ],
  2439. "content_json": "{\"pk\": 17, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:16.045Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:15.992Z\", \"live_revision\": 59, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"2\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2440. "approved_go_live_at": null
  2441. }
  2442. },
  2443. {
  2444. "model": "wagtailcore.pagerevision",
  2445. "pk": 69,
  2446. "fields": {
  2447. "page": 17,
  2448. "submitted_for_moderation": false,
  2449. "created_at": "2020-09-09T17:08:31.488Z",
  2450. "user": [
  2451. "admin"
  2452. ],
  2453. "content_json": "{\"pk\": 17, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:33.464Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:33.411Z\", \"live_revision\": 60, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": 2, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2454. "approved_go_live_at": null
  2455. }
  2456. },
  2457. {
  2458. "model": "wagtailcore.pagerevision",
  2459. "pk": 70,
  2460. "fields": {
  2461. "page": 17,
  2462. "submitted_for_moderation": false,
  2463. "created_at": "2020-09-09T18:29:29.708Z",
  2464. "user": [
  2465. "admin"
  2466. ],
  2467. "content_json": "{\"pk\": 17, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:08:31.534Z\", \"latest_revision_created_at\": \"2020-09-09T17:08:31.488Z\", \"live_revision\": 61, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2468. "approved_go_live_at": null
  2469. }
  2470. },
  2471. {
  2472. "model": "wagtailcore.pagerevision",
  2473. "pk": 71,
  2474. "fields": {
  2475. "page": 17,
  2476. "submitted_for_moderation": false,
  2477. "created_at": "2020-09-09T18:57:52.297Z",
  2478. "user": [
  2479. "admin"
  2480. ],
  2481. "content_json": "{\"pk\": 17, \"path\": \"0001000100090002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Strawberry Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"strawberry-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/strawberry-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T18:29:29.761Z\", \"latest_revision_created_at\": \"2020-09-09T18:29:29.708Z\", \"live_revision\": 62, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2482. "approved_go_live_at": null
  2483. }
  2484. },
  2485. {
  2486. "model": "wagtailcore.pagerevision",
  2487. "pk": 72,
  2488. "fields": {
  2489. "page": 17,
  2490. "submitted_for_moderation": false,
  2491. "created_at": "2020-09-09T18:59:09.403Z",
  2492. "user": [
  2493. "admin"
  2494. ],
  2495. "content_json": "{\"pk\": 17, \"path\": \"0001000100090002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Strawberry Cupcake\", \"draft_title\": \"Strawberry Cupcake\", \"slug\": \"strawberry-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/strawberry-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T18:57:52.297Z\", \"last_published_at\": \"2020-09-09T18:57:52.297Z\", \"latest_revision_created_at\": \"2020-09-09T18:57:52.297Z\", \"live_revision\": 71, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 14, \"days_available\": \"Tuesday/Thursday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2496. "approved_go_live_at": null
  2497. }
  2498. },
  2499. {
  2500. "model": "wagtailcore.pagerevision",
  2501. "pk": 73,
  2502. "fields": {
  2503. "page": 18,
  2504. "submitted_for_moderation": false,
  2505. "created_at": "2020-09-09T17:06:15.992Z",
  2506. "user": [
  2507. "admin"
  2508. ],
  2509. "content_json": "{\"pk\": 18, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"1\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2510. "approved_go_live_at": null
  2511. }
  2512. },
  2513. {
  2514. "model": "wagtailcore.pagerevision",
  2515. "pk": 74,
  2516. "fields": {
  2517. "page": 18,
  2518. "submitted_for_moderation": false,
  2519. "created_at": "2020-09-09T17:06:33.411Z",
  2520. "user": [
  2521. "admin"
  2522. ],
  2523. "content_json": "{\"pk\": 18, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:16.045Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:15.992Z\", \"live_revision\": 59, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"2\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2524. "approved_go_live_at": null
  2525. }
  2526. },
  2527. {
  2528. "model": "wagtailcore.pagerevision",
  2529. "pk": 75,
  2530. "fields": {
  2531. "page": 18,
  2532. "submitted_for_moderation": false,
  2533. "created_at": "2020-09-09T17:08:31.488Z",
  2534. "user": [
  2535. "admin"
  2536. ],
  2537. "content_json": "{\"pk\": 18, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:06:33.464Z\", \"latest_revision_created_at\": \"2020-09-09T17:06:33.411Z\", \"live_revision\": 60, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": 2, \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2538. "approved_go_live_at": null
  2539. }
  2540. },
  2541. {
  2542. "model": "wagtailcore.pagerevision",
  2543. "pk": 76,
  2544. "fields": {
  2545. "page": 18,
  2546. "submitted_for_moderation": false,
  2547. "created_at": "2020-09-09T18:29:29.708Z",
  2548. "user": [
  2549. "admin"
  2550. ],
  2551. "content_json": "{\"pk\": 18, \"path\": \"0001000100090001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"chocolate-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/chocolate-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T17:08:31.534Z\", \"latest_revision_created_at\": \"2020-09-09T17:08:31.488Z\", \"live_revision\": 61, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2552. "approved_go_live_at": null
  2553. }
  2554. },
  2555. {
  2556. "model": "wagtailcore.pagerevision",
  2557. "pk": 77,
  2558. "fields": {
  2559. "page": 18,
  2560. "submitted_for_moderation": false,
  2561. "created_at": "2020-09-09T18:57:52.297Z",
  2562. "user": [
  2563. "admin"
  2564. ],
  2565. "content_json": "{\"pk\": 18, \"path\": \"0001000100090002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Strawberry Cupcake\", \"draft_title\": \"Chocolate Cupcake\", \"slug\": \"strawberry-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/strawberry-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T17:06:16.045Z\", \"last_published_at\": \"2020-09-09T18:29:29.761Z\", \"latest_revision_created_at\": \"2020-09-09T18:29:29.708Z\", \"live_revision\": 62, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 13, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2566. "approved_go_live_at": null
  2567. }
  2568. },
  2569. {
  2570. "model": "wagtailcore.pagerevision",
  2571. "pk": 78,
  2572. "fields": {
  2573. "page": 18,
  2574. "submitted_for_moderation": false,
  2575. "created_at": "2020-09-09T18:59:09.403Z",
  2576. "user": [
  2577. "admin"
  2578. ],
  2579. "content_json": "{\"pk\": 18, \"path\": \"0001000100090002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Strawberry Cupcake\", \"draft_title\": \"Strawberry Cupcake\", \"slug\": \"strawberry-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/strawberry-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T18:57:52.297Z\", \"last_published_at\": \"2020-09-09T18:57:52.297Z\", \"latest_revision_created_at\": \"2020-09-09T18:57:52.297Z\", \"live_revision\": 71, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 14, \"days_available\": \"Tuesday/Thursday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2580. "approved_go_live_at": null
  2581. }
  2582. },
  2583. {
  2584. "model": "wagtailcore.pagerevision",
  2585. "pk": 79,
  2586. "fields": {
  2587. "page": 18,
  2588. "submitted_for_moderation": false,
  2589. "created_at": "2020-09-09T19:01:23.079Z",
  2590. "user": [
  2591. "admin"
  2592. ],
  2593. "content_json": "{\"pk\": 18, \"path\": \"0001000100090003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Vanilla Sprinkles Cupcake\", \"draft_title\": \"Strawberry Cupcake\", \"slug\": \"vanilla-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/vanilla-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T18:57:52.297Z\", \"last_published_at\": \"2020-09-09T18:59:09.434Z\", \"latest_revision_created_at\": \"2020-09-09T18:59:09.403Z\", \"live_revision\": 72, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 14, \"days_available\": \"Tuesday/Thursday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2594. "approved_go_live_at": null
  2595. }
  2596. },
  2597. {
  2598. "model": "wagtailcore.pagerevision",
  2599. "pk": 80,
  2600. "fields": {
  2601. "page": 18,
  2602. "submitted_for_moderation": false,
  2603. "created_at": "2020-09-09T19:01:41.880Z",
  2604. "user": [
  2605. "admin"
  2606. ],
  2607. "content_json": "{\"pk\": 18, \"path\": \"0001000100090003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Vanilla Sprinkles Cupcake\", \"draft_title\": \"Vanilla Sprinkles Cupcake\", \"slug\": \"vanilla-cupcake\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cupcakes/vanilla-cupcake/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-09T19:01:23.079Z\", \"last_published_at\": \"2020-09-09T19:01:23.079Z\", \"latest_revision_created_at\": \"2020-09-09T19:01:23.079Z\", \"live_revision\": 79, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>\", \"photo\": 15, \"days_available\": \"Tuesday/Thursday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2608. "approved_go_live_at": null
  2609. }
  2610. },
  2611. {
  2612. "model": "wagtailcore.pagerevision",
  2613. "pk": 81,
  2614. "fields": {
  2615. "page": 14,
  2616. "submitted_for_moderation": false,
  2617. "created_at": "2020-09-14T16:20:07.659Z",
  2618. "user": [
  2619. "admin"
  2620. ],
  2621. "content_json": "{\"pk\": 14, \"path\": \"000100010008\", \"depth\": 3, \"numchild\": 0, \"title\": \"Insiders Corner\", \"draft_title\": \"Insiders Corner\", \"slug\": \"insiders-corner\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/insiders-corner/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-04T14:49:37.302Z\", \"last_published_at\": \"2020-09-04T15:37:06.756Z\", \"latest_revision_created_at\": \"2020-09-04T15:37:06.727Z\", \"live_revision\": 48, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<p>Insiders Corner</p>\\\", \\\"id\\\": \\\"db7652f4-bf58-4e48-99b1-9dc31796477e\\\"}]}, \\\"id\\\": \\\"a39eed92-08c2-4858-a1c2-de5a2d35ff36\\\"}]}, \\\"id\\\": \\\"2b996476-1a00-4a86-aa59-52e26031ab3e\\\"}]}, \\\"id\\\": \\\"8c8d2257-b12d-498c-9185-149662370c67\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Cool Stuff for Members ONLY</h2><p>Tweeting a baseball chew master&#x27;s slippers. I am the best you have cat to be kitten me right meow. All of a sudden cat goes crazy fish i must find my red catnip fishy fish asdflkjaertvlkjasntvkjn (sits on keyboard) so making sure that fluff gets into the owner&#x27;s eyes. Scratch my tummy actually i hate you now fight me cough. Attack the child shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff play riveting piece on synthesizer keyboard so catty ipsum rub face on everything.</p><p>Twitch tail in permanent irritation i see a bird i stare at it i meow at it i do a wiggle come here birdy meow and walk away yet meow meow, headbutt owner&#x27;s knee pretend not to be evil. Fall over dead (not really but gets sypathy) love and coo around boyfriend who purrs and makes the perfect moonlight eyes so i can purr and swat the glittery gleaming yarn to him (the yarn is from a $125 sweater) crash against wall but walk away like nothing happened.</p>\\\", \\\"id\\\": \\\"9a2d1a9b-285a-4885-9988-df6a255fc589\\\"}]}, \\\"id\\\": \\\"344bf66f-db38-4abb-8415-7ce3a2d7b5df\\\"}]}, \\\"id\\\": \\\"0da56d2c-ce6c-40a8-b141-5a37f6b55a1f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2622. "approved_go_live_at": null
  2623. }
  2624. },
  2625. {
  2626. "model": "wagtailcore.pagerevision",
  2627. "pk": 82,
  2628. "fields": {
  2629. "page": 3,
  2630. "submitted_for_moderation": false,
  2631. "created_at": "2020-09-14T16:21:47.532Z",
  2632. "user": [
  2633. "admin"
  2634. ],
  2635. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 9, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-08T20:25:46.470Z\", \"latest_revision_created_at\": \"2020-09-08T20:25:46.428Z\", \"live_revision\": 56, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 8, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2636. "approved_go_live_at": null
  2637. }
  2638. },
  2639. {
  2640. "model": "wagtailcore.pagerevision",
  2641. "pk": 83,
  2642. "fields": {
  2643. "page": 10,
  2644. "submitted_for_moderation": false,
  2645. "created_at": "2020-09-23T13:25:10.084Z",
  2646. "user": [
  2647. "admin"
  2648. ],
  2649. "content_json": "{\"pk\": 10, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T19:56:56.830Z\", \"last_published_at\": \"2020-09-09T13:30:47.892Z\", \"latest_revision_created_at\": \"2020-09-09T13:30:47.736Z\", \"live_revision\": 57, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 1, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 10}, {\"pk\": 2, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 10}, {\"pk\": 3, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 10}, {\"pk\": 4, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 10}, {\"pk\": 5, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 10}], \"confirmation_emails\": [{\"pk\": 1, \"to_address\": \"\", \"from_address\": \"roxanna@coderedcorp.com\", \"reply_address\": \"\", \"cc_address\": \"\", \"bcc_address\": \"\", \"subject\": \"Order Received!\", \"body\": \"Thank you for your order! We have received it and will contact you within 24 hours for more details and to arrange payment!\", \"page\": 10}], \"index_classifiers\": [], \"classifier_terms\": []}",
  2650. "approved_go_live_at": null
  2651. }
  2652. },
  2653. {
  2654. "model": "wagtailcore.pagerevision",
  2655. "pk": 84,
  2656. "fields": {
  2657. "page": 10,
  2658. "submitted_for_moderation": false,
  2659. "created_at": "2020-09-23T14:29:17.973Z",
  2660. "user": [
  2661. "admin"
  2662. ],
  2663. "content_json": "{\"pk\": 10, \"path\": \"000100010004\", \"depth\": 3, \"numchild\": 0, \"title\": \"Custom Cupcake Order\", \"draft_title\": \"Custom Cupcake Order\", \"slug\": \"custom-cupcake-order\", \"content_type\": 7, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/custom-cupcake-order/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-03T19:56:56.830Z\", \"last_published_at\": \"2020-09-23T13:25:11.344Z\", \"latest_revision_created_at\": \"2020-09-23T13:25:10.084Z\", \"live_revision\": 83, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"to_address\": \"bettybakery@simplesweetdessert.com\", \"reply_address\": \"\", \"subject\": \"I want to order custom cupcakes\", \"save_to_database\": true, \"thank_you_page\": null, \"button_text\": \"Submit\", \"button_style\": \"btn-danger\", \"button_size\": \"btn-lg\", \"button_css_class\": \"\", \"form_css_class\": \"\", \"form_id\": \"\", \"form_golive_at\": null, \"form_expire_at\": null, \"spam_protection\": true, \"tagged_items\": [], \"form_fields\": [{\"pk\": 1, \"sort_order\": 0, \"label\": \"Name\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"singleline\", \"page\": 10}, {\"pk\": 2, \"sort_order\": 1, \"label\": \"Email\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"email\", \"page\": 10}, {\"pk\": 3, \"sort_order\": 2, \"label\": \"Number of Cupcakes\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"\", \"field_type\": \"number\", \"page\": 10}, {\"pk\": 4, \"sort_order\": 3, \"label\": \"Cupcake Flavors\", \"required\": true, \"choices\": \"Chocolate,\\r\\nStrawberry,\\r\\nVanilla,\\r\\nBlueberry,\\r\\nWhite Raspberry\", \"default_value\": \"\", \"help_text\": \"Choose all the ones you want\", \"field_type\": \"multiselect\", \"page\": 10}, {\"pk\": 5, \"sort_order\": 4, \"label\": \"Message\", \"required\": true, \"choices\": \"\", \"default_value\": \"\", \"help_text\": \"When do you need this order? Tell us more about it.\", \"field_type\": \"multiline\", \"page\": 10}], \"confirmation_emails\": [{\"pk\": 1, \"to_address\": \"{{email}}\", \"from_address\": \"\", \"reply_address\": \"\", \"cc_address\": \"\", \"bcc_address\": \"\", \"subject\": \"Order Received!\", \"body\": \"Hello {{name}}, You ordered {{number_of_cupcakes}} and {{cupcake_flavors}}. Thank you for your order! We have received it and will contact you within 24 hours for more details and to arrange payment!\", \"page\": 10}], \"index_classifiers\": [], \"classifier_terms\": []}",
  2664. "approved_go_live_at": null
  2665. }
  2666. },
  2667. {
  2668. "model": "wagtailcore.pagerevision",
  2669. "pk": 85,
  2670. "fields": {
  2671. "page": 3,
  2672. "submitted_for_moderation": false,
  2673. "created_at": "2020-09-28T11:05:55.261Z",
  2674. "user": [
  2675. "admin"
  2676. ],
  2677. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 9, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-14T16:21:47.658Z\", \"latest_revision_created_at\": \"2020-09-14T16:21:47.532Z\", \"live_revision\": 82, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 8, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 15, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2678. "approved_go_live_at": null
  2679. }
  2680. },
  2681. {
  2682. "model": "wagtailcore.pagerevision",
  2683. "pk": 86,
  2684. "fields": {
  2685. "page": 19,
  2686. "submitted_for_moderation": false,
  2687. "created_at": "2020-09-28T11:12:19.269Z",
  2688. "user": [
  2689. "admin"
  2690. ],
  2691. "content_json": "{\"pk\": 19, \"path\": \"00010001000A\", \"depth\": 3, \"numchild\": 0, \"title\": \"All Of Our Cookies\", \"draft_title\": \"All Of Our Cookies\", \"slug\": \"all-our-cookies\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>All About Our Cookies</h2><p>We have so many different flavors of cookies. Some of our favorites include:</p><ul><li>Chocolate and cream</li><li>Raspberry chocolate chip</li><li>Mint chocolate chip</li><li>Sugar cookie</li><li>Sugar cookie with sprinkles</li><li>Strawberry drop cookie</li><li>Lemon drop cookie</li><li>Old-fashioned chocolate chip cookie</li><li>Oatmeal raisin</li><li>Oatmeal chocolate chip</li></ul><p>Basically, we love cookies around here just as much as we love cupcakes! You can order a single cookie or order them by the half dozen and dozen. For large orders, please call ahead. </p>\\\", \\\"id\\\": \\\"a9c087b5-b051-42d7-a4e3-3c66f1d83867\\\"}]}, \\\"id\\\": \\\"9fbd5acf-d06a-4e56-b828-0703ed4f9e67\\\"}]}, \\\"id\\\": \\\"01ef6a8e-37f2-4ce4-a702-05ae5098a822\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2692. "approved_go_live_at": null
  2693. }
  2694. },
  2695. {
  2696. "model": "wagtailcore.pagerevision",
  2697. "pk": 87,
  2698. "fields": {
  2699. "page": 19,
  2700. "submitted_for_moderation": false,
  2701. "created_at": "2020-09-28T11:15:06.834Z",
  2702. "user": [
  2703. "admin"
  2704. ],
  2705. "content_json": "{\"pk\": 19, \"path\": \"00010001000A\", \"depth\": 3, \"numchild\": 0, \"title\": \"All Of Our Cookies\", \"draft_title\": \"All Of Our Cookies\", \"slug\": \"all-our-cookies\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-28T11:12:19.332Z\", \"last_published_at\": \"2020-09-28T11:12:19.332Z\", \"latest_revision_created_at\": \"2020-09-28T11:12:19.269Z\", \"live_revision\": 86, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-center p-md-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>All About Our Cookies</h2><p>We have so many different flavors of cookies. Some of our favorites include:</p><ul><li>Chocolate and cream</li><li>Raspberry chocolate chip</li><li>Mint chocolate chip</li><li>Sugar cookie</li><li>Sugar cookie with sprinkles</li><li>Strawberry drop cookie</li><li>Lemon drop cookie</li><li>Old-fashioned chocolate chip cookie</li><li>Oatmeal raisin</li><li>Oatmeal chocolate chip</li></ul><p>Basically, we love cookies around here just as much as we love cupcakes! You can order a single cookie or order them by the half dozen and dozen. For large orders, please call ahead.</p>\\\", \\\"id\\\": \\\"a9c087b5-b051-42d7-a4e3-3c66f1d83867\\\"}]}, \\\"id\\\": \\\"9fbd5acf-d06a-4e56-b828-0703ed4f9e67\\\"}]}, \\\"id\\\": \\\"01ef6a8e-37f2-4ce4-a702-05ae5098a822\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2706. "approved_go_live_at": null
  2707. }
  2708. },
  2709. {
  2710. "model": "wagtailcore.pagerevision",
  2711. "pk": 88,
  2712. "fields": {
  2713. "page": 19,
  2714. "submitted_for_moderation": false,
  2715. "created_at": "2020-09-28T11:16:06.656Z",
  2716. "user": [
  2717. "admin"
  2718. ],
  2719. "content_json": "{\"pk\": 19, \"path\": \"00010001000A\", \"depth\": 3, \"numchild\": 0, \"title\": \"All Of Our Cookies\", \"draft_title\": \"All Of Our Cookies\", \"slug\": \"all-our-cookies\", \"content_type\": 54, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-28T11:12:19.332Z\", \"last_published_at\": \"2020-09-28T11:15:07.055Z\", \"latest_revision_created_at\": \"2020-09-28T11:15:06.834Z\", \"live_revision\": 87, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-center p-md-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>All About Our Cookies</h2><p>We have so many different flavors of cookies. Some of our favorites include:</p><ul><li>Chocolate and cream</li><li>Raspberry chocolate chip</li><li>Mint chocolate chip</li><li>Sugar cookie</li><li>Sugar cookie with sprinkles</li><li>Strawberry drop cookie</li><li>Lemon drop cookie</li><li>Old-fashioned chocolate chip cookie</li><li>Oatmeal raisin</li><li>Oatmeal chocolate chip</li></ul><p>Basically, we love cookies around here just as much as we love cupcakes! <br/>You can order a single cookie or order them by the half dozen and dozen. <br/>For large orders, please call ahead.</p>\\\", \\\"id\\\": \\\"a9c087b5-b051-42d7-a4e3-3c66f1d83867\\\"}]}, \\\"id\\\": \\\"9fbd5acf-d06a-4e56-b828-0703ed4f9e67\\\"}]}, \\\"id\\\": \\\"01ef6a8e-37f2-4ce4-a702-05ae5098a822\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2720. "approved_go_live_at": null
  2721. }
  2722. },
  2723. {
  2724. "model": "wagtailcore.pagerevision",
  2725. "pk": 89,
  2726. "fields": {
  2727. "page": 20,
  2728. "submitted_for_moderation": false,
  2729. "created_at": "2020-09-28T11:18:39.707Z",
  2730. "user": [
  2731. "admin"
  2732. ],
  2733. "content_json": "{\"pk\": 20, \"path\": \"00010001000A0001\", \"depth\": 4, \"numchild\": 0, \"title\": \"Chocolate Chip Cookie\", \"draft_title\": \"Chocolate Chip Cookie\", \"slug\": \"chocolate-chip-cookie\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/chocolate-chip-cookie/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Decadent chocolate chips with a soft, smooth cookie base</p>\", \"photo\": 17, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2734. "approved_go_live_at": null
  2735. }
  2736. },
  2737. {
  2738. "model": "wagtailcore.pagerevision",
  2739. "pk": 90,
  2740. "fields": {
  2741. "page": 21,
  2742. "submitted_for_moderation": false,
  2743. "created_at": "2020-09-28T11:22:05.063Z",
  2744. "user": [
  2745. "admin"
  2746. ],
  2747. "content_json": "{\"pk\": 21, \"path\": \"00010001000A0002\", \"depth\": 4, \"numchild\": 0, \"title\": \"Oatmeal Raisin Cookie\", \"draft_title\": \"Oatmeal Raisin Cookie\", \"slug\": \"oatmeal-raisin-cookie\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/oatmeal-raisin-cookie/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Made with oatmeal and raisins for a warm, gooey and delicious treat</p>\", \"photo\": 18, \"days_available\": \"Monday-Friday\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2748. "approved_go_live_at": null
  2749. }
  2750. },
  2751. {
  2752. "model": "wagtailcore.pagerevision",
  2753. "pk": 91,
  2754. "fields": {
  2755. "page": 22,
  2756. "submitted_for_moderation": false,
  2757. "created_at": "2020-09-28T11:28:30.294Z",
  2758. "user": [
  2759. "admin"
  2760. ],
  2761. "content_json": "{\"pk\": 22, \"path\": \"00010001000A0003\", \"depth\": 4, \"numchild\": 0, \"title\": \"Holiday Stained Glass Cookie\", \"draft_title\": \"Holiday Stained Glass Cookie\", \"slug\": \"holiday-stained-glass-cookie\", \"content_type\": 55, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/all-our-cookies/holiday-stained-glass-cookie/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[]\", \"description\": \"<p>Sweet buttery cookies with jam or melted hard candy in the center</p>\", \"photo\": 19, \"days_available\": \"Seasonal\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2762. "approved_go_live_at": null
  2763. }
  2764. },
  2765. {
  2766. "model": "wagtailcore.pagerevision",
  2767. "pk": 92,
  2768. "fields": {
  2769. "page": 3,
  2770. "submitted_for_moderation": false,
  2771. "created_at": "2020-09-28T11:30:20.358Z",
  2772. "user": [
  2773. "admin"
  2774. ],
  2775. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 10, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-28T11:05:55.533Z\", \"latest_revision_created_at\": \"2020-09-28T11:05:55.261Z\", \"live_revision\": 85, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 8, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 15, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 19, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2776. "approved_go_live_at": null
  2777. }
  2778. },
  2779. {
  2780. "model": "wagtailcore.pagerevision",
  2781. "pk": 93,
  2782. "fields": {
  2783. "page": 23,
  2784. "submitted_for_moderation": false,
  2785. "created_at": "2020-09-28T11:37:42.651Z",
  2786. "user": [
  2787. "admin"
  2788. ],
  2789. "content_json": "{\"pk\": 23, \"path\": \"00010001000B\", \"depth\": 3, \"numchild\": 0, \"title\": \"Our Baked Goods\", \"draft_title\": \"Our Baked Goods\", \"slug\": \"our-baked-goods\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/our-baked-goods/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": null, \"last_published_at\": null, \"latest_revision_created_at\": null, \"live_revision\": null, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h3>Our baked goods make people smile</h3><p>That&#x27;s why we do what we do. We believe that cupcakes and <br/>cookies make the world a better place.</p>\\\", \\\"id\\\": \\\"b485396d-090d-435d-8ba7-16ee8bcf0369\\\"}]}, \\\"id\\\": \\\"701889e2-47ab-4e5d-8aec-cdddd164f76d\\\"}]}, \\\"id\\\": \\\"0f7ed77d-c826-4083-b6a7-2a79938e869c\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"coderedcms/blocks/pagelist_article_card_deck.html\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 15, \\\"classified_by\\\": null, \\\"show_preview\\\": false, \\\"num_posts\\\": 4}, \\\"id\\\": \\\"d27887f9-09ca-44c4-907d-4c8c9c69abbe\\\"}]}, \\\"id\\\": \\\"890b9232-884c-4414-ae8f-69cd908ca6e1\\\"}]}, \\\"id\\\": \\\"f96bf520-7eba-4733-8877-c08d9c5db67f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2790. "approved_go_live_at": null
  2791. }
  2792. },
  2793. {
  2794. "model": "wagtailcore.pagerevision",
  2795. "pk": 94,
  2796. "fields": {
  2797. "page": 23,
  2798. "submitted_for_moderation": false,
  2799. "created_at": "2020-09-28T11:40:34.946Z",
  2800. "user": [
  2801. "admin"
  2802. ],
  2803. "content_json": "{\"pk\": 23, \"path\": \"00010001000B\", \"depth\": 3, \"numchild\": 0, \"title\": \"Our Baked Goods\", \"draft_title\": \"Our Baked Goods\", \"slug\": \"our-baked-goods\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/our-baked-goods/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-28T11:37:42.770Z\", \"last_published_at\": \"2020-09-28T11:37:42.770Z\", \"latest_revision_created_at\": \"2020-09-28T11:37:42.651Z\", \"live_revision\": 93, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h3>Our baked goods make people smile</h3><p>That&#x27;s why we do what we do. We believe that cupcakes and<br/> cookies make the world a better place.</p>\\\", \\\"id\\\": \\\"b485396d-090d-435d-8ba7-16ee8bcf0369\\\"}]}, \\\"id\\\": \\\"701889e2-47ab-4e5d-8aec-cdddd164f76d\\\"}]}, \\\"id\\\": \\\"0f7ed77d-c826-4083-b6a7-2a79938e869c\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes</h2>\\\", \\\"id\\\": \\\"5fbb5dba-6264-4c74-a699-940271b65a18\\\"}, {\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"coderedcms/blocks/pagelist_article_card_deck.html\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 15, \\\"classified_by\\\": null, \\\"show_preview\\\": false, \\\"num_posts\\\": 4}, \\\"id\\\": \\\"d27887f9-09ca-44c4-907d-4c8c9c69abbe\\\"}]}, \\\"id\\\": \\\"890b9232-884c-4414-ae8f-69cd908ca6e1\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cookies</h2>\\\", \\\"id\\\": \\\"1fb07b1b-e5fe-4a97-9de0-88ddbf4516c0\\\"}, {\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"coderedcms/blocks/pagelist_article_card_deck.html\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 19, \\\"classified_by\\\": null, \\\"show_preview\\\": false, \\\"num_posts\\\": 4}, \\\"id\\\": \\\"6d29bae7-a383-40e4-8b3d-35163c208d59\\\"}]}, \\\"id\\\": \\\"1a4be344-2d79-47b0-997d-2781885a0d31\\\"}]}, \\\"id\\\": \\\"f96bf520-7eba-4733-8877-c08d9c5db67f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2804. "approved_go_live_at": null
  2805. }
  2806. },
  2807. {
  2808. "model": "wagtailcore.pagerevision",
  2809. "pk": 95,
  2810. "fields": {
  2811. "page": 23,
  2812. "submitted_for_moderation": false,
  2813. "created_at": "2020-09-28T11:41:41.624Z",
  2814. "user": [
  2815. "admin"
  2816. ],
  2817. "content_json": "{\"pk\": 23, \"path\": \"00010001000B\", \"depth\": 3, \"numchild\": 0, \"title\": \"Our Baked Goods\", \"draft_title\": \"Our Baked Goods\", \"slug\": \"our-baked-goods\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/our-baked-goods/\", \"owner\": 1, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-28T11:37:42.770Z\", \"last_published_at\": \"2020-09-28T11:40:35.108Z\", \"latest_revision_created_at\": \"2020-09-28T11:40:34.946Z\", \"live_revision\": 94, \"cover_image\": 16, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h3>Our baked goods make people smile</h3><p>That&#x27;s why we do what we do. We believe that cupcakes and<br/> cookies make the world a better place.</p>\\\", \\\"id\\\": \\\"b485396d-090d-435d-8ba7-16ee8bcf0369\\\"}]}, \\\"id\\\": \\\"701889e2-47ab-4e5d-8aec-cdddd164f76d\\\"}]}, \\\"id\\\": \\\"0f7ed77d-c826-4083-b6a7-2a79938e869c\\\"}, {\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center bg-lightyellow\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes</h2>\\\", \\\"id\\\": \\\"5fbb5dba-6264-4c74-a699-940271b65a18\\\"}, {\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"coderedcms/blocks/pagelist_article_card_deck.html\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 15, \\\"classified_by\\\": null, \\\"show_preview\\\": false, \\\"num_posts\\\": 4}, \\\"id\\\": \\\"d27887f9-09ca-44c4-907d-4c8c9c69abbe\\\"}]}, \\\"id\\\": \\\"890b9232-884c-4414-ae8f-69cd908ca6e1\\\"}, {\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"cherry-headers text-center\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"12\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cookies</h2>\\\", \\\"id\\\": \\\"1fb07b1b-e5fe-4a97-9de0-88ddbf4516c0\\\"}, {\\\"type\\\": \\\"page_list\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"coderedcms/blocks/pagelist_article_card_deck.html\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"indexed_by\\\": 19, \\\"classified_by\\\": null, \\\"show_preview\\\": false, \\\"num_posts\\\": 4}, \\\"id\\\": \\\"6d29bae7-a383-40e4-8b3d-35163c208d59\\\"}]}, \\\"id\\\": \\\"1a4be344-2d79-47b0-997d-2781885a0d31\\\"}]}, \\\"id\\\": \\\"f96bf520-7eba-4733-8877-c08d9c5db67f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2818. "approved_go_live_at": null
  2819. }
  2820. },
  2821. {
  2822. "model": "wagtailcore.pagerevision",
  2823. "pk": 96,
  2824. "fields": {
  2825. "page": 3,
  2826. "submitted_for_moderation": false,
  2827. "created_at": "2020-09-28T11:46:41.482Z",
  2828. "user": [
  2829. "admin"
  2830. ],
  2831. "content_json": "{\"pk\": 3, \"path\": \"00010001\", \"depth\": 2, \"numchild\": 11, \"title\": \"Home\", \"draft_title\": \"Home\", \"slug\": \"home\", \"content_type\": 5, \"live\": true, \"has_unpublished_changes\": false, \"url_path\": \"/home/\", \"owner\": null, \"seo_title\": \"\", \"show_in_menus\": false, \"search_description\": \"\", \"go_live_at\": null, \"expire_at\": null, \"expired\": false, \"locked\": false, \"locked_at\": null, \"locked_by\": null, \"first_published_at\": \"2020-09-02T19:06:49.128Z\", \"last_published_at\": \"2020-09-28T11:30:20.510Z\", \"latest_revision_created_at\": \"2020-09-28T11:30:20.358Z\", \"live_revision\": 92, \"cover_image\": null, \"index_show_subpages\": false, \"index_order_by\": \"\", \"index_num_per_page\": 10, \"custom_template\": \"coderedcms/pages/home_page.html\", \"og_image\": null, \"struct_org_type\": \"\", \"struct_org_name\": \"\", \"struct_org_logo\": null, \"struct_org_image\": null, \"struct_org_phone\": \"\", \"struct_org_address_street\": \"\", \"struct_org_address_locality\": \"\", \"struct_org_address_region\": \"\", \"struct_org_address_postal\": \"\", \"struct_org_address_country\": \"\", \"struct_org_geo_lat\": null, \"struct_org_geo_lng\": null, \"struct_org_hours\": \"[]\", \"struct_org_actions\": \"[]\", \"struct_org_extra_json\": \"\", \"content_walls\": \"[]\", \"body\": \"[{\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 4, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>For every occasion</h2>\\\", \\\"id\\\": \\\"c0053a9b-1a82-42b6-b245-a761f9c214de\\\"}, {\\\"type\\\": \\\"button\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": null, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"http://example.com\\\", \\\"button_title\\\": \\\"Learn More\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"btn-lg\\\"}, \\\"id\\\": \\\"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\\\"}]}, \\\"id\\\": \\\"bfe5598d-debe-469c-a717-4912088aaa84\\\"}]}, \\\"id\\\": \\\"ba906ddb-4b68-4f41-8881-94533e90c452\\\"}]}, \\\"id\\\": \\\"c8224f84-b1d8-4531-82b5-d5302b0bba39\\\"}, {\\\"type\\\": \\\"cardgrid\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"py-4\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 8, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Mini Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"28dbf8e7-7dae-4a43-a047-7208e59db01b\\\"}]}, \\\"id\\\": \\\"f605e009-f263-4337-b2ae-0e4239d198f0\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Cupcakes\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>These cupcakes are made simply but taste divine.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 15, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"\\\", \\\"button_title\\\": \\\"Cupcakes\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\\\"}]}, \\\"id\\\": \\\"b6cab896-250d-4934-8eb9-bf3cec2ad95d\\\"}, {\\\"type\\\": \\\"card\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"image\\\": null, \\\"title\\\": \\\"Mini Cookies\\\", \\\"subtitle\\\": \\\"\\\", \\\"description\\\": \\\"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\\\", \\\"links\\\": [{\\\"type\\\": \\\"Links\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"bg-cherry text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"ga_tracking_event_category\\\": \\\"\\\", \\\"ga_tracking_event_label\\\": \\\"\\\"}, \\\"page_link\\\": 19, \\\"doc_link\\\": null, \\\"other_link\\\": \\\"#\\\", \\\"button_title\\\": \\\"Mini Cookies\\\", \\\"button_style\\\": \\\"\\\", \\\"button_size\\\": \\\"\\\"}, \\\"id\\\": \\\"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\\\"}]}, \\\"id\\\": \\\"4a52846e-e758-4057-973c-89432b123b1a\\\"}]}, \\\"id\\\": \\\"8cc99b37-ea3b-488a-98e1-ab668e6006d8\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": null, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"#f75990\\\", \\\"foreground_color\\\": \\\"#000000\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\\\", \\\"id\\\": \\\"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\\\"}]}, \\\"id\\\": \\\"c07d559a-1c0f-4d43-b579-467d131c9aa9\\\"}]}, \\\"id\\\": \\\"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\\\"}]}, \\\"id\\\": \\\"91cbf66b-b418-470c-a6df-4590e752c2ca\\\"}, {\\\"type\\\": \\\"hero\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": true, \\\"is_parallax\\\": false, \\\"background_image\\\": 7, \\\"tile_image\\\": false, \\\"background_color\\\": \\\"\\\", \\\"foreground_color\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"row\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"\\\", \\\"custom_id\\\": \\\"\\\"}, \\\"fluid\\\": false, \\\"content\\\": [{\\\"type\\\": \\\"content\\\", \\\"value\\\": {\\\"settings\\\": {\\\"custom_template\\\": \\\"\\\", \\\"custom_css_class\\\": \\\"text-white\\\", \\\"custom_id\\\": \\\"\\\", \\\"column_breakpoint\\\": \\\"md\\\"}, \\\"column_size\\\": \\\"\\\", \\\"content\\\": [{\\\"type\\\": \\\"text\\\", \\\"value\\\": \\\"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\\\", \\\"id\\\": \\\"76804627-4910-4261-9e5e-e584b41f6159\\\"}]}, \\\"id\\\": \\\"55235a5a-f4ab-44ce-9385-42f9a4b6e476\\\"}]}, \\\"id\\\": \\\"11282405-3395-449f-8045-9d76e0d7f436\\\"}]}, \\\"id\\\": \\\"65274a77-b1e3-4612-9e89-86cc26bf993f\\\"}]\", \"tagged_items\": [], \"index_classifiers\": [], \"classifier_terms\": []}",
  2832. "approved_go_live_at": null
  2833. }
  2834. },
  2835. {
  2836. "model": "wagtailcore.page",
  2837. "pk": 1,
  2838. "fields": {
  2839. "path": "0001",
  2840. "depth": 1,
  2841. "numchild": 1,
  2842. "title": "Root",
  2843. "draft_title": "Root",
  2844. "slug": "root",
  2845. "content_type": [
  2846. "wagtailcore",
  2847. "page"
  2848. ],
  2849. "live": true,
  2850. "has_unpublished_changes": false,
  2851. "url_path": "/",
  2852. "owner": null,
  2853. "seo_title": "",
  2854. "show_in_menus": false,
  2855. "search_description": "",
  2856. "go_live_at": null,
  2857. "expire_at": null,
  2858. "expired": false,
  2859. "locked": false,
  2860. "locked_at": null,
  2861. "locked_by": null,
  2862. "first_published_at": null,
  2863. "last_published_at": null,
  2864. "latest_revision_created_at": null,
  2865. "live_revision": null
  2866. }
  2867. },
  2868. {
  2869. "model": "wagtailcore.page",
  2870. "pk": 3,
  2871. "fields": {
  2872. "path": "00010001",
  2873. "depth": 2,
  2874. "numchild": 11,
  2875. "title": "Home",
  2876. "draft_title": "Home",
  2877. "slug": "home",
  2878. "content_type": [
  2879. "website",
  2880. "webpage"
  2881. ],
  2882. "live": true,
  2883. "has_unpublished_changes": false,
  2884. "url_path": "/home/",
  2885. "owner": null,
  2886. "seo_title": "",
  2887. "show_in_menus": false,
  2888. "search_description": "",
  2889. "go_live_at": null,
  2890. "expire_at": null,
  2891. "expired": false,
  2892. "locked": false,
  2893. "locked_at": null,
  2894. "locked_by": null,
  2895. "first_published_at": "2020-09-02T19:06:49.128Z",
  2896. "last_published_at": "2020-09-28T11:46:41.613Z",
  2897. "latest_revision_created_at": "2020-09-28T11:46:41.482Z",
  2898. "live_revision": 96
  2899. }
  2900. },
  2901. {
  2902. "model": "wagtailcore.page",
  2903. "pk": 4,
  2904. "fields": {
  2905. "path": "000100010001",
  2906. "depth": 3,
  2907. "numchild": 3,
  2908. "title": "Blog",
  2909. "draft_title": "Blog",
  2910. "slug": "blog",
  2911. "content_type": [
  2912. "website",
  2913. "articleindexpage"
  2914. ],
  2915. "live": true,
  2916. "has_unpublished_changes": false,
  2917. "url_path": "/home/blog/",
  2918. "owner": [
  2919. "admin"
  2920. ],
  2921. "seo_title": "",
  2922. "show_in_menus": false,
  2923. "search_description": "",
  2924. "go_live_at": null,
  2925. "expire_at": null,
  2926. "expired": false,
  2927. "locked": false,
  2928. "locked_at": null,
  2929. "locked_by": null,
  2930. "first_published_at": "2020-09-03T14:42:17.667Z",
  2931. "last_published_at": "2020-09-03T16:03:30.371Z",
  2932. "latest_revision_created_at": "2020-09-03T16:03:29.899Z",
  2933. "live_revision": 30
  2934. }
  2935. },
  2936. {
  2937. "model": "wagtailcore.page",
  2938. "pk": 5,
  2939. "fields": {
  2940. "path": "0001000100010001",
  2941. "depth": 4,
  2942. "numchild": 0,
  2943. "title": "The Story Behind Our Cupcakes",
  2944. "draft_title": "The Story Behind Our Cupcakes",
  2945. "slug": "story-behind-our-cupcakes",
  2946. "content_type": [
  2947. "website",
  2948. "articlepage"
  2949. ],
  2950. "live": true,
  2951. "has_unpublished_changes": false,
  2952. "url_path": "/home/blog/story-behind-our-cupcakes/",
  2953. "owner": [
  2954. "admin"
  2955. ],
  2956. "seo_title": "",
  2957. "show_in_menus": false,
  2958. "search_description": "",
  2959. "go_live_at": null,
  2960. "expire_at": null,
  2961. "expired": false,
  2962. "locked": false,
  2963. "locked_at": null,
  2964. "locked_by": null,
  2965. "first_published_at": "2020-09-03T15:01:02.949Z",
  2966. "last_published_at": "2020-09-03T18:27:28.910Z",
  2967. "latest_revision_created_at": "2020-09-03T18:27:28.861Z",
  2968. "live_revision": 34
  2969. }
  2970. },
  2971. {
  2972. "model": "wagtailcore.page",
  2973. "pk": 6,
  2974. "fields": {
  2975. "path": "0001000100010002",
  2976. "depth": 4,
  2977. "numchild": 0,
  2978. "title": "Why We Love Cupcakes",
  2979. "draft_title": "Why We Love Cupcakes",
  2980. "slug": "love-cupcakes",
  2981. "content_type": [
  2982. "website",
  2983. "articlepage"
  2984. ],
  2985. "live": true,
  2986. "has_unpublished_changes": false,
  2987. "url_path": "/home/blog/love-cupcakes/",
  2988. "owner": [
  2989. "admin"
  2990. ],
  2991. "seo_title": "",
  2992. "show_in_menus": false,
  2993. "search_description": "",
  2994. "go_live_at": null,
  2995. "expire_at": null,
  2996. "expired": false,
  2997. "locked": false,
  2998. "locked_at": null,
  2999. "locked_by": null,
  3000. "first_published_at": "2020-09-03T15:08:38.322Z",
  3001. "last_published_at": "2020-09-03T18:28:10.188Z",
  3002. "latest_revision_created_at": "2020-09-03T18:28:10.142Z",
  3003. "live_revision": 36
  3004. }
  3005. },
  3006. {
  3007. "model": "wagtailcore.page",
  3008. "pk": 7,
  3009. "fields": {
  3010. "path": "0001000100010003",
  3011. "depth": 4,
  3012. "numchild": 0,
  3013. "title": "Simple Sweet Desserts Expands Menu",
  3014. "draft_title": "Simple Sweet Desserts Expands Menu",
  3015. "slug": "expand-menu",
  3016. "content_type": [
  3017. "website",
  3018. "articlepage"
  3019. ],
  3020. "live": true,
  3021. "has_unpublished_changes": false,
  3022. "url_path": "/home/blog/expand-menu/",
  3023. "owner": [
  3024. "admin"
  3025. ],
  3026. "seo_title": "",
  3027. "show_in_menus": false,
  3028. "search_description": "",
  3029. "go_live_at": null,
  3030. "expire_at": null,
  3031. "expired": false,
  3032. "locked": false,
  3033. "locked_at": null,
  3034. "locked_by": null,
  3035. "first_published_at": "2020-09-03T15:09:07.951Z",
  3036. "last_published_at": "2020-09-03T18:27:58.375Z",
  3037. "latest_revision_created_at": "2020-09-03T18:27:58.335Z",
  3038. "live_revision": 35
  3039. }
  3040. },
  3041. {
  3042. "model": "wagtailcore.page",
  3043. "pk": 8,
  3044. "fields": {
  3045. "path": "000100010002",
  3046. "depth": 3,
  3047. "numchild": 0,
  3048. "title": "Mini Cupcakes",
  3049. "draft_title": "Mini Cupcakes",
  3050. "slug": "mini-cupcakes",
  3051. "content_type": [
  3052. "website",
  3053. "webpage"
  3054. ],
  3055. "live": true,
  3056. "has_unpublished_changes": false,
  3057. "url_path": "/home/mini-cupcakes/",
  3058. "owner": [
  3059. "admin"
  3060. ],
  3061. "seo_title": "",
  3062. "show_in_menus": false,
  3063. "search_description": "",
  3064. "go_live_at": null,
  3065. "expire_at": null,
  3066. "expired": false,
  3067. "locked": false,
  3068. "locked_at": null,
  3069. "locked_by": null,
  3070. "first_published_at": "2020-09-03T17:02:20.677Z",
  3071. "last_published_at": "2020-09-03T17:51:52.995Z",
  3072. "latest_revision_created_at": "2020-09-03T17:51:52.949Z",
  3073. "live_revision": 33
  3074. }
  3075. },
  3076. {
  3077. "model": "wagtailcore.page",
  3078. "pk": 9,
  3079. "fields": {
  3080. "path": "000100010003",
  3081. "depth": 3,
  3082. "numchild": 0,
  3083. "title": "About Us",
  3084. "draft_title": "About Us",
  3085. "slug": "about-us",
  3086. "content_type": [
  3087. "website",
  3088. "webpage"
  3089. ],
  3090. "live": true,
  3091. "has_unpublished_changes": false,
  3092. "url_path": "/home/about-us/",
  3093. "owner": [
  3094. "admin"
  3095. ],
  3096. "seo_title": "",
  3097. "show_in_menus": false,
  3098. "search_description": "",
  3099. "go_live_at": null,
  3100. "expire_at": null,
  3101. "expired": false,
  3102. "locked": false,
  3103. "locked_at": null,
  3104. "locked_by": null,
  3105. "first_published_at": "2020-09-03T19:12:22.293Z",
  3106. "last_published_at": "2020-09-03T19:12:22.293Z",
  3107. "latest_revision_created_at": "2020-09-03T19:12:22.247Z",
  3108. "live_revision": 39
  3109. }
  3110. },
  3111. {
  3112. "model": "wagtailcore.page",
  3113. "pk": 10,
  3114. "fields": {
  3115. "path": "000100010004",
  3116. "depth": 3,
  3117. "numchild": 0,
  3118. "title": "Custom Cupcake Order",
  3119. "draft_title": "Custom Cupcake Order",
  3120. "slug": "custom-cupcake-order",
  3121. "content_type": [
  3122. "website",
  3123. "formpage"
  3124. ],
  3125. "live": true,
  3126. "has_unpublished_changes": false,
  3127. "url_path": "/home/custom-cupcake-order/",
  3128. "owner": [
  3129. "admin"
  3130. ],
  3131. "seo_title": "",
  3132. "show_in_menus": false,
  3133. "search_description": "",
  3134. "go_live_at": null,
  3135. "expire_at": null,
  3136. "expired": false,
  3137. "locked": false,
  3138. "locked_at": null,
  3139. "locked_by": null,
  3140. "first_published_at": "2020-09-03T19:56:56.830Z",
  3141. "last_published_at": "2020-09-23T14:29:18.128Z",
  3142. "latest_revision_created_at": "2020-09-23T14:29:17.973Z",
  3143. "live_revision": 84
  3144. }
  3145. },
  3146. {
  3147. "model": "wagtailcore.page",
  3148. "pk": 11,
  3149. "fields": {
  3150. "path": "000100010005",
  3151. "depth": 3,
  3152. "numchild": 0,
  3153. "title": "Career Interest",
  3154. "draft_title": "Career Interest",
  3155. "slug": "career-interest",
  3156. "content_type": [
  3157. "website",
  3158. "formpage"
  3159. ],
  3160. "live": true,
  3161. "has_unpublished_changes": false,
  3162. "url_path": "/home/career-interest/",
  3163. "owner": [
  3164. "admin"
  3165. ],
  3166. "seo_title": "",
  3167. "show_in_menus": false,
  3168. "search_description": "",
  3169. "go_live_at": null,
  3170. "expire_at": null,
  3171. "expired": false,
  3172. "locked": false,
  3173. "locked_at": null,
  3174. "locked_by": null,
  3175. "first_published_at": "2020-09-03T20:01:33.887Z",
  3176. "last_published_at": "2020-09-03T20:01:33.887Z",
  3177. "latest_revision_created_at": "2020-09-03T20:01:33.887Z",
  3178. "live_revision": 42
  3179. }
  3180. },
  3181. {
  3182. "model": "wagtailcore.page",
  3183. "pk": 12,
  3184. "fields": {
  3185. "path": "000100010006",
  3186. "depth": 3,
  3187. "numchild": 0,
  3188. "title": "General Inquiries",
  3189. "draft_title": "General Inquiries",
  3190. "slug": "general-inquiries",
  3191. "content_type": [
  3192. "website",
  3193. "formpage"
  3194. ],
  3195. "live": true,
  3196. "has_unpublished_changes": false,
  3197. "url_path": "/home/general-inquiries/",
  3198. "owner": [
  3199. "admin"
  3200. ],
  3201. "seo_title": "",
  3202. "show_in_menus": false,
  3203. "search_description": "",
  3204. "go_live_at": null,
  3205. "expire_at": null,
  3206. "expired": false,
  3207. "locked": false,
  3208. "locked_at": null,
  3209. "locked_by": null,
  3210. "first_published_at": "2020-09-03T20:02:03.710Z",
  3211. "last_published_at": "2020-09-03T20:02:03.710Z",
  3212. "latest_revision_created_at": "2020-09-03T20:02:03.710Z",
  3213. "live_revision": 45
  3214. }
  3215. },
  3216. {
  3217. "model": "wagtailcore.page",
  3218. "pk": 13,
  3219. "fields": {
  3220. "path": "000100010007",
  3221. "depth": 3,
  3222. "numchild": 0,
  3223. "title": "Contact Us",
  3224. "draft_title": "Contact Us",
  3225. "slug": "contact-us",
  3226. "content_type": [
  3227. "website",
  3228. "webpage"
  3229. ],
  3230. "live": true,
  3231. "has_unpublished_changes": false,
  3232. "url_path": "/home/contact-us/",
  3233. "owner": [
  3234. "admin"
  3235. ],
  3236. "seo_title": "",
  3237. "show_in_menus": false,
  3238. "search_description": "",
  3239. "go_live_at": null,
  3240. "expire_at": null,
  3241. "expired": false,
  3242. "locked": false,
  3243. "locked_at": null,
  3244. "locked_by": null,
  3245. "first_published_at": "2020-09-03T20:05:17.406Z",
  3246. "last_published_at": "2020-09-03T20:05:17.406Z",
  3247. "latest_revision_created_at": "2020-09-03T20:05:17.357Z",
  3248. "live_revision": 46
  3249. }
  3250. },
  3251. {
  3252. "model": "wagtailcore.page",
  3253. "pk": 14,
  3254. "fields": {
  3255. "path": "000100010008",
  3256. "depth": 3,
  3257. "numchild": 0,
  3258. "title": "Insiders Corner",
  3259. "draft_title": "Insiders Corner",
  3260. "slug": "insiders-corner",
  3261. "content_type": [
  3262. "website",
  3263. "webpage"
  3264. ],
  3265. "live": true,
  3266. "has_unpublished_changes": false,
  3267. "url_path": "/home/insiders-corner/",
  3268. "owner": [
  3269. "admin"
  3270. ],
  3271. "seo_title": "",
  3272. "show_in_menus": false,
  3273. "search_description": "",
  3274. "go_live_at": null,
  3275. "expire_at": null,
  3276. "expired": false,
  3277. "locked": false,
  3278. "locked_at": null,
  3279. "locked_by": null,
  3280. "first_published_at": "2020-09-04T14:49:37.302Z",
  3281. "last_published_at": "2020-09-14T16:20:07.808Z",
  3282. "latest_revision_created_at": "2020-09-14T16:20:07.659Z",
  3283. "live_revision": 81
  3284. }
  3285. },
  3286. {
  3287. "model": "wagtailcore.page",
  3288. "pk": 15,
  3289. "fields": {
  3290. "path": "000100010009",
  3291. "depth": 3,
  3292. "numchild": 3,
  3293. "title": "All Of Our Cupcakes",
  3294. "draft_title": "All Of Our Cupcakes",
  3295. "slug": "all-our-cupcakes",
  3296. "content_type": [
  3297. "website",
  3298. "cupcakesindexpage"
  3299. ],
  3300. "live": true,
  3301. "has_unpublished_changes": false,
  3302. "url_path": "/home/all-our-cupcakes/",
  3303. "owner": [
  3304. "admin"
  3305. ],
  3306. "seo_title": "",
  3307. "show_in_menus": false,
  3308. "search_description": "",
  3309. "go_live_at": null,
  3310. "expire_at": null,
  3311. "expired": false,
  3312. "locked": false,
  3313. "locked_at": null,
  3314. "locked_by": null,
  3315. "first_published_at": "2020-09-09T17:01:22.503Z",
  3316. "last_published_at": "2020-09-09T18:56:48.642Z",
  3317. "latest_revision_created_at": "2020-09-09T18:56:48.589Z",
  3318. "live_revision": 66
  3319. }
  3320. },
  3321. {
  3322. "model": "wagtailcore.page",
  3323. "pk": 16,
  3324. "fields": {
  3325. "path": "0001000100090001",
  3326. "depth": 4,
  3327. "numchild": 0,
  3328. "title": "Chocolate Cupcake",
  3329. "draft_title": "Chocolate Cupcake",
  3330. "slug": "chocolate-cupcake",
  3331. "content_type": [
  3332. "website",
  3333. "cupcakespage"
  3334. ],
  3335. "live": true,
  3336. "has_unpublished_changes": false,
  3337. "url_path": "/home/all-our-cupcakes/chocolate-cupcake/",
  3338. "owner": [
  3339. "admin"
  3340. ],
  3341. "seo_title": "",
  3342. "show_in_menus": false,
  3343. "search_description": "",
  3344. "go_live_at": null,
  3345. "expire_at": null,
  3346. "expired": false,
  3347. "locked": false,
  3348. "locked_at": null,
  3349. "locked_by": null,
  3350. "first_published_at": "2020-09-09T17:06:16.045Z",
  3351. "last_published_at": "2020-09-09T18:29:29.761Z",
  3352. "latest_revision_created_at": "2020-09-09T18:29:29.708Z",
  3353. "live_revision": 62
  3354. }
  3355. },
  3356. {
  3357. "model": "wagtailcore.page",
  3358. "pk": 17,
  3359. "fields": {
  3360. "path": "0001000100090002",
  3361. "depth": 4,
  3362. "numchild": 0,
  3363. "title": "Strawberry Cupcake",
  3364. "draft_title": "Strawberry Cupcake",
  3365. "slug": "strawberry-cupcake",
  3366. "content_type": [
  3367. "website",
  3368. "cupcakespage"
  3369. ],
  3370. "live": true,
  3371. "has_unpublished_changes": false,
  3372. "url_path": "/home/all-our-cupcakes/strawberry-cupcake/",
  3373. "owner": [
  3374. "admin"
  3375. ],
  3376. "seo_title": "",
  3377. "show_in_menus": false,
  3378. "search_description": "",
  3379. "go_live_at": null,
  3380. "expire_at": null,
  3381. "expired": false,
  3382. "locked": false,
  3383. "locked_at": null,
  3384. "locked_by": null,
  3385. "first_published_at": "2020-09-09T18:57:52.297Z",
  3386. "last_published_at": "2020-09-09T18:59:09.434Z",
  3387. "latest_revision_created_at": "2020-09-09T18:59:09.403Z",
  3388. "live_revision": 72
  3389. }
  3390. },
  3391. {
  3392. "model": "wagtailcore.page",
  3393. "pk": 18,
  3394. "fields": {
  3395. "path": "0001000100090003",
  3396. "depth": 4,
  3397. "numchild": 0,
  3398. "title": "Vanilla Sprinkles Cupcake",
  3399. "draft_title": "Vanilla Sprinkles Cupcake",
  3400. "slug": "vanilla-cupcake",
  3401. "content_type": [
  3402. "website",
  3403. "cupcakespage"
  3404. ],
  3405. "live": true,
  3406. "has_unpublished_changes": false,
  3407. "url_path": "/home/all-our-cupcakes/vanilla-cupcake/",
  3408. "owner": [
  3409. "admin"
  3410. ],
  3411. "seo_title": "",
  3412. "show_in_menus": false,
  3413. "search_description": "",
  3414. "go_live_at": null,
  3415. "expire_at": null,
  3416. "expired": false,
  3417. "locked": false,
  3418. "locked_at": null,
  3419. "locked_by": null,
  3420. "first_published_at": "2020-09-09T19:01:23.079Z",
  3421. "last_published_at": "2020-09-09T19:01:41.911Z",
  3422. "latest_revision_created_at": "2020-09-09T19:01:41.880Z",
  3423. "live_revision": 80
  3424. }
  3425. },
  3426. {
  3427. "model": "wagtailcore.page",
  3428. "pk": 19,
  3429. "fields": {
  3430. "path": "00010001000A",
  3431. "depth": 3,
  3432. "numchild": 3,
  3433. "title": "All Of Our Cookies",
  3434. "draft_title": "All Of Our Cookies",
  3435. "slug": "all-our-cookies",
  3436. "content_type": [
  3437. "website",
  3438. "cupcakesindexpage"
  3439. ],
  3440. "live": true,
  3441. "has_unpublished_changes": false,
  3442. "url_path": "/home/all-our-cookies/",
  3443. "owner": [
  3444. "admin"
  3445. ],
  3446. "seo_title": "",
  3447. "show_in_menus": false,
  3448. "search_description": "",
  3449. "go_live_at": null,
  3450. "expire_at": null,
  3451. "expired": false,
  3452. "locked": false,
  3453. "locked_at": null,
  3454. "locked_by": null,
  3455. "first_published_at": "2020-09-28T11:12:19.332Z",
  3456. "last_published_at": "2020-09-28T11:16:06.893Z",
  3457. "latest_revision_created_at": "2020-09-28T11:16:06.656Z",
  3458. "live_revision": 88
  3459. }
  3460. },
  3461. {
  3462. "model": "wagtailcore.page",
  3463. "pk": 20,
  3464. "fields": {
  3465. "path": "00010001000A0001",
  3466. "depth": 4,
  3467. "numchild": 0,
  3468. "title": "Chocolate Chip Cookie",
  3469. "draft_title": "Chocolate Chip Cookie",
  3470. "slug": "chocolate-chip-cookie",
  3471. "content_type": [
  3472. "website",
  3473. "cupcakespage"
  3474. ],
  3475. "live": true,
  3476. "has_unpublished_changes": false,
  3477. "url_path": "/home/all-our-cookies/chocolate-chip-cookie/",
  3478. "owner": [
  3479. "admin"
  3480. ],
  3481. "seo_title": "",
  3482. "show_in_menus": false,
  3483. "search_description": "",
  3484. "go_live_at": null,
  3485. "expire_at": null,
  3486. "expired": false,
  3487. "locked": false,
  3488. "locked_at": null,
  3489. "locked_by": null,
  3490. "first_published_at": "2020-09-28T11:18:39.795Z",
  3491. "last_published_at": "2020-09-28T11:18:39.795Z",
  3492. "latest_revision_created_at": "2020-09-28T11:18:39.707Z",
  3493. "live_revision": 89
  3494. }
  3495. },
  3496. {
  3497. "model": "wagtailcore.page",
  3498. "pk": 21,
  3499. "fields": {
  3500. "path": "00010001000A0002",
  3501. "depth": 4,
  3502. "numchild": 0,
  3503. "title": "Oatmeal Raisin Cookie",
  3504. "draft_title": "Oatmeal Raisin Cookie",
  3505. "slug": "oatmeal-raisin-cookie",
  3506. "content_type": [
  3507. "website",
  3508. "cupcakespage"
  3509. ],
  3510. "live": true,
  3511. "has_unpublished_changes": false,
  3512. "url_path": "/home/all-our-cookies/oatmeal-raisin-cookie/",
  3513. "owner": [
  3514. "admin"
  3515. ],
  3516. "seo_title": "",
  3517. "show_in_menus": false,
  3518. "search_description": "",
  3519. "go_live_at": null,
  3520. "expire_at": null,
  3521. "expired": false,
  3522. "locked": false,
  3523. "locked_at": null,
  3524. "locked_by": null,
  3525. "first_published_at": "2020-09-28T11:22:05.193Z",
  3526. "last_published_at": "2020-09-28T11:22:05.193Z",
  3527. "latest_revision_created_at": "2020-09-28T11:22:05.063Z",
  3528. "live_revision": 90
  3529. }
  3530. },
  3531. {
  3532. "model": "wagtailcore.page",
  3533. "pk": 22,
  3534. "fields": {
  3535. "path": "00010001000A0003",
  3536. "depth": 4,
  3537. "numchild": 0,
  3538. "title": "Holiday Stained Glass Cookie",
  3539. "draft_title": "Holiday Stained Glass Cookie",
  3540. "slug": "holiday-stained-glass-cookie",
  3541. "content_type": [
  3542. "website",
  3543. "cupcakespage"
  3544. ],
  3545. "live": true,
  3546. "has_unpublished_changes": false,
  3547. "url_path": "/home/all-our-cookies/holiday-stained-glass-cookie/",
  3548. "owner": [
  3549. "admin"
  3550. ],
  3551. "seo_title": "",
  3552. "show_in_menus": false,
  3553. "search_description": "",
  3554. "go_live_at": null,
  3555. "expire_at": null,
  3556. "expired": false,
  3557. "locked": false,
  3558. "locked_at": null,
  3559. "locked_by": null,
  3560. "first_published_at": "2020-09-28T11:28:30.395Z",
  3561. "last_published_at": "2020-09-28T11:28:30.395Z",
  3562. "latest_revision_created_at": "2020-09-28T11:28:30.294Z",
  3563. "live_revision": 91
  3564. }
  3565. },
  3566. {
  3567. "model": "wagtailcore.page",
  3568. "pk": 23,
  3569. "fields": {
  3570. "path": "00010001000B",
  3571. "depth": 3,
  3572. "numchild": 0,
  3573. "title": "Our Baked Goods",
  3574. "draft_title": "Our Baked Goods",
  3575. "slug": "our-baked-goods",
  3576. "content_type": [
  3577. "website",
  3578. "webpage"
  3579. ],
  3580. "live": true,
  3581. "has_unpublished_changes": false,
  3582. "url_path": "/home/our-baked-goods/",
  3583. "owner": [
  3584. "admin"
  3585. ],
  3586. "seo_title": "",
  3587. "show_in_menus": false,
  3588. "search_description": "",
  3589. "go_live_at": null,
  3590. "expire_at": null,
  3591. "expired": false,
  3592. "locked": false,
  3593. "locked_at": null,
  3594. "locked_by": null,
  3595. "first_published_at": "2020-09-28T11:37:42.770Z",
  3596. "last_published_at": "2020-09-28T11:41:41.759Z",
  3597. "latest_revision_created_at": "2020-09-28T11:41:41.624Z",
  3598. "live_revision": 95
  3599. }
  3600. },
  3601. {
  3602. "model": "wagtailimages.image",
  3603. "pk": 1,
  3604. "fields": {
  3605. "collection": 1,
  3606. "title": "SIMPLE SWEET DESSERTS.png",
  3607. "file": "original_images/SIMPLE_SWEET_DESSERTS.png",
  3608. "width": 500,
  3609. "height": 500,
  3610. "created_at": "2020-09-02T18:20:51.479Z",
  3611. "uploaded_by_user": [
  3612. "admin"
  3613. ],
  3614. "focal_point_x": null,
  3615. "focal_point_y": null,
  3616. "focal_point_width": null,
  3617. "focal_point_height": null,
  3618. "file_size": 19734,
  3619. "file_hash": "92462bab8576667c36c5ef377818b3717baa8781"
  3620. }
  3621. },
  3622. {
  3623. "model": "wagtailimages.image",
  3624. "pk": 2,
  3625. "fields": {
  3626. "collection": 1,
  3627. "title": "cupcakae-favicon.png",
  3628. "file": "original_images/cupcakae-favicon.png",
  3629. "width": 200,
  3630. "height": 198,
  3631. "created_at": "2020-09-02T18:23:17.258Z",
  3632. "uploaded_by_user": [
  3633. "admin"
  3634. ],
  3635. "focal_point_x": null,
  3636. "focal_point_y": null,
  3637. "focal_point_width": null,
  3638. "focal_point_height": null,
  3639. "file_size": 17972,
  3640. "file_hash": "e9d084c63b167e6bc59731927f524dd682e0d680"
  3641. }
  3642. },
  3643. {
  3644. "model": "wagtailimages.image",
  3645. "pk": 3,
  3646. "fields": {
  3647. "collection": 1,
  3648. "title": "cupcake-red.png",
  3649. "file": "original_images/cupcake-red.png",
  3650. "width": 200,
  3651. "height": 200,
  3652. "created_at": "2020-09-02T18:24:48.815Z",
  3653. "uploaded_by_user": [
  3654. "admin"
  3655. ],
  3656. "focal_point_x": null,
  3657. "focal_point_y": null,
  3658. "focal_point_width": null,
  3659. "focal_point_height": null,
  3660. "file_size": 70088,
  3661. "file_hash": "fd2d27c78a9a1c8a4ad9f88281ca8cfd884e5829"
  3662. }
  3663. },
  3664. {
  3665. "model": "wagtailimages.image",
  3666. "pk": 4,
  3667. "fields": {
  3668. "collection": 1,
  3669. "title": "cupcake-4457880_1920.jpg",
  3670. "file": "original_images/cupcake-4457880_1920.jpg",
  3671. "width": 1920,
  3672. "height": 1281,
  3673. "created_at": "2020-09-02T19:04:26.464Z",
  3674. "uploaded_by_user": [
  3675. "admin"
  3676. ],
  3677. "focal_point_x": null,
  3678. "focal_point_y": null,
  3679. "focal_point_width": null,
  3680. "focal_point_height": null,
  3681. "file_size": 275585,
  3682. "file_hash": "9f0e12811c95431fe1d78c07fbe7b650ec9875c7"
  3683. }
  3684. },
  3685. {
  3686. "model": "wagtailimages.image",
  3687. "pk": 5,
  3688. "fields": {
  3689. "collection": 1,
  3690. "title": "logo-small.png",
  3691. "file": "original_images/logo-small.png",
  3692. "width": 100,
  3693. "height": 100,
  3694. "created_at": "2020-09-03T13:34:00.963Z",
  3695. "uploaded_by_user": [
  3696. "admin"
  3697. ],
  3698. "focal_point_x": null,
  3699. "focal_point_y": null,
  3700. "focal_point_width": null,
  3701. "focal_point_height": null,
  3702. "file_size": 2000,
  3703. "file_hash": "363389356a3c518cb686e08e17ba29004e7b12ee"
  3704. }
  3705. },
  3706. {
  3707. "model": "wagtailimages.image",
  3708. "pk": 6,
  3709. "fields": {
  3710. "collection": 1,
  3711. "title": "dessert-352475_1920.jpg",
  3712. "file": "original_images/dessert-352475_1920.jpg",
  3713. "width": 1920,
  3714. "height": 1280,
  3715. "created_at": "2020-09-03T13:49:26.565Z",
  3716. "uploaded_by_user": [
  3717. "admin"
  3718. ],
  3719. "focal_point_x": 1029,
  3720. "focal_point_y": 413,
  3721. "focal_point_width": 1771,
  3722. "focal_point_height": 777,
  3723. "file_size": 371425,
  3724. "file_hash": "a381382890963954f4c9e5d86af86286fe24824f"
  3725. }
  3726. },
  3727. {
  3728. "model": "wagtailimages.image",
  3729. "pk": 7,
  3730. "fields": {
  3731. "collection": 1,
  3732. "title": "strawberry-dessert.jpg",
  3733. "file": "original_images/strawberry-dessert.jpg",
  3734. "width": 1884,
  3735. "height": 680,
  3736. "created_at": "2020-09-03T13:51:50.855Z",
  3737. "uploaded_by_user": [
  3738. "admin"
  3739. ],
  3740. "focal_point_x": null,
  3741. "focal_point_y": null,
  3742. "focal_point_width": null,
  3743. "focal_point_height": null,
  3744. "file_size": 728947,
  3745. "file_hash": "9405688d50b1178a66818c0cbeeedc459de82161"
  3746. }
  3747. },
  3748. {
  3749. "model": "wagtailimages.image",
  3750. "pk": 8,
  3751. "fields": {
  3752. "collection": 1,
  3753. "title": "cupcake-berries.jpg",
  3754. "file": "original_images/cupcake-berries.jpg",
  3755. "width": 1918,
  3756. "height": 874,
  3757. "created_at": "2020-09-03T15:14:23.267Z",
  3758. "uploaded_by_user": [
  3759. "admin"
  3760. ],
  3761. "focal_point_x": null,
  3762. "focal_point_y": null,
  3763. "focal_point_width": null,
  3764. "focal_point_height": null,
  3765. "file_size": 851770,
  3766. "file_hash": "575f9daad8a7b18236065ed0af27c31ff73a764b"
  3767. }
  3768. },
  3769. {
  3770. "model": "wagtailimages.image",
  3771. "pk": 9,
  3772. "fields": {
  3773. "collection": 1,
  3774. "title": "cupcake-1388972_1920.jpg",
  3775. "file": "original_images/cupcake-1388972_1920.jpg",
  3776. "width": 1920,
  3777. "height": 1311,
  3778. "created_at": "2020-09-03T16:54:53.776Z",
  3779. "uploaded_by_user": [
  3780. "admin"
  3781. ],
  3782. "focal_point_x": null,
  3783. "focal_point_y": null,
  3784. "focal_point_width": null,
  3785. "focal_point_height": null,
  3786. "file_size": 419214,
  3787. "file_hash": "40c800bcc72d9d164268d43f2b8cde049ed06e64"
  3788. }
  3789. },
  3790. {
  3791. "model": "wagtailimages.image",
  3792. "pk": 10,
  3793. "fields": {
  3794. "collection": 1,
  3795. "title": "cupcake-1498603_1920.jpg",
  3796. "file": "original_images/cupcake-1498603_1920.jpg",
  3797. "width": 1279,
  3798. "height": 1920,
  3799. "created_at": "2020-09-03T16:56:37.980Z",
  3800. "uploaded_by_user": [
  3801. "admin"
  3802. ],
  3803. "focal_point_x": null,
  3804. "focal_point_y": null,
  3805. "focal_point_width": null,
  3806. "focal_point_height": null,
  3807. "file_size": 454690,
  3808. "file_hash": "7fb86d920ef65cbf9c6a9e8644c2f791a1858320"
  3809. }
  3810. },
  3811. {
  3812. "model": "wagtailimages.image",
  3813. "pk": 11,
  3814. "fields": {
  3815. "collection": 1,
  3816. "title": "SIMPLE SWEET DESSERTS-YELLOW.png",
  3817. "file": "original_images/SIMPLE_SWEET_DESSERTS-YELLOW.png",
  3818. "width": 500,
  3819. "height": 500,
  3820. "created_at": "2020-09-08T20:31:38.027Z",
  3821. "uploaded_by_user": [
  3822. "admin"
  3823. ],
  3824. "focal_point_x": null,
  3825. "focal_point_y": null,
  3826. "focal_point_width": null,
  3827. "focal_point_height": null,
  3828. "file_size": 18567,
  3829. "file_hash": "a6741908452f6de24a2f301f7aaeecafcc28a964"
  3830. }
  3831. },
  3832. {
  3833. "model": "wagtailimages.image",
  3834. "pk": 12,
  3835. "fields": {
  3836. "collection": 1,
  3837. "title": "SIMPLE SWEET DESSERTS-YELLOW(1).png",
  3838. "file": "original_images/SIMPLE_SWEET_DESSERTS-YELLOW1.png",
  3839. "width": 500,
  3840. "height": 500,
  3841. "created_at": "2020-09-08T20:33:57.974Z",
  3842. "uploaded_by_user": [
  3843. "admin"
  3844. ],
  3845. "focal_point_x": null,
  3846. "focal_point_y": null,
  3847. "focal_point_width": null,
  3848. "focal_point_height": null,
  3849. "file_size": 18854,
  3850. "file_hash": "6381e7960dd222a11c8ec8718eee3b96baa95f03"
  3851. }
  3852. },
  3853. {
  3854. "model": "wagtailimages.image",
  3855. "pk": 13,
  3856. "fields": {
  3857. "collection": 1,
  3858. "title": "muffin-3607780_640.jpg",
  3859. "file": "original_images/muffin-3607780_640.jpg",
  3860. "width": 640,
  3861. "height": 426,
  3862. "created_at": "2020-09-09T17:02:37.899Z",
  3863. "uploaded_by_user": [
  3864. "admin"
  3865. ],
  3866. "focal_point_x": null,
  3867. "focal_point_y": null,
  3868. "focal_point_width": null,
  3869. "focal_point_height": null,
  3870. "file_size": 48800,
  3871. "file_hash": "b56498828e16ea9992e9d6620e80077ec7fdda24"
  3872. }
  3873. },
  3874. {
  3875. "model": "wagtailimages.image",
  3876. "pk": 14,
  3877. "fields": {
  3878. "collection": 1,
  3879. "title": "cupcakes-5441972_640.jpg",
  3880. "file": "original_images/cupcakes-5441972_640.jpg",
  3881. "width": 640,
  3882. "height": 434,
  3883. "created_at": "2020-09-09T18:59:04.927Z",
  3884. "uploaded_by_user": [
  3885. "admin"
  3886. ],
  3887. "focal_point_x": null,
  3888. "focal_point_y": null,
  3889. "focal_point_width": null,
  3890. "focal_point_height": null,
  3891. "file_size": 79454,
  3892. "file_hash": "3224fa7988aff3dd405aa9dcfbbf74bbe8ad3255"
  3893. }
  3894. },
  3895. {
  3896. "model": "wagtailimages.image",
  3897. "pk": 15,
  3898. "fields": {
  3899. "collection": 1,
  3900. "title": "cupcakes-2250367_640.jpg",
  3901. "file": "original_images/cupcakes-2250367_640.jpg",
  3902. "width": 640,
  3903. "height": 480,
  3904. "created_at": "2020-09-09T19:01:39.489Z",
  3905. "uploaded_by_user": [
  3906. "admin"
  3907. ],
  3908. "focal_point_x": null,
  3909. "focal_point_y": null,
  3910. "focal_point_width": null,
  3911. "focal_point_height": null,
  3912. "file_size": 53064,
  3913. "file_hash": "334e29a74107ef9ac3fc8142b478ebe6fd22cc1d"
  3914. }
  3915. },
  3916. {
  3917. "model": "wagtailimages.image",
  3918. "pk": 16,
  3919. "fields": {
  3920. "collection": 1,
  3921. "title": "cookies-banner.jpg",
  3922. "file": "original_images/cookies-banner.jpg",
  3923. "width": 1280,
  3924. "height": 547,
  3925. "created_at": "2020-09-28T11:09:22.819Z",
  3926. "uploaded_by_user": [
  3927. "admin"
  3928. ],
  3929. "focal_point_x": null,
  3930. "focal_point_y": null,
  3931. "focal_point_width": null,
  3932. "focal_point_height": null,
  3933. "file_size": 238105,
  3934. "file_hash": "9c4e61380b732e40ef75e69161c95bee9d1dd6db"
  3935. }
  3936. },
  3937. {
  3938. "model": "wagtailimages.image",
  3939. "pk": 17,
  3940. "fields": {
  3941. "collection": 1,
  3942. "title": "chocolate-chip-cookies-940428_640.jpg",
  3943. "file": "original_images/chocolate-chip-cookies-940428_640.jpg",
  3944. "width": 640,
  3945. "height": 510,
  3946. "created_at": "2020-09-28T11:18:29.832Z",
  3947. "uploaded_by_user": [
  3948. "admin"
  3949. ],
  3950. "focal_point_x": null,
  3951. "focal_point_y": null,
  3952. "focal_point_width": null,
  3953. "focal_point_height": null,
  3954. "file_size": 125094,
  3955. "file_hash": "afdac063346b9efa5403b32c5b2393e3a3a67aa4"
  3956. }
  3957. },
  3958. {
  3959. "model": "wagtailimages.image",
  3960. "pk": 18,
  3961. "fields": {
  3962. "collection": 1,
  3963. "title": "oatmeal-raisin-cookies-1511599_640.jpg",
  3964. "file": "original_images/oatmeal-raisin-cookies-1511599_640.jpg",
  3965. "width": 640,
  3966. "height": 354,
  3967. "created_at": "2020-09-28T11:21:56.535Z",
  3968. "uploaded_by_user": [
  3969. "admin"
  3970. ],
  3971. "focal_point_x": null,
  3972. "focal_point_y": null,
  3973. "focal_point_width": null,
  3974. "focal_point_height": null,
  3975. "file_size": 68232,
  3976. "file_hash": "438380c919a66fec54452b287c5b284f0bd00d78"
  3977. }
  3978. },
  3979. {
  3980. "model": "wagtailimages.image",
  3981. "pk": 19,
  3982. "fields": {
  3983. "collection": 1,
  3984. "title": "stained-glass-cookie.jpg",
  3985. "file": "original_images/stained-glass-cookie.jpg",
  3986. "width": 640,
  3987. "height": 426,
  3988. "created_at": "2020-09-28T11:28:21.851Z",
  3989. "uploaded_by_user": [
  3990. "admin"
  3991. ],
  3992. "focal_point_x": null,
  3993. "focal_point_y": null,
  3994. "focal_point_width": null,
  3995. "focal_point_height": null,
  3996. "file_size": 143701,
  3997. "file_hash": "620d6e477592fd42f8bf64442263a61bf9aed7ae"
  3998. }
  3999. },
  4000. {
  4001. "model": "coderedcms.coderedpage",
  4002. "pk": 3,
  4003. "fields": {
  4004. "page_ptr": 3,
  4005. "cover_image": null,
  4006. "index_show_subpages": false,
  4007. "index_order_by": "",
  4008. "index_num_per_page": 10,
  4009. "custom_template": "coderedcms/pages/home_page.html",
  4010. "og_image": null,
  4011. "struct_org_type": "",
  4012. "struct_org_name": "",
  4013. "struct_org_logo": null,
  4014. "struct_org_image": null,
  4015. "struct_org_phone": "",
  4016. "struct_org_address_street": "",
  4017. "struct_org_address_locality": "",
  4018. "struct_org_address_region": "",
  4019. "struct_org_address_postal": "",
  4020. "struct_org_address_country": "",
  4021. "struct_org_geo_lat": null,
  4022. "struct_org_geo_lng": null,
  4023. "struct_org_hours": "[]",
  4024. "struct_org_actions": "[]",
  4025. "struct_org_extra_json": "",
  4026. "content_walls": "[]",
  4027. "index_classifiers": [],
  4028. "classifier_terms": []
  4029. }
  4030. },
  4031. {
  4032. "model": "coderedcms.coderedpage",
  4033. "pk": 4,
  4034. "fields": {
  4035. "page_ptr": 4,
  4036. "cover_image": 8,
  4037. "index_show_subpages": true,
  4038. "index_order_by": "-date_display",
  4039. "index_num_per_page": 10,
  4040. "custom_template": "",
  4041. "og_image": null,
  4042. "struct_org_type": "",
  4043. "struct_org_name": "",
  4044. "struct_org_logo": null,
  4045. "struct_org_image": null,
  4046. "struct_org_phone": "",
  4047. "struct_org_address_street": "",
  4048. "struct_org_address_locality": "",
  4049. "struct_org_address_region": "",
  4050. "struct_org_address_postal": "",
  4051. "struct_org_address_country": "",
  4052. "struct_org_geo_lat": null,
  4053. "struct_org_geo_lng": null,
  4054. "struct_org_hours": "[]",
  4055. "struct_org_actions": "[]",
  4056. "struct_org_extra_json": "",
  4057. "content_walls": "[]",
  4058. "index_classifiers": [],
  4059. "classifier_terms": []
  4060. }
  4061. },
  4062. {
  4063. "model": "coderedcms.coderedpage",
  4064. "pk": 5,
  4065. "fields": {
  4066. "page_ptr": 5,
  4067. "cover_image": 4,
  4068. "index_show_subpages": false,
  4069. "index_order_by": "",
  4070. "index_num_per_page": 10,
  4071. "custom_template": "",
  4072. "og_image": null,
  4073. "struct_org_type": "",
  4074. "struct_org_name": "",
  4075. "struct_org_logo": null,
  4076. "struct_org_image": null,
  4077. "struct_org_phone": "",
  4078. "struct_org_address_street": "",
  4079. "struct_org_address_locality": "",
  4080. "struct_org_address_region": "",
  4081. "struct_org_address_postal": "",
  4082. "struct_org_address_country": "",
  4083. "struct_org_geo_lat": null,
  4084. "struct_org_geo_lng": null,
  4085. "struct_org_hours": "[]",
  4086. "struct_org_actions": "[]",
  4087. "struct_org_extra_json": "",
  4088. "content_walls": "[]",
  4089. "index_classifiers": [],
  4090. "classifier_terms": [
  4091. 1,
  4092. 4
  4093. ]
  4094. }
  4095. },
  4096. {
  4097. "model": "coderedcms.coderedpage",
  4098. "pk": 6,
  4099. "fields": {
  4100. "page_ptr": 6,
  4101. "cover_image": 8,
  4102. "index_show_subpages": false,
  4103. "index_order_by": "",
  4104. "index_num_per_page": 10,
  4105. "custom_template": "",
  4106. "og_image": null,
  4107. "struct_org_type": "",
  4108. "struct_org_name": "",
  4109. "struct_org_logo": null,
  4110. "struct_org_image": null,
  4111. "struct_org_phone": "",
  4112. "struct_org_address_street": "",
  4113. "struct_org_address_locality": "",
  4114. "struct_org_address_region": "",
  4115. "struct_org_address_postal": "",
  4116. "struct_org_address_country": "",
  4117. "struct_org_geo_lat": null,
  4118. "struct_org_geo_lng": null,
  4119. "struct_org_hours": "[]",
  4120. "struct_org_actions": "[]",
  4121. "struct_org_extra_json": "",
  4122. "content_walls": "[]",
  4123. "index_classifiers": [],
  4124. "classifier_terms": [
  4125. 1
  4126. ]
  4127. }
  4128. },
  4129. {
  4130. "model": "coderedcms.coderedpage",
  4131. "pk": 7,
  4132. "fields": {
  4133. "page_ptr": 7,
  4134. "cover_image": 7,
  4135. "index_show_subpages": false,
  4136. "index_order_by": "",
  4137. "index_num_per_page": 10,
  4138. "custom_template": "",
  4139. "og_image": null,
  4140. "struct_org_type": "",
  4141. "struct_org_name": "",
  4142. "struct_org_logo": null,
  4143. "struct_org_image": null,
  4144. "struct_org_phone": "",
  4145. "struct_org_address_street": "",
  4146. "struct_org_address_locality": "",
  4147. "struct_org_address_region": "",
  4148. "struct_org_address_postal": "",
  4149. "struct_org_address_country": "",
  4150. "struct_org_geo_lat": null,
  4151. "struct_org_geo_lng": null,
  4152. "struct_org_hours": "[]",
  4153. "struct_org_actions": "[]",
  4154. "struct_org_extra_json": "",
  4155. "content_walls": "[]",
  4156. "index_classifiers": [],
  4157. "classifier_terms": [
  4158. 4
  4159. ]
  4160. }
  4161. },
  4162. {
  4163. "model": "coderedcms.coderedpage",
  4164. "pk": 8,
  4165. "fields": {
  4166. "page_ptr": 8,
  4167. "cover_image": 9,
  4168. "index_show_subpages": false,
  4169. "index_order_by": "",
  4170. "index_num_per_page": 10,
  4171. "custom_template": "",
  4172. "og_image": null,
  4173. "struct_org_type": "",
  4174. "struct_org_name": "",
  4175. "struct_org_logo": null,
  4176. "struct_org_image": null,
  4177. "struct_org_phone": "",
  4178. "struct_org_address_street": "",
  4179. "struct_org_address_locality": "",
  4180. "struct_org_address_region": "",
  4181. "struct_org_address_postal": "",
  4182. "struct_org_address_country": "",
  4183. "struct_org_geo_lat": null,
  4184. "struct_org_geo_lng": null,
  4185. "struct_org_hours": "[]",
  4186. "struct_org_actions": "[]",
  4187. "struct_org_extra_json": "",
  4188. "content_walls": "[]",
  4189. "index_classifiers": [],
  4190. "classifier_terms": [
  4191. 1
  4192. ]
  4193. }
  4194. },
  4195. {
  4196. "model": "coderedcms.coderedpage",
  4197. "pk": 9,
  4198. "fields": {
  4199. "page_ptr": 9,
  4200. "cover_image": 10,
  4201. "index_show_subpages": false,
  4202. "index_order_by": "",
  4203. "index_num_per_page": 10,
  4204. "custom_template": "",
  4205. "og_image": null,
  4206. "struct_org_type": "",
  4207. "struct_org_name": "",
  4208. "struct_org_logo": null,
  4209. "struct_org_image": null,
  4210. "struct_org_phone": "",
  4211. "struct_org_address_street": "",
  4212. "struct_org_address_locality": "",
  4213. "struct_org_address_region": "",
  4214. "struct_org_address_postal": "",
  4215. "struct_org_address_country": "",
  4216. "struct_org_geo_lat": null,
  4217. "struct_org_geo_lng": null,
  4218. "struct_org_hours": "[]",
  4219. "struct_org_actions": "[]",
  4220. "struct_org_extra_json": "",
  4221. "content_walls": "[]",
  4222. "index_classifiers": [],
  4223. "classifier_terms": []
  4224. }
  4225. },
  4226. {
  4227. "model": "coderedcms.coderedpage",
  4228. "pk": 10,
  4229. "fields": {
  4230. "page_ptr": 10,
  4231. "cover_image": null,
  4232. "index_show_subpages": false,
  4233. "index_order_by": "",
  4234. "index_num_per_page": 10,
  4235. "custom_template": "",
  4236. "og_image": null,
  4237. "struct_org_type": "",
  4238. "struct_org_name": "",
  4239. "struct_org_logo": null,
  4240. "struct_org_image": null,
  4241. "struct_org_phone": "",
  4242. "struct_org_address_street": "",
  4243. "struct_org_address_locality": "",
  4244. "struct_org_address_region": "",
  4245. "struct_org_address_postal": "",
  4246. "struct_org_address_country": "",
  4247. "struct_org_geo_lat": null,
  4248. "struct_org_geo_lng": null,
  4249. "struct_org_hours": "[]",
  4250. "struct_org_actions": "[]",
  4251. "struct_org_extra_json": "",
  4252. "content_walls": "[]",
  4253. "index_classifiers": [],
  4254. "classifier_terms": []
  4255. }
  4256. },
  4257. {
  4258. "model": "coderedcms.coderedpage",
  4259. "pk": 11,
  4260. "fields": {
  4261. "page_ptr": 11,
  4262. "cover_image": null,
  4263. "index_show_subpages": false,
  4264. "index_order_by": "",
  4265. "index_num_per_page": 10,
  4266. "custom_template": "",
  4267. "og_image": null,
  4268. "struct_org_type": "",
  4269. "struct_org_name": "",
  4270. "struct_org_logo": null,
  4271. "struct_org_image": null,
  4272. "struct_org_phone": "",
  4273. "struct_org_address_street": "",
  4274. "struct_org_address_locality": "",
  4275. "struct_org_address_region": "",
  4276. "struct_org_address_postal": "",
  4277. "struct_org_address_country": "",
  4278. "struct_org_geo_lat": null,
  4279. "struct_org_geo_lng": null,
  4280. "struct_org_hours": "[]",
  4281. "struct_org_actions": "[]",
  4282. "struct_org_extra_json": "",
  4283. "content_walls": "[]",
  4284. "index_classifiers": [],
  4285. "classifier_terms": []
  4286. }
  4287. },
  4288. {
  4289. "model": "coderedcms.coderedpage",
  4290. "pk": 12,
  4291. "fields": {
  4292. "page_ptr": 12,
  4293. "cover_image": null,
  4294. "index_show_subpages": false,
  4295. "index_order_by": "",
  4296. "index_num_per_page": 10,
  4297. "custom_template": "",
  4298. "og_image": null,
  4299. "struct_org_type": "",
  4300. "struct_org_name": "",
  4301. "struct_org_logo": null,
  4302. "struct_org_image": null,
  4303. "struct_org_phone": "",
  4304. "struct_org_address_street": "",
  4305. "struct_org_address_locality": "",
  4306. "struct_org_address_region": "",
  4307. "struct_org_address_postal": "",
  4308. "struct_org_address_country": "",
  4309. "struct_org_geo_lat": null,
  4310. "struct_org_geo_lng": null,
  4311. "struct_org_hours": "[]",
  4312. "struct_org_actions": "[]",
  4313. "struct_org_extra_json": "",
  4314. "content_walls": "[]",
  4315. "index_classifiers": [],
  4316. "classifier_terms": []
  4317. }
  4318. },
  4319. {
  4320. "model": "coderedcms.coderedpage",
  4321. "pk": 13,
  4322. "fields": {
  4323. "page_ptr": 13,
  4324. "cover_image": 4,
  4325. "index_show_subpages": false,
  4326. "index_order_by": "",
  4327. "index_num_per_page": 10,
  4328. "custom_template": "",
  4329. "og_image": null,
  4330. "struct_org_type": "",
  4331. "struct_org_name": "",
  4332. "struct_org_logo": null,
  4333. "struct_org_image": null,
  4334. "struct_org_phone": "",
  4335. "struct_org_address_street": "",
  4336. "struct_org_address_locality": "",
  4337. "struct_org_address_region": "",
  4338. "struct_org_address_postal": "",
  4339. "struct_org_address_country": "",
  4340. "struct_org_geo_lat": null,
  4341. "struct_org_geo_lng": null,
  4342. "struct_org_hours": "[]",
  4343. "struct_org_actions": "[]",
  4344. "struct_org_extra_json": "",
  4345. "content_walls": "[]",
  4346. "index_classifiers": [],
  4347. "classifier_terms": []
  4348. }
  4349. },
  4350. {
  4351. "model": "coderedcms.coderedpage",
  4352. "pk": 14,
  4353. "fields": {
  4354. "page_ptr": 14,
  4355. "cover_image": null,
  4356. "index_show_subpages": false,
  4357. "index_order_by": "",
  4358. "index_num_per_page": 10,
  4359. "custom_template": "",
  4360. "og_image": null,
  4361. "struct_org_type": "",
  4362. "struct_org_name": "",
  4363. "struct_org_logo": null,
  4364. "struct_org_image": null,
  4365. "struct_org_phone": "",
  4366. "struct_org_address_street": "",
  4367. "struct_org_address_locality": "",
  4368. "struct_org_address_region": "",
  4369. "struct_org_address_postal": "",
  4370. "struct_org_address_country": "",
  4371. "struct_org_geo_lat": null,
  4372. "struct_org_geo_lng": null,
  4373. "struct_org_hours": "[]",
  4374. "struct_org_actions": "[]",
  4375. "struct_org_extra_json": "",
  4376. "content_walls": "[]",
  4377. "index_classifiers": [],
  4378. "classifier_terms": []
  4379. }
  4380. },
  4381. {
  4382. "model": "coderedcms.coderedpage",
  4383. "pk": 15,
  4384. "fields": {
  4385. "page_ptr": 15,
  4386. "cover_image": null,
  4387. "index_show_subpages": false,
  4388. "index_order_by": "",
  4389. "index_num_per_page": 10,
  4390. "custom_template": "",
  4391. "og_image": null,
  4392. "struct_org_type": "",
  4393. "struct_org_name": "",
  4394. "struct_org_logo": null,
  4395. "struct_org_image": null,
  4396. "struct_org_phone": "",
  4397. "struct_org_address_street": "",
  4398. "struct_org_address_locality": "",
  4399. "struct_org_address_region": "",
  4400. "struct_org_address_postal": "",
  4401. "struct_org_address_country": "",
  4402. "struct_org_geo_lat": null,
  4403. "struct_org_geo_lng": null,
  4404. "struct_org_hours": "[]",
  4405. "struct_org_actions": "[]",
  4406. "struct_org_extra_json": "",
  4407. "content_walls": "[]",
  4408. "index_classifiers": [],
  4409. "classifier_terms": []
  4410. }
  4411. },
  4412. {
  4413. "model": "coderedcms.coderedpage",
  4414. "pk": 16,
  4415. "fields": {
  4416. "page_ptr": 16,
  4417. "cover_image": null,
  4418. "index_show_subpages": false,
  4419. "index_order_by": "",
  4420. "index_num_per_page": 10,
  4421. "custom_template": "",
  4422. "og_image": null,
  4423. "struct_org_type": "",
  4424. "struct_org_name": "",
  4425. "struct_org_logo": null,
  4426. "struct_org_image": null,
  4427. "struct_org_phone": "",
  4428. "struct_org_address_street": "",
  4429. "struct_org_address_locality": "",
  4430. "struct_org_address_region": "",
  4431. "struct_org_address_postal": "",
  4432. "struct_org_address_country": "",
  4433. "struct_org_geo_lat": null,
  4434. "struct_org_geo_lng": null,
  4435. "struct_org_hours": "[]",
  4436. "struct_org_actions": "[]",
  4437. "struct_org_extra_json": "",
  4438. "content_walls": "[]",
  4439. "index_classifiers": [],
  4440. "classifier_terms": []
  4441. }
  4442. },
  4443. {
  4444. "model": "coderedcms.coderedpage",
  4445. "pk": 17,
  4446. "fields": {
  4447. "page_ptr": 17,
  4448. "cover_image": null,
  4449. "index_show_subpages": false,
  4450. "index_order_by": "",
  4451. "index_num_per_page": 10,
  4452. "custom_template": "",
  4453. "og_image": null,
  4454. "struct_org_type": "",
  4455. "struct_org_name": "",
  4456. "struct_org_logo": null,
  4457. "struct_org_image": null,
  4458. "struct_org_phone": "",
  4459. "struct_org_address_street": "",
  4460. "struct_org_address_locality": "",
  4461. "struct_org_address_region": "",
  4462. "struct_org_address_postal": "",
  4463. "struct_org_address_country": "",
  4464. "struct_org_geo_lat": null,
  4465. "struct_org_geo_lng": null,
  4466. "struct_org_hours": "[]",
  4467. "struct_org_actions": "[]",
  4468. "struct_org_extra_json": "",
  4469. "content_walls": "[]",
  4470. "index_classifiers": [],
  4471. "classifier_terms": []
  4472. }
  4473. },
  4474. {
  4475. "model": "coderedcms.coderedpage",
  4476. "pk": 18,
  4477. "fields": {
  4478. "page_ptr": 18,
  4479. "cover_image": null,
  4480. "index_show_subpages": false,
  4481. "index_order_by": "",
  4482. "index_num_per_page": 10,
  4483. "custom_template": "",
  4484. "og_image": null,
  4485. "struct_org_type": "",
  4486. "struct_org_name": "",
  4487. "struct_org_logo": null,
  4488. "struct_org_image": null,
  4489. "struct_org_phone": "",
  4490. "struct_org_address_street": "",
  4491. "struct_org_address_locality": "",
  4492. "struct_org_address_region": "",
  4493. "struct_org_address_postal": "",
  4494. "struct_org_address_country": "",
  4495. "struct_org_geo_lat": null,
  4496. "struct_org_geo_lng": null,
  4497. "struct_org_hours": "[]",
  4498. "struct_org_actions": "[]",
  4499. "struct_org_extra_json": "",
  4500. "content_walls": "[]",
  4501. "index_classifiers": [],
  4502. "classifier_terms": []
  4503. }
  4504. },
  4505. {
  4506. "model": "coderedcms.coderedpage",
  4507. "pk": 19,
  4508. "fields": {
  4509. "page_ptr": 19,
  4510. "cover_image": 16,
  4511. "index_show_subpages": false,
  4512. "index_order_by": "",
  4513. "index_num_per_page": 10,
  4514. "custom_template": "",
  4515. "og_image": null,
  4516. "struct_org_type": "",
  4517. "struct_org_name": "",
  4518. "struct_org_logo": null,
  4519. "struct_org_image": null,
  4520. "struct_org_phone": "",
  4521. "struct_org_address_street": "",
  4522. "struct_org_address_locality": "",
  4523. "struct_org_address_region": "",
  4524. "struct_org_address_postal": "",
  4525. "struct_org_address_country": "",
  4526. "struct_org_geo_lat": null,
  4527. "struct_org_geo_lng": null,
  4528. "struct_org_hours": "[]",
  4529. "struct_org_actions": "[]",
  4530. "struct_org_extra_json": "",
  4531. "content_walls": "[]",
  4532. "index_classifiers": [],
  4533. "classifier_terms": []
  4534. }
  4535. },
  4536. {
  4537. "model": "coderedcms.coderedpage",
  4538. "pk": 20,
  4539. "fields": {
  4540. "page_ptr": 20,
  4541. "cover_image": null,
  4542. "index_show_subpages": false,
  4543. "index_order_by": "",
  4544. "index_num_per_page": 10,
  4545. "custom_template": "",
  4546. "og_image": null,
  4547. "struct_org_type": "",
  4548. "struct_org_name": "",
  4549. "struct_org_logo": null,
  4550. "struct_org_image": null,
  4551. "struct_org_phone": "",
  4552. "struct_org_address_street": "",
  4553. "struct_org_address_locality": "",
  4554. "struct_org_address_region": "",
  4555. "struct_org_address_postal": "",
  4556. "struct_org_address_country": "",
  4557. "struct_org_geo_lat": null,
  4558. "struct_org_geo_lng": null,
  4559. "struct_org_hours": "[]",
  4560. "struct_org_actions": "[]",
  4561. "struct_org_extra_json": "",
  4562. "content_walls": "[]",
  4563. "index_classifiers": [],
  4564. "classifier_terms": []
  4565. }
  4566. },
  4567. {
  4568. "model": "coderedcms.coderedpage",
  4569. "pk": 21,
  4570. "fields": {
  4571. "page_ptr": 21,
  4572. "cover_image": null,
  4573. "index_show_subpages": false,
  4574. "index_order_by": "",
  4575. "index_num_per_page": 10,
  4576. "custom_template": "",
  4577. "og_image": null,
  4578. "struct_org_type": "",
  4579. "struct_org_name": "",
  4580. "struct_org_logo": null,
  4581. "struct_org_image": null,
  4582. "struct_org_phone": "",
  4583. "struct_org_address_street": "",
  4584. "struct_org_address_locality": "",
  4585. "struct_org_address_region": "",
  4586. "struct_org_address_postal": "",
  4587. "struct_org_address_country": "",
  4588. "struct_org_geo_lat": null,
  4589. "struct_org_geo_lng": null,
  4590. "struct_org_hours": "[]",
  4591. "struct_org_actions": "[]",
  4592. "struct_org_extra_json": "",
  4593. "content_walls": "[]",
  4594. "index_classifiers": [],
  4595. "classifier_terms": []
  4596. }
  4597. },
  4598. {
  4599. "model": "coderedcms.coderedpage",
  4600. "pk": 22,
  4601. "fields": {
  4602. "page_ptr": 22,
  4603. "cover_image": null,
  4604. "index_show_subpages": false,
  4605. "index_order_by": "",
  4606. "index_num_per_page": 10,
  4607. "custom_template": "",
  4608. "og_image": null,
  4609. "struct_org_type": "",
  4610. "struct_org_name": "",
  4611. "struct_org_logo": null,
  4612. "struct_org_image": null,
  4613. "struct_org_phone": "",
  4614. "struct_org_address_street": "",
  4615. "struct_org_address_locality": "",
  4616. "struct_org_address_region": "",
  4617. "struct_org_address_postal": "",
  4618. "struct_org_address_country": "",
  4619. "struct_org_geo_lat": null,
  4620. "struct_org_geo_lng": null,
  4621. "struct_org_hours": "[]",
  4622. "struct_org_actions": "[]",
  4623. "struct_org_extra_json": "",
  4624. "content_walls": "[]",
  4625. "index_classifiers": [],
  4626. "classifier_terms": []
  4627. }
  4628. },
  4629. {
  4630. "model": "coderedcms.coderedpage",
  4631. "pk": 23,
  4632. "fields": {
  4633. "page_ptr": 23,
  4634. "cover_image": 16,
  4635. "index_show_subpages": false,
  4636. "index_order_by": "",
  4637. "index_num_per_page": 10,
  4638. "custom_template": "",
  4639. "og_image": null,
  4640. "struct_org_type": "",
  4641. "struct_org_name": "",
  4642. "struct_org_logo": null,
  4643. "struct_org_image": null,
  4644. "struct_org_phone": "",
  4645. "struct_org_address_street": "",
  4646. "struct_org_address_locality": "",
  4647. "struct_org_address_region": "",
  4648. "struct_org_address_postal": "",
  4649. "struct_org_address_country": "",
  4650. "struct_org_geo_lat": null,
  4651. "struct_org_geo_lng": null,
  4652. "struct_org_hours": "[]",
  4653. "struct_org_actions": "[]",
  4654. "struct_org_extra_json": "",
  4655. "content_walls": "[]",
  4656. "index_classifiers": [],
  4657. "classifier_terms": []
  4658. }
  4659. },
  4660. {
  4661. "model": "coderedcms.seosettings",
  4662. "pk": 1,
  4663. "fields": {
  4664. "site": [
  4665. "localhost",
  4666. 80
  4667. ],
  4668. "og_meta": true,
  4669. "twitter_meta": true,
  4670. "struct_meta": true,
  4671. "amp_pages": true
  4672. }
  4673. },
  4674. {
  4675. "model": "coderedcms.generalsettings",
  4676. "pk": 1,
  4677. "fields": {
  4678. "site": [
  4679. "localhost",
  4680. 80
  4681. ],
  4682. "from_email_address": "",
  4683. "search_num_results": 10,
  4684. "external_new_tab": true
  4685. }
  4686. },
  4687. {
  4688. "model": "coderedcms.adasettings",
  4689. "pk": 1,
  4690. "fields": {
  4691. "site": [
  4692. "localhost",
  4693. 80
  4694. ],
  4695. "skip_navigation": false
  4696. }
  4697. },
  4698. {
  4699. "model": "coderedcms.analyticssettings",
  4700. "pk": 1,
  4701. "fields": {
  4702. "site": [
  4703. "localhost",
  4704. 80
  4705. ],
  4706. "ga_tracking_id": "",
  4707. "ga_track_button_clicks": false
  4708. }
  4709. },
  4710. {
  4711. "model": "coderedcms.layoutsettings",
  4712. "pk": 1,
  4713. "fields": {
  4714. "site": [
  4715. "localhost",
  4716. 80
  4717. ],
  4718. "logo": 12,
  4719. "favicon": 3,
  4720. "navbar_color_scheme": "navbar-light",
  4721. "navbar_class": "bg-lightyellow",
  4722. "navbar_fixed": false,
  4723. "navbar_wrapper_fluid": true,
  4724. "navbar_content_fluid": false,
  4725. "navbar_collapse_mode": "navbar-expand-lg",
  4726. "navbar_format": "",
  4727. "navbar_search": false,
  4728. "frontend_theme": ""
  4729. }
  4730. },
  4731. {
  4732. "model": "coderedcms.socialmediasettings",
  4733. "pk": 1,
  4734. "fields": {
  4735. "site": [
  4736. "localhost",
  4737. 80
  4738. ],
  4739. "facebook": "",
  4740. "twitter": "",
  4741. "instagram": "",
  4742. "youtube": "",
  4743. "linkedin": "",
  4744. "googleplus": ""
  4745. }
  4746. },
  4747. {
  4748. "model": "website.cupcakespage",
  4749. "pk": 16,
  4750. "fields": {
  4751. "coderedpage_ptr": 16,
  4752. "body": "[]",
  4753. "description": "<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>",
  4754. "photo": 13,
  4755. "days_available": "Monday-Friday"
  4756. }
  4757. },
  4758. {
  4759. "model": "website.cupcakespage",
  4760. "pk": 17,
  4761. "fields": {
  4762. "coderedpage_ptr": 17,
  4763. "body": "[]",
  4764. "description": "<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>",
  4765. "photo": 14,
  4766. "days_available": "Tuesday/Thursday"
  4767. }
  4768. },
  4769. {
  4770. "model": "website.cupcakespage",
  4771. "pk": 18,
  4772. "fields": {
  4773. "coderedpage_ptr": 18,
  4774. "body": "[]",
  4775. "description": "<p>Rich, decadent cupcake with a whipped cocoa frosting, topped with sprinkles</p>",
  4776. "photo": 15,
  4777. "days_available": "Tuesday/Thursday"
  4778. }
  4779. },
  4780. {
  4781. "model": "website.cupcakespage",
  4782. "pk": 20,
  4783. "fields": {
  4784. "coderedpage_ptr": 20,
  4785. "body": "[]",
  4786. "description": "<p>Decadent chocolate chips with a soft, smooth cookie base</p>",
  4787. "photo": 17,
  4788. "days_available": "Monday-Friday"
  4789. }
  4790. },
  4791. {
  4792. "model": "website.cupcakespage",
  4793. "pk": 21,
  4794. "fields": {
  4795. "coderedpage_ptr": 21,
  4796. "body": "[]",
  4797. "description": "<p>Made with oatmeal and raisins for a warm, gooey and delicious treat</p>",
  4798. "photo": 18,
  4799. "days_available": "Monday-Friday"
  4800. }
  4801. },
  4802. {
  4803. "model": "website.cupcakespage",
  4804. "pk": 22,
  4805. "fields": {
  4806. "coderedpage_ptr": 22,
  4807. "body": "[]",
  4808. "description": "<p>Sweet buttery cookies with jam or melted hard candy in the center</p>",
  4809. "photo": 19,
  4810. "days_available": "Seasonal"
  4811. }
  4812. },
  4813. {
  4814. "model": "website.cupcakesindexpage",
  4815. "pk": 15,
  4816. "fields": {
  4817. "coderedpage_ptr": 15,
  4818. "body": "[]"
  4819. }
  4820. },
  4821. {
  4822. "model": "website.cupcakesindexpage",
  4823. "pk": 19,
  4824. "fields": {
  4825. "coderedpage_ptr": 19,
  4826. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"text-center p-md-4\", \"custom_id\": \"\"}, \"fluid\": true, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-headers\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>All About Our Cookies</h2><p>We have so many different flavors of cookies. Some of our favorites include:</p><ul><li>Chocolate and cream</li><li>Raspberry chocolate chip</li><li>Mint chocolate chip</li><li>Sugar cookie</li><li>Sugar cookie with sprinkles</li><li>Strawberry drop cookie</li><li>Lemon drop cookie</li><li>Old-fashioned chocolate chip cookie</li><li>Oatmeal raisin</li><li>Oatmeal chocolate chip</li></ul><p>Basically, we love cookies around here just as much as we love cupcakes! <br/>You can order a single cookie or order them by the half dozen and dozen. <br/>For large orders, please call ahead.</p>\", \"id\": \"a9c087b5-b051-42d7-a4e3-3c66f1d83867\"}]}, \"id\": \"9fbd5acf-d06a-4e56-b828-0703ed4f9e67\"}]}, \"id\": \"01ef6a8e-37f2-4ce4-a702-05ae5098a822\"}]"
  4827. }
  4828. },
  4829. {
  4830. "model": "website.webpage",
  4831. "pk": 3,
  4832. "fields": {
  4833. "coderedpage_ptr": 3,
  4834. "body": "[{\"type\": \"hero\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": true, \"is_parallax\": false, \"background_image\": 4, \"tile_image\": false, \"background_color\": \"\", \"foreground_color\": \"\", \"content\": [{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>For every occasion</h2>\", \"id\": \"c0053a9b-1a82-42b6-b245-a761f9c214de\"}, {\"type\": \"button\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"bg-cherry text-white\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": null, \"doc_link\": null, \"other_link\": \"http://example.com\", \"button_title\": \"Learn More\", \"button_style\": \"\", \"button_size\": \"btn-lg\"}, \"id\": \"b2a7312c-ed5f-4bf6-bf4a-216a487997ed\"}]}, \"id\": \"bfe5598d-debe-469c-a717-4912088aaa84\"}]}, \"id\": \"ba906ddb-4b68-4f41-8881-94533e90c452\"}]}, \"id\": \"c8224f84-b1d8-4531-82b5-d5302b0bba39\"}, {\"type\": \"cardgrid\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"py-4\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"card\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"image\": null, \"title\": \"Mini Cupcakes\", \"subtitle\": \"\", \"description\": \"<p>The miniature versions of our famous, mouthwatering cupcakes</p>\", \"links\": [{\"type\": \"Links\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"bg-cherry text-white\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 8, \"doc_link\": null, \"other_link\": \"\", \"button_title\": \"Mini Cupcakes\", \"button_style\": \"\", \"button_size\": \"\"}, \"id\": \"28dbf8e7-7dae-4a43-a047-7208e59db01b\"}]}, \"id\": \"f605e009-f263-4337-b2ae-0e4239d198f0\"}, {\"type\": \"card\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"image\": null, \"title\": \"Cupcakes\", \"subtitle\": \"\", \"description\": \"<p>These cupcakes are made simply but taste divine.</p>\", \"links\": [{\"type\": \"Links\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"bg-cherry text-white\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 15, \"doc_link\": null, \"other_link\": \"\", \"button_title\": \"Cupcakes\", \"button_style\": \"\", \"button_size\": \"\"}, \"id\": \"5b11905a-4f9c-4a81-b6fc-b59ed79fdfbb\"}]}, \"id\": \"b6cab896-250d-4934-8eb9-bf3cec2ad95d\"}, {\"type\": \"card\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"image\": null, \"title\": \"Mini Cookies\", \"subtitle\": \"\", \"description\": \"<p>Sometimes you have to chase a cupcake with a mini cookie. We don&#x27;t write the rules.</p>\", \"links\": [{\"type\": \"Links\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"bg-cherry text-white\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 19, \"doc_link\": null, \"other_link\": \"#\", \"button_title\": \"Mini Cookies\", \"button_style\": \"\", \"button_size\": \"\"}, \"id\": \"b06175f4-dca9-4a9a-8cdf-519581c2ac5c\"}]}, \"id\": \"4a52846e-e758-4057-973c-89432b123b1a\"}]}, \"id\": \"8cc99b37-ea3b-488a-98e1-ab668e6006d8\"}, {\"type\": \"hero\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": true, \"is_parallax\": false, \"background_image\": null, \"tile_image\": false, \"background_color\": \"#f75990\", \"foreground_color\": \"#000000\", \"content\": [{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"text-white\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Our Cupcakes Taste Like Heaven</h2><p>That&#x27;s because we make our cupcakes with love. Every cupcake is handcrafted to be the best cupcake you&#x27;ve ever had. We&#x27;re not even exaggerating. Our customers tell us all of the time that our cupcakes have improved their day.</p>\", \"id\": \"ec9c9660-7fe8-4b16-a9f5-a354cd5a4754\"}]}, \"id\": \"c07d559a-1c0f-4d43-b579-467d131c9aa9\"}]}, \"id\": \"7a4d2db9-8c4c-4de1-84ee-509bddd68b03\"}]}, \"id\": \"91cbf66b-b418-470c-a6df-4590e752c2ca\"}, {\"type\": \"hero\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": true, \"is_parallax\": false, \"background_image\": 7, \"tile_image\": false, \"background_color\": \"\", \"foreground_color\": \"\", \"content\": [{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"text-white\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>So Delicious! Fresh Ingredients, Made With Love</h2>\", \"id\": \"76804627-4910-4261-9e5e-e584b41f6159\"}]}, \"id\": \"55235a5a-f4ab-44ce-9385-42f9a4b6e476\"}]}, \"id\": \"11282405-3395-449f-8045-9d76e0d7f436\"}]}, \"id\": \"65274a77-b1e3-4612-9e89-86cc26bf993f\"}]"
  4835. }
  4836. },
  4837. {
  4838. "model": "website.webpage",
  4839. "pk": 8,
  4840. "fields": {
  4841. "coderedpage_ptr": 8,
  4842. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"6\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>About Our Mini Cupcakes</h2><p></p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\u00e9e jelly toffee souffl\\u00e9 muffin drag\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p>Jujubes apple pie cake. Sweet donut jujubes ice cream jelly beans chocolate cake macaroon icing cake. Candy canes powder sugar plum biscuit croissant. Drag\\u00e9e drag\\u00e9e biscuit. Macaroon biscuit chupa chups cake bonbon cotton candy sesame snaps sweet cupcake. Apple pie oat cake lollipop. Pudding tiramisu cookie sweet cake danish sweet toffee croissant.</p>\", \"id\": \"9c65ab5b-9000-4300-a995-94b39660b040\"}]}, \"id\": \"7e990d4d-06ac-4b75-9861-cd049350e830\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"6\", \"content\": [{\"type\": \"image\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"image\": 10}, \"id\": \"e3031971-107e-4303-b7d4-193d772a81bd\"}]}, \"id\": \"47b6b538-76f0-4f2f-a449-c62763ac8f6a\"}]}, \"id\": \"ef25508b-ca49-4fc7-acda-ff51c13a5900\"}, {\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"6\", \"content\": [{\"type\": \"image\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"image\": 4}, \"id\": \"1ba78a32-aaed-47c8-8176-9379a7944091\"}]}, \"id\": \"8918293f-c112-4495-93f0-98dd5e38ebac\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"6\", \"content\": [{\"type\": \"text\", \"value\": \"<h4>Mini Cupcake Flavors</h4><ul><li>Vanilla</li><li>Chocolate</li><li>Strawberry</li><li>Blueberry</li><li>White Raspberry</li><li>Orange Creamsicle</li><li>Vanilla/Chocolate Swirl</li><li>Birthday Party Confetti</li><li>&quot;Cupcake Dirt&quot; with gummy worms</li><li>Lemonberry</li></ul>\", \"id\": \"d1da67bf-38a3-451a-9806-ba65c9dd90db\"}]}, \"id\": \"d06dbc85-3b2a-4adf-a254-5f02beae249a\"}]}, \"id\": \"46da3ed8-a2d3-4b8f-97a4-10859b4515b3\"}]"
  4843. }
  4844. },
  4845. {
  4846. "model": "website.webpage",
  4847. "pk": 9,
  4848. "fields": {
  4849. "coderedpage_ptr": 9,
  4850. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Where we came from</h2><p> </p><p>Marshmallow pastry pie macaroon jelly pastry. Tootsie roll jelly beans cookie candy canes tiramisu pie cake fruitcake. Sweet roll oat cake gummies. Chocolate cheesecake chupa chups candy canes caramels liquorice. Chocolate cake dessert cookie. Drag\\u00e9e jelly toffee souffl\\u00e9 muffin drag\\u00e9e croissant toffee brownie. Bonbon jujubes sweet roll. Pastry fruitcake sweet chocolate bar drag\\u00e9e cookie. Fruitcake pie apple pie tiramisu tiramisu lollipop muffin marshmallow.</p><p>Toffee pie cotton candy. Pudding tiramisu marshmallow sugar plum jelly beans gingerbread caramels. Chocolate cake marzipan danish macaroon. Chocolate bar biscuit sesame snaps muffin. Chocolate cake halvah fruitcake cheesecake cake. Lollipop marzipan jelly toffee lemon drops chocolate caramels. Jelly-o jelly caramels icing jelly-o tart bonbon lemon drops.</p><p></p><h2>Who we are</h2><p> </p><p>Chocolate cake tiramisu tart bear claw brownie wafer. Pie sweet jelly croissant gingerbread. Tart gummies candy canes gingerbread. Lemon drops marzipan cupcake tootsie roll jelly. Chocolate cake sweet roll danish. Souffl\\u00e9 candy canes souffl\\u00e9 marshmallow powder. Croissant cake jelly powder oat cake ice cream. Tart biscuit candy icing toffee caramels chocolate cake. Jelly-o tart cotton candy marshmallow. Sweet roll tootsie roll apple pie cotton candy sugar plum apple pie gingerbread.</p><p>Donut halvah donut macaroon. Sesame snaps jelly-o tootsie roll. Halvah liquorice pudding biscuit pastry bear claw. Tart danish sweet roll marshmallow jelly beans dessert. Muffin dessert marzipan gingerbread. Apple pie caramels ice cream icing sweet. Bonbon fruitcake tiramisu. Cheesecake pie cotton candy cake.</p><p>Gummies jelly beans bonbon cheesecake oat cake pudding gingerbread chocolate cake cotton candy. Carrot cake lemon drops jelly beans chocolate bar sugar plum carrot cake fruitcake jelly-o donut. Ice cream souffl\\u00e9 croissant muffin souffl\\u00e9 cake. Muffin gummi bears croissant jujubes cheesecake. Drag\\u00e9e gingerbread topping pastry cake dessert donut. Croissant halvah croissant souffl\\u00e9 cupcake caramels. Brownie chocolate powder tart. Jelly muffin donut sweet halvah sweet roll sesame snaps powder cotton candy.</p>\", \"id\": \"9d4ffbc9-d70a-4622-b8e7-5396e8c8a2a4\"}]}, \"id\": \"29de8ef4-d502-4bb7-9a78-0d247cbe0b0e\"}]}, \"id\": \"fa987783-d957-416a-8891-cdaa2cd3bbe8\"}]"
  4851. }
  4852. },
  4853. {
  4854. "model": "website.webpage",
  4855. "pk": 13,
  4856. "fields": {
  4857. "coderedpage_ptr": 13,
  4858. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>We would love to hear from you!</h2><p>Please select the choice below that reflects what you need!</p><p></p><p><a id=\\\"10\\\" linktype=\\\"page\\\">Custom Cupcake Order</a></p><p><a id=\\\"11\\\" linktype=\\\"page\\\">Career Interest</a></p><p><a id=\\\"12\\\" linktype=\\\"page\\\">General Inquiry</a></p>\", \"id\": \"b41131f3-c698-48b0-8478-4d735ab37a60\"}]}, \"id\": \"cb0320ba-c856-4164-b968-546eea30abd0\"}]}, \"id\": \"6846898a-ffca-458d-b247-c7310e031b59\"}]"
  4859. }
  4860. },
  4861. {
  4862. "model": "website.webpage",
  4863. "pk": 14,
  4864. "fields": {
  4865. "coderedpage_ptr": 14,
  4866. "body": "[{\"type\": \"hero\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": true, \"is_parallax\": false, \"background_image\": 4, \"tile_image\": false, \"background_color\": \"\", \"foreground_color\": \"\", \"content\": [{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<p>Insiders Corner</p>\", \"id\": \"db7652f4-bf58-4e48-99b1-9dc31796477e\"}]}, \"id\": \"a39eed92-08c2-4858-a1c2-de5a2d35ff36\"}]}, \"id\": \"2b996476-1a00-4a86-aa59-52e26031ab3e\"}]}, \"id\": \"8c8d2257-b12d-498c-9185-149662370c67\"}, {\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Cool Stuff for Members ONLY</h2><p>Tweeting a baseball chew master&#x27;s slippers. I am the best you have cat to be kitten me right meow. All of a sudden cat goes crazy fish i must find my red catnip fishy fish asdflkjaertvlkjasntvkjn (sits on keyboard) so making sure that fluff gets into the owner&#x27;s eyes. Scratch my tummy actually i hate you now fight me cough. Attack the child shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff play riveting piece on synthesizer keyboard so catty ipsum rub face on everything.</p><p>Twitch tail in permanent irritation i see a bird i stare at it i meow at it i do a wiggle come here birdy meow and walk away yet meow meow, headbutt owner&#x27;s knee pretend not to be evil. Fall over dead (not really but gets sypathy) love and coo around boyfriend who purrs and makes the perfect moonlight eyes so i can purr and swat the glittery gleaming yarn to him (the yarn is from a $125 sweater) crash against wall but walk away like nothing happened.</p>\", \"id\": \"9a2d1a9b-285a-4885-9988-df6a255fc589\"}]}, \"id\": \"344bf66f-db38-4abb-8415-7ce3a2d7b5df\"}]}, \"id\": \"0da56d2c-ce6c-40a8-b141-5a37f6b55a1f\"}]"
  4867. }
  4868. },
  4869. {
  4870. "model": "website.webpage",
  4871. "pk": 23,
  4872. "fields": {
  4873. "coderedpage_ptr": 23,
  4874. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-headers text-center\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"\", \"content\": [{\"type\": \"text\", \"value\": \"<h3>Our baked goods make people smile</h3><p>That&#x27;s why we do what we do. We believe that cupcakes and<br/> cookies make the world a better place.</p>\", \"id\": \"b485396d-090d-435d-8ba7-16ee8bcf0369\"}]}, \"id\": \"701889e2-47ab-4e5d-8aec-cdddd164f76d\"}]}, \"id\": \"0f7ed77d-c826-4083-b6a7-2a79938e869c\"}, {\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-headers text-center bg-lightyellow\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"12\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Our Cupcakes</h2>\", \"id\": \"5fbb5dba-6264-4c74-a699-940271b65a18\"}, {\"type\": \"page_list\", \"value\": {\"settings\": {\"custom_template\": \"coderedcms/blocks/pagelist_article_card_deck.html\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"indexed_by\": 15, \"classified_by\": null, \"show_preview\": false, \"num_posts\": 4}, \"id\": \"d27887f9-09ca-44c4-907d-4c8c9c69abbe\"}]}, \"id\": \"890b9232-884c-4414-ae8f-69cd908ca6e1\"}, {\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"cherry-headers text-center\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"12\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>Our Cookies</h2>\", \"id\": \"1fb07b1b-e5fe-4a97-9de0-88ddbf4516c0\"}, {\"type\": \"page_list\", \"value\": {\"settings\": {\"custom_template\": \"coderedcms/blocks/pagelist_article_card_deck.html\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"indexed_by\": 19, \"classified_by\": null, \"show_preview\": false, \"num_posts\": 4}, \"id\": \"6d29bae7-a383-40e4-8b3d-35163c208d59\"}]}, \"id\": \"1a4be344-2d79-47b0-997d-2781885a0d31\"}]}, \"id\": \"f96bf520-7eba-4733-8877-c08d9c5db67f\"}]"
  4875. }
  4876. },
  4877. {
  4878. "model": "website.formpage",
  4879. "pk": 10,
  4880. "fields": {
  4881. "coderedpage_ptr": 10,
  4882. "body": "[]",
  4883. "to_address": "bettybakery@simplesweetdessert.com",
  4884. "reply_address": "",
  4885. "subject": "I want to order custom cupcakes",
  4886. "save_to_database": true,
  4887. "thank_you_page": null,
  4888. "button_text": "Submit",
  4889. "button_style": "btn-danger",
  4890. "button_size": "btn-lg",
  4891. "button_css_class": "",
  4892. "form_css_class": "",
  4893. "form_id": "",
  4894. "form_golive_at": null,
  4895. "form_expire_at": null,
  4896. "spam_protection": true
  4897. }
  4898. },
  4899. {
  4900. "model": "website.formpage",
  4901. "pk": 11,
  4902. "fields": {
  4903. "coderedpage_ptr": 11,
  4904. "body": "[]",
  4905. "to_address": "bettybakery@simplesweetdessert.com",
  4906. "reply_address": "",
  4907. "subject": "I want to order custom cupcakes",
  4908. "save_to_database": true,
  4909. "thank_you_page": null,
  4910. "button_text": "Submit",
  4911. "button_style": "btn-danger",
  4912. "button_size": "btn-lg",
  4913. "button_css_class": "",
  4914. "form_css_class": "",
  4915. "form_id": "",
  4916. "form_golive_at": null,
  4917. "form_expire_at": null,
  4918. "spam_protection": true
  4919. }
  4920. },
  4921. {
  4922. "model": "website.formpage",
  4923. "pk": 12,
  4924. "fields": {
  4925. "coderedpage_ptr": 12,
  4926. "body": "[]",
  4927. "to_address": "bettybakery@simplesweetdessert.com",
  4928. "reply_address": "",
  4929. "subject": "I want to order custom cupcakes",
  4930. "save_to_database": true,
  4931. "thank_you_page": null,
  4932. "button_text": "Submit",
  4933. "button_style": "btn-danger",
  4934. "button_size": "btn-lg",
  4935. "button_css_class": "",
  4936. "form_css_class": "",
  4937. "form_id": "",
  4938. "form_golive_at": null,
  4939. "form_expire_at": null,
  4940. "spam_protection": true
  4941. }
  4942. },
  4943. {
  4944. "model": "website.articleindexpage",
  4945. "pk": 4,
  4946. "fields": {
  4947. "coderedpage_ptr": 4,
  4948. "body": "[{\"type\": \"row\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\"}, \"fluid\": false, \"content\": [{\"type\": \"content\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"column_breakpoint\": \"md\"}, \"column_size\": \"12\", \"content\": [{\"type\": \"text\", \"value\": \"<h2>About Our Blog</h2><p></p><p>Powder drag\\u00e9e caramels pudding. Cotton candy bear claw muffin sweet roll. Cake caramels donut dessert carrot cake.</p><p>Danish icing wafer pudding lemon drops cake oat cake pastry candy. Macaroon gingerbread cookie cheesecake. Sweet jelly-o chocolate cake powder.</p><p>Chocolate cake apple pie pastry pastry chocolate cake. Bear claw jujubes danish wafer caramels chocolate cake. Lemon drops cake gummi bears oat cake croissant brownie cake jelly-o chocolate bar.</p>\", \"id\": \"99b5715d-2e28-4d47-9518-348b8f5e8c7c\"}]}, \"id\": \"ad8e2b45-1f1b-46bd-a210-58efba613150\"}]}, \"id\": \"97a77cdd-a044-4ad5-a871-fe6de53475aa\"}]",
  4949. "show_images": true,
  4950. "show_captions": true,
  4951. "show_meta": true,
  4952. "show_preview_text": true
  4953. }
  4954. },
  4955. {
  4956. "model": "website.articlepage",
  4957. "pk": 5,
  4958. "fields": {
  4959. "coderedpage_ptr": 5,
  4960. "body": "[{\"type\": \"text\", \"value\": \"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\", \"id\": \"f7f49dc6-3d11-42d6-a836-371e5840ac27\"}, {\"type\": \"button\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 3, \"doc_link\": null, \"other_link\": \"\", \"button_title\": \"Learn More\", \"button_style\": \"btn-danger\", \"button_size\": \"\"}, \"id\": \"edf50607-6061-4ca3-8a2b-c8b98015dfd0\"}]",
  4961. "caption": "We reveal our origins.",
  4962. "author": [
  4963. "admin"
  4964. ],
  4965. "author_display": "Betty Baker",
  4966. "date_display": "2020-09-03"
  4967. }
  4968. },
  4969. {
  4970. "model": "website.articlepage",
  4971. "pk": 6,
  4972. "fields": {
  4973. "coderedpage_ptr": 6,
  4974. "body": "[{\"type\": \"text\", \"value\": \"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\", \"id\": \"f7f49dc6-3d11-42d6-a836-371e5840ac27\"}, {\"type\": \"button\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 3, \"doc_link\": null, \"other_link\": \"\", \"button_title\": \"Learn More\", \"button_style\": \"btn-danger\", \"button_size\": \"\"}, \"id\": \"edf50607-6061-4ca3-8a2b-c8b98015dfd0\"}]",
  4975. "caption": "We reveal our origins.",
  4976. "author": [
  4977. "admin"
  4978. ],
  4979. "author_display": "Betty Baker",
  4980. "date_display": "2020-09-03"
  4981. }
  4982. },
  4983. {
  4984. "model": "website.articlepage",
  4985. "pk": 7,
  4986. "fields": {
  4987. "coderedpage_ptr": 7,
  4988. "body": "[{\"type\": \"text\", \"value\": \"<p></p><p>Chupa chups sugar plum liquorice sesame snaps candy canes wafer oat cake liquorice. Marzipan donut tiramisu icing cheesecake lollipop cookie danish. Carrot cake wafer pie gingerbread icing sesame snaps. Tootsie roll fruitcake pudding caramels macaroon ice cream. Oat cake icing sugar plum. Jelly beans biscuit jelly beans carrot cake tiramisu tootsie roll.</p><p>Pie cookie tart danish wafer gummi bears toffee cookie jelly beans. Lemon drops brownie fruitcake cotton candy cake. Pastry oat cake bonbon. Gummies icing muffin. Chocolate bar carrot cake cupcake cookie drag\\u00e9e. Cupcake cotton candy pie cotton candy chupa chups dessert pastry gummi bears candy canes.</p><p>Candy marzipan dessert jelly beans lollipop drag\\u00e9e. Gummies caramels jelly sesame snaps bonbon tootsie roll. Bear claw drag\\u00e9e biscuit cupcake croissant toffee danish ice cream. Drag\\u00e9e marshmallow pudding marshmallow cotton candy toffee marzipan. Cookie chocolate cake fruitcake sweet roll dessert. Pie muffin jelly tiramisu wafer. Cookie cookie croissant powder gummi bears chocolate sweet roll candy ice cream.</p>\", \"id\": \"f7f49dc6-3d11-42d6-a836-371e5840ac27\"}, {\"type\": \"button\", \"value\": {\"settings\": {\"custom_template\": \"\", \"custom_css_class\": \"\", \"custom_id\": \"\", \"ga_tracking_event_category\": \"\", \"ga_tracking_event_label\": \"\"}, \"page_link\": 3, \"doc_link\": null, \"other_link\": \"\", \"button_title\": \"Learn More\", \"button_style\": \"btn-danger\", \"button_size\": \"\"}, \"id\": \"edf50607-6061-4ca3-8a2b-c8b98015dfd0\"}]",
  4989. "caption": "We reveal our origins.",
  4990. "author": [
  4991. "admin"
  4992. ],
  4993. "author_display": "Betty Baker",
  4994. "date_display": "2020-09-03"
  4995. }
  4996. }
  4997. ]