-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.preset-data.json
1369 lines (1369 loc) · 65.2 KB
/
.preset-data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data": {
"aboutme": {
"_sort_create_date": 1421993100,
"_sort_last_updated": 1421993160,
"bio": "Han Solo, along with his friend Chewbacca, was hired by Obi-Wan Kenobi and Luke Skywalker to provide passage to Alderaan. Han boasted that his starship, the Millennium Falcon, could make the Kessel Run in less than 12 parsecs; whether that was true is unknown, but he needed the job. The smuggler was deep in debt to crime lord Jabba the Hutt, who had placed a bounty on his head. In a sit-down standoff at the Mos Eisley cantina, Han blasted Greedo, one of Jabba’s bounty hunters looking to collect a handsome sum for the Corellian. He later had a run in with the gangster himself, convincing Jabba to give him more time -- though it would cost 15% extra.\n\nThe group departed Tatooine, blasting their way out past Imperial stormtroopers who were searching for Luke’s droids. On the trip, it became clear that Han didn’t believe in the Force, saying, “There's no mystical energy field that controls my destiny.” Finally, they arrived at Alderaan -- or where Alderaan should have been. It had been completely blown away by the Empire’s Death Star, and the Millennium Falcon was soon caught in the space station’s tractor beam. On the Death Star, they rescued Princess Leia Organa -- with whom Han bickered intensely -- but lost Obi-Wan. \n\nThey escaped to Yavin 4, location of the hidden Rebel base, and delivered stolen Death Star plans to the Alliance. While the fledgling group was planning an attack on the Imperial outpost, Han collected a reward for rescuing the Princess and planned to leave -- a decision that disappointed his new friends. “I know what I’m doing,” he told Chewbacca. Toward the battle’s end, with Luke about to be blasted by Darth Vader, Han and Chewie returned in the Millennium Falcon. They cleared the TIE fighters off Luke’s tail, and he delivered a precise shot, destroying the dreaded Death Star.",
"bio_picture": {
"height": 820,
"resize_url": "http://lh3.ggpht.com/Y7DIRW5VQiSHODePupf_v2_zV5u-eIGrXcyGta1IRyqPyiwsAFBznKUmU8aIBah7GG8dF8cdps7e_Mtqo_UYklh5y7eing",
"url": "/webhook-uploads/1421992488311_star-wars-episode-vi-han-solo.jpg",
"width": 1920
},
"create_date": "2015-01-22T22:05:00-08:00",
"email": "[email protected]",
"facebook": "",
"github": "hansolo",
"homepage_hello": "Hokey religions and ancient weapons are no match for a good blaster at your side.",
"hometown": "A galaxy far, far, away",
"initials": "HS",
"last_updated": "2015-01-22T22:06:00-08:00",
"name": "Han Solo",
"notable_work": [
{
"description": "Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a wookiee and two droids to save the universe from the Empire's world-destroying battle-station, while also attempting to rescue Princess Leia from the evil Darth Vader.",
"name": "A New Hope",
"role": "Scoundrel",
"time_period": "1997",
"url": "http://www.imdb.com/title/tt0076759/?ref_=nv_sr_2"
},
{
"description": "After the rebels have been brutally overpowered by the Empire on their newly established base, Luke Skywalker takes advanced Jedi training with Master Yoda, while his friends are pursued by Darth Vader as part of his plan to capture Luke.",
"name": "The Empire Strikes Back",
"role": "Scoundrel",
"time_period": "1980",
"url": "http://www.imdb.com/title/tt0080684/?ref_=fn_al_tt_2"
},
{
"description": "After rescuing Han Solo from the palace of Jabba the Hutt, the rebels attempt to destroy the second Death Star, while Luke struggles to make Vader shake off of the dark side of the Force.",
"name": "Return of the Jedi",
"role": "General",
"time_period": "1983",
"url": "http://www.imdb.com/title/tt0086190/?ref_=fn_al_tt_3"
}
],
"picture_of_you": {
"height": 292,
"resize_url": "http://lh3.ggpht.com/moGmBkpNSaCwN7zL61C_5CgsiH-hpvvA5pzSrUDVY1k23hF9jXl-ahxYg7JSCLpfSfpaGPuockYU4TUnpU_mppWrLX2WVQ",
"size": 68886,
"type": "image/png",
"url": "/webhook-uploads/1421992318614_avatar.png",
"width": 292
},
"preview_url": "c18b6458-630f-c60d-c2d6-727001bab968",
"reddit": "hansolo",
"resume_intro": "I'm a pilot with experience in getting goods from one part of the galaxy to the other. I once made the Kessel Run in 12 Parsecs. Lately I'm looking for something with a little more adventure. Saving a princess perhaps.",
"steam": "hansolo",
"twitter": "hansolo",
"youtube": "hansolo"
},
"article": {
"-JgNHwBoGsZZ_IXXW1uK": {
"_sort_create_date": 1422041760,
"_sort_last_updated": 1422044340,
"_sort_publish_date": 1422041760,
"body": "Han Solo is a character in the original trilogy and sequel trilogy of the Star Wars universe. He is portrayed by Harrison Ford. He and his co-pilot, Chewbacca, become involved in the Rebel Alliance which opposes the Galactic Empire. During the course of the Star Wars story, he becomes a chief figure in the Alliance and succeeding galactic governments. Star Wars creator George Lucas described the character as \"a loner who realizes the importance of being part of a group and helping for the common good\".\n\n* This is how you\n* make\n* a list.\n\n## Appearances\n\n### Original trilogy\n\nIntroduced in Star Wars (1977), Han Solo and Chewbacca are indebted to Jabba the Hutt after the loss of valuable cargo.\n\n![center](http://solo-data.webhook.org/webhook-uploads/1422041596942_han-solo.jpeg)\n\nOn Tatooine, Solo accepts a charter to transport Luke Skywalker, Ben Kenobi, C-3PO and R2-D2 to Alderaan in his Millennium Falcon spaceship for a payment which will help him clear debt. But when the crew and passengers arrive at the planet's coordinates, they discover that Alderaan has been destroyed by the Death Star. The Falcon is then captured and held within the battle station, however Han Solo, Chewbacca and his passengers evade capture by hiding in the ship smuggling compartments. While trying to find a way to escape Luke Skywalker discovers that Princess Leia Organa is being held captive aboard the station. Enticed by the likelihood of a large reward, Solo and Chewbacca help Skywalker rescue the princess and escape from the Death Star.\n\n> This is how you handle a blockquote. Here is what a sorta long block quote looks like.\n\nAfter delivering Skywalker, Leia and the droids to the Rebel Alliance, Solo and his Wookiee co-pilot receive payment for their services. Unfortunately the Millenium Falcon has been tracked to the Rebel Alliance moon base by the Death Star. The rebels plan to attack the space station and exploit a weakness in the space station's defences. Solo initially does not want to get involved in the planned attack because,'What good's a reward if you ain't around to use it?'. Solo leaves with his reward and the rebels attack the Death Star. However, Solo has a change of heart and returns to save Luke's life during the film's climactic battle scene, ultimately enabling Luke to destroy the Death Star. For his heroics, Solo is presented with a medal of honour.\n\nIn The Empire Strikes Back (1980), Han Solo continues to assist the Rebels against the Empire.\n\n![full](http://solo-data.webhook.org/webhook-uploads/1422041649086_star-wars-episode-vi-han-solo.jpg)\n\nHan once again risks his life to save Luke Skywalker by braving a snowstorm on the ice planet Hoth to rescue his wounded friend. When the Empire attacks the Rebel base, Solo transports Chewbacca, Leia Organa and C-3PO to Cloud City where his old friend Lando Calrissian (Cloud City's administrator) operates to hide from Imperial agents. When bounty hunter Boba Fett tracks the Falcon to Cloud City, Darth Vader forces Calrissian to help capture Solo who is then sealed in carbonite for delivery to Jabba the Hutt. Lando is able to free Vader's other captives but their rescue attempt of Solo fails and Fett is able to escape with Solo's frozen body.\n\nDuring Return of the Jedi (1983), Han Solo is still frozen until Leia Organa and Jedi Knight Luke Skywalker, and Lando infiltrate Jabba the Hutt's palace and free him but they're caught by Jabba before they can escape. When Jabba orders them to be executed, Solo helps Luke, Leia, and Lando in defeating Jabba and his henchmen before escaping and defeating Boba Fett.\n\n![right](http://solo-data.webhook.org/webhook-uploads/1422041747884_Han-Solo-han-solo-30503102-557-378.png)\n\nReunited with the Rebels, Solo is commissioned as a General. Along with Leia and Chewbacca, he goes to the forest moon of Endor and leads a team deactivating the force fields protecting the Empire's second Death Star, in which they are aided by the Ewoks while Luke fights the Emperor on the Death Star. When the Death Star is destroyed, Solo sees Leia's concern for Luke and offers to step aside for the young Jedi to court her. However, Leia reveals to Han's surprise that Luke is her brother, and thus will obviously have no objection to his friend's relationship with her. At the end of the film, Solo joins the Rebels in celebrating the destruction of the second Death Star and the Empire. At the end, he and Leia declare their love for each other while reuniting with Luke and Lando as well.\n\n### Sequal Trilogy\n\nHarrison Ford will be in Star Wars: The Force Awakens, the first installment of the sequel trilogy which will be released on December 18, 2015. The film will take place 30 years after the events in Return of the Jedi.\n\n<div class=\"video\">\n<iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/OMOVFvcNfvE\" frameborder=\"0\" allowfullscreen></iframe>\n</div>\n\n### Expanded Universe\n\nBrian Daley wrote a series of novels, the first published in 1979, exploring Han Solo and Chewbecca's smuggling adventures, and Ann C. Crispin's The Han Solo Trilogy (1997–1998) further develops the character's backstory. Crispin's books depict Solo as a beggar and pickpocket throughout much of his youth. He becomes a pilot and, in the process of undermining a religious fraud, falls in love with Bria Tharen, who disappears before Solo joins the Imperial Navy. Solo loses his commission and is cashiered when he refuses an order to skin Chewbacca for commandeering a ship carrying Wookiee children destined for slavery; Chewbacca, in turn, swears a \"life-debt\" to Solo. The two become smugglers, and help repel an Imperial blockade of a Hutt moon. Solo soon thereafter wins the Millennium Falcon from Lando Calrissian in a card tournament. Tharen, now a Rebel agent, reappears and asks for Solo, Chewbacca and Calrissian's help in attacking a slave colony. After succeeding, Tharen's troopers steal the smuggler's valuables to aid the Rebel Alliance. To compensate their losses, Solo and Chewbacca accept a smuggling job from Jabba the Hutt; but Imperial ships force the smugglers to jettison their cargo, invoking the debt Solo and Chewbacca owe the Hutt at the beginning of Star Wars.\n\nSolo plays a central role in several Star Wars stories set after Return of the Jedi. In The Courtship of Princess Leia (1995), he resigns his commission to pursue Leia, whom he eventually marries. Solo and Leia have three children: twins Jaina and Jacen and son Anakin. Chewbacca dies saving Anakin's life in Vector Prime (1999), sending Solo into a deep depression. In Star by Star (2001), Anakin dies as well, compounding Solo's despair. At the end of the series, however, Solo accepts the deaths of his son and his best friend, and reconciles with his family.\n\nIn the Legacy of the Force series, Jacen Solo becomes the Sith Lord Darth Caedus and plunges the galaxy into a bloody civil war. Solo disowns Jacen, but is still devastated by each new outrage his son commits. He and Leia adopt Allana (Jacen's daughter) after Jacen's death in the novel Invincible.\n\n### Influence and critical reaction\n\nHan Solo is a reckless smuggler with a sarcastic wit; he is \"a very practical guy\" and considers himself \"a materialist\"; but the adventures in the first Star Wars movie evoke his compassion, a trait \"he didn't know he possessed\".\n\nThe American Film Institute ranked Solo as the 14th greatest film hero. He was also deemed the 4th greatest movie character of all-time by Empire magazine. Entertainment Weekly ranked the character 7th on their list of The All-Time Coolest Heroes in Pop Culture. On their list of the 100 Greatest Fictional Characters, Fandomania.com ranked Solo at number 15. IGN listed Han Solo as the second greatest Star Wars character of all time (behind Darth Vader), as well as listing him as one of the top 10 characters who most needed a spin-off, saying he was \"Arguably the coolest character in the Star Wars universe\".\n\nPrince of Persia producer Ben Mattes explained that their \"inspiration was anything Harrison Ford has ever done: Indiana Jones, Han Solo\". The Japanese manga and anime anti-hero Space Adventure Cobra has been compared by reviewers to Solo. In preparing to play James T. Kirk, Chris Pine drew inspiration from Ford's depictions of Han Solo and Indiana Jones, highlighting their humor and \"accidental hero\" traits",
"create_date": "2015-01-23T11:36:00-08:00",
"deck": "Here's some Wikipedia data styled up to be an article page.",
"isDraft": false,
"last_updated": "2015-01-23T12:19:00-08:00",
"name": "Some Background on Han Solo",
"preview_url": "2bf0b605-a03c-73db-d62f-0211c43b73eb",
"publish_date": "2015-01-23T11:36:00-08:00"
}
},
"gallery": {
"-JgKUZ115I0R3OjzZ4Vk": {
"_sort_create_date": 1421994720,
"_sort_last_updated": 1422046920,
"_sort_publish_date": 1421994720,
"create_date": "2015-01-22T22:32:00-08:00",
"description": "Just some pics of me hanging out, looking cool. My favorite one is of me and my buddy Lando. That guy, can you believe he turned us in to Darth Vadar? He said he didn't have any choice.",
"images": [
{
"caption": "That lando, what a crazy cat.",
"image": {
"height": 1972,
"resize_url": "http://lh4.ggpht.com/mt0k0DYsac_vka7sYIFFFDRgJYrc9OOUBd4saUqC3V_isPy_6bIoE2u49yuGzJdGcrgzYgXFY2tLEn4FYbMiJykj3yQ",
"url": "/webhook-uploads/1421994607201_lando-calrissian-and-harrison-ford-han-solo-in-star-wars-the-empire-strikes-back.jpg",
"width": 2952
}
},
{
"image": {
"height": 886,
"resize_url": "http://lh5.ggpht.com/12huRkUCOlJN_DsCSoPN6jYNw2QgHJf7UDVKn47WFNj3DBu_YZchmA4amgOkJcerOJolsK_xIfItu06NNeDDaK0RR0E",
"url": "/webhook-uploads/1421994638081_2013-02-15-han_solo-e1360948342857.jpg",
"width": 1458
}
},
{
"image": {
"height": 1200,
"resize_url": "http://lh6.ggpht.com/1Cn_7w6us2oXz-oDJeASzgeQ10lGq4op-0RiVBYzPTF4GEet_Eclt3jIOIaxMnfsdkXzYgHzlOXAGT1gkq7EkDnXeFzg",
"url": "/webhook-uploads/1421994653186_Original-Trilogy-Han-Solo-07.jpg",
"width": 1600
}
},
{
"image": {
"height": 768,
"resize_url": "http://lh4.ggpht.com/dSkRVbj1huLrd85lQgTbGAohGwkbB1cvKro-PZd2scqRKZb4sowe7UjEB2arhVQtHvDq9OXV_c22zXIE6IyKWJKZnOc",
"url": "/webhook-uploads/1421994670510_starwarschewbacca-dan-han-solo-ikon-dalam-film-star-wars094.jpeg",
"width": 1024
}
},
{
"image": {
"height": 820,
"resize_url": "http://lh5.ggpht.com/p-YyqlJpUnt-ANITTZBfhOgWTbqPOkgHmwIuuxWtfVR7n8SGWRnyGpb6yEIRnm-tCxZr3NzFKP7Z8zaxDhYqyO-RZac",
"url": "/webhook-uploads/1421994682398_star-wars-episode-vi-han-solo.jpg",
"width": 1920
}
},
{
"image": {
"height": 778,
"resize_url": "http://lh6.ggpht.com/0WipEb1iLOKRYumz7U4JYSzDEkM3GHsK06IJgSv7Xb7FYMUnhbCpOeXnowBYyFIH7m2GKd4UQHDl-IQ9dxOIh77TwdY",
"url": "/webhook-uploads/1421994708476_han-solo.jpg",
"width": 1200
}
},
{
"image": {
"height": 816,
"resize_url": "http://lh4.ggpht.com/waF_peJ7maSntcDoZaNJURWEfSyxNQo3GJ7rWUeH8qwgZMR1ymQeKo-hjbCo41x3NWWj_tK4MWeQzw05dab4JfYjymz0cw",
"url": "/webhook-uploads/1421994730601_HanJabbaDockingBay94.png",
"width": 1918
}
},
{
"image": {
"height": 1200,
"resize_url": "http://lh3.ggpht.com/5fB8DWeToi5cdK-cbKDz9HytYulIIf08zihOiXU177VTI0EzSal1NRzNTqAmrM8MhbvhsGNUhpgpcvl3e--8NhRpdBcm",
"url": "/webhook-uploads/1421994741748_original-trilogy-han-solo-06-first-look-han-solo-costume-for-star-wars-7-revealed.jpeg%3Fwidth%3D1600%26height%3D1200",
"width": 1600
}
},
{
"image": {
"height": 877,
"resize_url": "http://lh4.ggpht.com/hT5Qy3xFOaV7zM9nK7Ny7gMAJIWf9OOD3yRgn48yTsfO8mB0WJYIVxQfWV6zjTkeCJWmzOoXIrcU0Ra2zNokFKUfAV4",
"url": "/webhook-uploads/1421994762487_image_604cd112.jpeg%3Fheight%3D877%26width%3D1560%26x%3D0%26y%3D0",
"width": 1560
}
}
],
"isDraft": false,
"last_updated": "2015-01-23T13:02:00-08:00",
"name": "Portraits of me",
"preview_url": "400506db-e5b7-c084-0fea-078310abed8b",
"publish_date": "2015-01-22T22:32:00-08:00"
},
"-JgKWPcHdjyAXDUE7BGE": {
"_sort_create_date": 1421995200,
"_sort_last_updated": 1421995260,
"_sort_publish_date": 1421993700,
"create_date": "2015-01-22T22:40:00-08:00",
"description": "Someone told me about this movie Spaceballs. I guess they thought it was funny. I dunno, Bill Pullman? You think he looks like me?",
"images": [
{
"image": {
"height": 1080,
"resize_url": "http://lh5.ggpht.com/YRgE3jh3pu7-Gl3p7sc_RkcU6SrwEuewjAYaZFsEf_RTOWN2DTR2YqIJuvWdI0nSX1pwW7s_jRLLMMAiOl3yH8NU4gnzRg",
"url": "/webhook-uploads/1421995181063_spaceballs-darkhelmet.jpeg",
"width": 1920
}
},
{
"image": {
"height": 745,
"resize_url": "http://lh6.ggpht.com/DtpWslG32m6RH7mR9f5SIaNCd0_Jar5824KAO7HESc5T3wOjAdVFztXH48cE0Gi77Dq0jEXc2lW4ZpsszTGkDqov3lgA4w",
"url": "/webhook-uploads/1421995109511_SpaceballsEagle5_0021_Layer1.jpg",
"width": 1385
}
},
{
"image": {
"height": 693,
"resize_url": "http://lh5.ggpht.com/IouECVC-TD99uRpNaZ8vn1T85vd0L16rl-qpkjst_qzc-fdCMpqfqFeuXrPelv2ZAZyBsGngyrp1sFA56G-bNj0rpGy-vA",
"url": "/webhook-uploads/1421995125690_8f5b2ee35fa642229924f326a7b05a4e.png",
"width": 1280
}
},
{
"image": {
"height": 696,
"resize_url": "http://lh5.ggpht.com/haMUahuBLPjLTrT8qvatWAtd-cMmHhCRRdHYKM33fGaa38q5MMfk3x_nvlOelSBFzL4LPveqaaf4iPW7IOu4PHjPorc-",
"url": "/webhook-uploads/1421995140755_Spaceballs%2BSchwarts.png",
"width": 1280
}
},
{
"image": {
"height": 720,
"resize_url": "http://lh3.ggpht.com/VFIb9G3wJ0kn5px2FypUsw0FFOQLt5gh8jhag9DW_VL9PIhXRpQLW78fC1z6u7iSljTg9bjyhakmJoyTK4WuI0gXJY-5",
"url": "/webhook-uploads/1421995154573_spaceballs.jpg",
"width": 1280
}
},
{
"image": {
"height": 1080,
"resize_url": "http://lh6.ggpht.com/gSNOadgIoGz-a4EmCe5s0BvkIws3Kq-2b-_WQPxvPRghnmUlKSA5_7UtSZiz2DPFUVATPdjJUhvQJLD8c1aHsavvN5w",
"url": "/webhook-uploads/1421995170803_spaceballs_image_2.jpg",
"width": 1920
}
},
{
"image": {
"height": 1082,
"resize_url": "http://lh6.ggpht.com/eO5ZF94Bpx-DcRuNPqtmBaEepiY_amXb5MDJmDZ4EGzi_IPtIwfL-4Fs-oZx2ieFnNH9qeOqOQK7H_XzUI6Mul1d5X0p",
"url": "/webhook-uploads/1421995197393_spaceballs-john-candy-bill-pullman-daphne-zuniga-19871.png",
"width": 2004
}
},
{
"image": {
"height": 704,
"resize_url": "http://lh4.ggpht.com/IaujpbEHE7hptuln3Z5QOih_ZE4GZA4fFdFI7PhQDDIuXvQvg4GN711ZfLkjyKGeEPlokvQ0ZziF7rcudJpvFNB1V-kM",
"url": "/webhook-uploads/1421995253131_maxresdefault.jpg",
"width": 1366
}
}
],
"last_updated": "2015-01-22T22:41:00-08:00",
"name": "Spaceballs",
"preview_url": "8a9d9c35-c2e8-5aa9-603d-2127033cd4e7",
"publish_date": "2015-01-22T22:15:00-08:00"
}
},
"link": {
"-JgKRC_yuYQYKYPyPVjx": {
"_sort_create_date": 1421993880,
"_sort_last_updated": 1421993880,
"_sort_publish_date": 1421993880,
"create_date": "2015-01-22T22:18:00-08:00",
"description": "Han Solo: Lady's Man for All Seasons is an essay by Sherry Magee about the appeal of Han Solo and his portrayal in fiction that has a romantic focus. In it, the author discusses a number of current stories.",
"last_updated": "2015-01-22T22:18:00-08:00",
"name": "Han Solo: Lay's Man for All Seasons",
"preview_url": "35f42081-4c46-f305-df21-290955417338",
"publish_date": "2015-01-22T22:18:00-08:00",
"url": "http://fanlore.org/wiki/Han_Solo:_Lady's_Man_for_All_Seasons"
},
"-JgKRVkSd3-8qpy-viRQ": {
"_sort_create_date": 1421993940,
"_sort_last_updated": 1421993940,
"_sort_publish_date": 1421993940,
"create_date": "2015-01-22T22:19:00-08:00",
"description": "Essayist Ashley Cardiff makes an astute observation about Star Wars in her new book Night Terrors. In an essay titled “Nightmares,” she points out how, as children, we go from loving Luke Skywalker to loving Han Solo. ",
"last_updated": "2015-01-22T22:19:00-08:00",
"name": "5 Reasons Why Han Solo is the Most Realistic Person in Star Wars",
"preview_url": "c80f545a-11b6-7769-09fd-99905e9f4c91",
"publish_date": "2015-01-22T22:19:00-08:00",
"url": "http://www.tor.com/blogs/2013/08/5-reasons-why-han-solo-is-the-most-realistic-person-in-star-wars"
},
"-JgKRjRrDt6ErWz-SjPc": {
"_sort_create_date": 1421994000,
"_sort_last_updated": 1421995380,
"_sort_publish_date": 1421994300,
"create_date": "2015-01-22T22:20:00-08:00",
"description": "\"Han shot first\" is a phrase referring to a controversial change made to a scene in Star Wars (1977), in which Han Solo (Harrison Ford) is confronted by the bounty hunter Greedo (Paul Blake) in the Mos Eisley cantina.",
"last_updated": "2015-01-22T22:43:00-08:00",
"name": "Han Shot First",
"preview_url": "0db2ace2-18e0-1fd0-9238-2cd0499ac880",
"publish_date": "2015-01-22T22:25:00-08:00",
"url": "http://en.wikipedia.org/wiki/Han_shot_first"
}
},
"twitter": {
"_sort_create_date": 1421994420,
"_sort_created_at": 1421395200,
"_sort_last_updated": 1421994420,
"create_date": "2015-01-22T22:27:00-08:00",
"created_at": "2015-01-16T00:00:00-08:00",
"last_updated": "2015-01-22T22:27:00-08:00",
"name": "hansolo",
"preview_url": "8f998ef2-bf7d-9d09-248c-275c1b96e948",
"text": "I just realized that I'm probably going to die in the sequel trilogy.",
"url": "https://twitter.com/hansolo/status/556211217081966592",
"user_profile_image_url": "https://pbs.twimg.com/profile_images/340648699/han_twitter_400x400.jpg",
"user_url": "https://twitter.com/hansolo"
},
"video": {
"-JgKOvMBMZjM8I1GGvYW": {
"_sort_create_date": 1421993280,
"_sort_last_updated": 1421995320,
"_sort_publish_date": 1421995320,
"create_date": "2015-01-22T22:08:00-08:00",
"last_updated": "2015-01-22T22:42:00-08:00",
"name": "Adam Savage's One Day Builds: Han Solo's DL-44 Blaster",
"preview_url": "1b2914a0-a439-2c2a-a33a-0b12daa4cd83",
"publish_date": "2015-01-22T22:42:00-08:00",
"url_of_your_video": {
"author_name": "Tested",
"author_url": "http://www.youtube.com/user/testedcom",
"description": "Adam has constructed a Blade Runner pistol and Indiana Jones' revolver, but not Han Solo's blaster from Star Wars A New Hope. Fortunately, the makers at the Replica Prop Forum have thoroughly researched the details of this prop and have faithfully recreated the components needed to build it.",
"height": 360,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fwww.youtube.com%2Fembed%2F4sCReGjfZ_A%3Ffeature%3Doembed&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D4sCReGjfZ_A&image=http%3A%2F%2Fi.ytimg.com%2Fvi%2F4sCReGjfZ_A%2Fhqdefault.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=youtube\" width=\"640\" height=\"360\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://www.youtube.com/watch?v=4sCReGjfZ_A",
"provider_name": "YouTube",
"provider_url": "http://www.youtube.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.ytimg.com/vi/4sCReGjfZ_A/hqdefault.jpg",
"thumbnail_width": 480,
"title": "Adam Savage's One Day Builds: Han Solo's DL-44 Blaster",
"type": "video",
"url": "http://www.youtube.com/watch?v=4sCReGjfZ_A",
"version": "1.0",
"width": 640
}
},
"-JgKPKez4BTUGVrMolE3": {
"_sort_create_date": 1421993400,
"_sort_last_updated": 1421993400,
"_sort_publish_date": 1421993400,
"create_date": "2015-01-22T22:10:00-08:00",
"last_updated": "2015-01-22T22:10:00-08:00",
"name": "9 Things You (Probably) Didn't Know About Han Solo",
"preview_url": "c74b55e0-5d14-8e38-85ab-589a52f2e85c",
"publish_date": "2015-01-22T22:10:00-08:00",
"url_of_your_video": {
"author_name": "IGN",
"author_url": "http://www.youtube.com/user/IGNentertainment",
"description": "We explore the lesser known history of the captain of the Millennium Falcon himself! Here are nine things you probably didn't know about Han Solo...",
"height": 360,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fwww.youtube.com%2Fembed%2FuGrzs8yrxuo%3Ffeature%3Doembed&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DuGrzs8yrxuo&image=http%3A%2F%2Fi.ytimg.com%2Fvi%2FuGrzs8yrxuo%2Fhqdefault.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=youtube\" width=\"640\" height=\"360\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://www.youtube.com/watch?v=uGrzs8yrxuo",
"provider_name": "YouTube",
"provider_url": "http://www.youtube.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.ytimg.com/vi/uGrzs8yrxuo/hqdefault.jpg",
"thumbnail_width": 480,
"title": "9 Things You (Probably) Didn't Know About Han Solo",
"type": "video",
"url": "http://www.youtube.com/watch?v=uGrzs8yrxuo",
"version": "1.0",
"width": 640
}
},
"-JgKPg3xzGIK03BVRh4A": {
"_sort_create_date": 1421993460,
"_sort_last_updated": 1421993460,
"_sort_publish_date": 1421993460,
"create_date": "2015-01-22T22:11:00-08:00",
"last_updated": "2015-01-22T22:11:00-08:00",
"name": "Kinect Star Wars \"I'm Han Solo\" Dancing",
"preview_url": "4a3ac5c4-a6a3-6272-a6d4-c22deb3b6ac5",
"publish_date": "2015-01-22T22:11:00-08:00",
"url_of_your_video": {
"author_name": "CVG",
"author_url": "http://www.youtube.com/user/cvg",
"description": "Kinect Star Wars \"I'm Han Solo\" Dancing. This is a play-through of \"I'm Han Solo\" in Kinect Star Wars Dancing. The original lyrics to Jason Derulo's Ridin' Solo have been changed to fit into the Star Wars universe. Good idea? Will you be picking this up?",
"height": 360,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fwww.youtube.com%2Fembed%2Flg_FoEy8T_A%3Ffeature%3Doembed&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dlg_FoEy8T_A&image=http%3A%2F%2Fi.ytimg.com%2Fvi%2Flg_FoEy8T_A%2Fhqdefault.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=youtube\" width=\"640\" height=\"360\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://www.youtube.com/watch?v=lg_FoEy8T_A",
"provider_name": "YouTube",
"provider_url": "http://www.youtube.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.ytimg.com/vi/lg_FoEy8T_A/hqdefault.jpg",
"thumbnail_width": 480,
"title": "Kinect Star Wars \"I'm Han Solo\" Dancing",
"type": "video",
"url": "http://www.youtube.com/watch?v=lg_FoEy8T_A",
"version": "1.0",
"width": 640
}
},
"-JgKQ-YcP1tLyU-lgO0J": {
"_sort_create_date": 1421993520,
"_sort_last_updated": 1421993580,
"_sort_publish_date": 1421993520,
"create_date": "2015-01-22T22:12:00-08:00",
"last_updated": "2015-01-22T22:13:00-08:00",
"name": "Han Solo Tribute",
"preview_url": "4aeb7fe6-ed70-c94f-5b44-069a0b488ac1",
"publish_date": "2015-01-22T22:12:00-08:00",
"url_of_your_video": {
"author_name": "compleetlyrandom",
"author_url": "http://www.youtube.com/user/compleetlyrandom",
"description": "No copyright infringement intended. Just a fanvid tribute video with sole means to entertain, not to make profit. Video clips owned by Lucas Film Ltd. (Star Wars Episode IV, V, and VI). Music owned by DGC/Interscope (Weezer \"The Greatest Man that Ever Lived\")",
"height": 360,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fwww.youtube.com%2Fembed%2FL1QKNI8O9dE%3Ffeature%3Doembed&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DL1QKNI8O9dE&image=http%3A%2F%2Fi.ytimg.com%2Fvi%2FL1QKNI8O9dE%2Fhqdefault.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=youtube\" width=\"640\" height=\"360\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://www.youtube.com/watch?v=L1QKNI8O9dE",
"provider_name": "YouTube",
"provider_url": "http://www.youtube.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.ytimg.com/vi/L1QKNI8O9dE/hqdefault.jpg",
"thumbnail_width": 480,
"title": "Han Solo Tribute",
"type": "video",
"url": "http://www.youtube.com/watch?v=L1QKNI8O9dE",
"version": "1.0",
"width": 640
}
},
"-JgKS7WPZKj6LWCeYO1H": {
"_sort_create_date": 1421994120,
"_sort_last_updated": 1421994120,
"_sort_publish_date": 1421994120,
"create_date": "2015-01-22T22:22:00-08:00",
"last_updated": "2015-01-22T22:22:00-08:00",
"name": "Star Wars: The Han Solo Affair",
"preview_url": "61510ebe-646a-259a-5fcc-fc00625a2400",
"publish_date": "2015-01-22T22:22:00-08:00",
"url_of_your_video": {
"author_name": "Spite Your Face",
"author_url": "http://vimeo.com/spiteyourface",
"description": "Viral short, produced for LEGO and Lucasfilm to promote Star Wars Episode II: Attack of the Clones. Stop-motion animation. Produced 2002 At time of release, this was only the second time in Star Wars history that a short film had been produced under license, preceding the Clone Wars shorts, and following the Boba Fett cartoon from the Star Wars Holiday Special, way back in 1977.",
"height": 256,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F22419551&src_secure=1&url=http%3A%2F%2Fvimeo.com%2F22419551&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F196454737_640.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=vimeo\" width=\"640\" height=\"256\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://vimeo.com/22419551",
"provider_name": "Vimeo",
"provider_url": "https://vimeo.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.vimeocdn.com/video/196454737_640.jpg",
"thumbnail_width": 640,
"title": "Star Wars: The Han Solo Affair",
"type": "video",
"version": "1.0",
"width": 640
}
},
"-JgKSTTjhWsdnAI-flmw": {
"_sort_create_date": 1421994180,
"_sort_last_updated": 1421994180,
"_sort_publish_date": 1421994180,
"create_date": "2015-01-22T22:23:00-08:00",
"last_updated": "2015-01-22T22:23:00-08:00",
"name": "The Trial of Han Solo",
"preview_url": "061155cd-edc1-0688-3fd9-c70a53dc674a",
"publish_date": "2015-01-22T22:23:00-08:00",
"url_of_your_video": {
"author_name": "paul francis sanchez yates",
"author_url": "http://vimeo.com/oniongod",
"description": "Clips from this were used in the beautiful documentary: People vs. George Lucas...A jape...made at AFI",
"height": 360,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F12868083&src_secure=1&url=http%3A%2F%2Fvimeo.com%2F12868083&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F72945288_640.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=vimeo\" width=\"640\" height=\"360\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://vimeo.com/12868083",
"provider_name": "Vimeo",
"provider_url": "https://vimeo.com/",
"thumbnail_height": 360,
"thumbnail_url": "http://i.vimeocdn.com/video/72945288_640.jpg",
"thumbnail_width": 640,
"title": "THE TRIAL OF HAN SOLO",
"type": "video",
"version": "1.0",
"width": 640
}
},
"-JgKSlXm3fXpWIuf0wc3": {
"_sort_create_date": 1421994300,
"_sort_last_updated": 1421994300,
"_sort_publish_date": 1421994300,
"create_date": "2015-01-22T22:25:00-08:00",
"last_updated": "2015-01-22T22:25:00-08:00",
"name": "Star Wars the Musical",
"preview_url": "95165237-86a6-55f2-3f07-16a7771908f9",
"publish_date": "2015-01-22T22:25:00-08:00",
"url_of_your_video": {
"author_name": "Funny Farm Films",
"author_url": "http://vimeo.com/funnyfarmfilms",
"description": "Recorded on May 25th, 1996 at Palos Verdes Peninsula High School.",
"height": 480,
"html": "<iframe class=\"embedly-embed\" src=\"//cdn.embedly.com/widgets/media.html?src=http%3A%2F%2Fplayer.vimeo.com%2Fvideo%2F21995539&src_secure=1&url=http%3A%2F%2Fvimeo.com%2F21995539&image=http%3A%2F%2Fi.vimeocdn.com%2Fvideo%2F142031939_640.jpg&key=a2b00c0dc25742f1b1421c7d3ac87d10&type=text%2Fhtml&schema=vimeo\" width=\"640\" height=\"480\" scrolling=\"no\" frameborder=\"0\" allowfullscreen></iframe>",
"original_url": "https://vimeo.com/21995539",
"provider_name": "Vimeo",
"provider_url": "https://vimeo.com/",
"thumbnail_height": 480,
"thumbnail_url": "http://i.vimeocdn.com/video/142031939_640.jpg",
"thumbnail_width": 640,
"title": "Star Wars the Musical: Act 2, Part 3",
"type": "video",
"version": "1.0",
"width": 640
}
}
}
},
"settings": {
"general": {
"site_message": "<div class=\"wy-alert\">\nWe added some fake data into your site. Feel free to delete or replace it any time.\n</div>\n\n# Webhook solo blogger theme\n\nThis theme is meant to be used primarily by solo bloggers looking to mix in some videos, photos and links from around the web. To make it really awesome, you can **optionally** set up auto-importing so that it passively adds content to your stream.\n\n## How to set up auto-importing (optional).\n\n<div class=\"wy-alert\">\nSetting this up requires no code experience. You just need to follow the instructions and be careful that you type in things exactly as shown. It should take you about 15 minutes if you've never done anything like this before.\n</div>\n\nBelow is a brief guide to setting up your site to auto-import content from your other social services as you post to them. It's only requirement is that you set up a free [Zapier](http://www.zapier.com) account. You'll also need your Webhook API Key, which is provided in your [backups and data page](/)\n\n### 1. Create a free Zapier account.\n\n[Zapier](http://www.zapier.com) is a service that allows you to link one service (like YouTube) to another (in this case Webhook). Their free plan allows for 5 services to be attached along with 150 data-pushes. This should be enough for most sites using this theme.\n\n### 2. Create zaps for the services you wish to add.\n\nEach time you create a zap, you'll want to select the service you want to import from (in this case Twitter) and have it post to a Web Hook.\n\n![](http://www.webhook.com/webhook-uploads/1417714786521_Screen%2520Shot%25202014-12-04%2520at%25209.39.25%2520AM.png)\n\n### 3. Configure the post action\n\n<div class=\"wy-alert\">\nDon't forget to test your Zap before turning it on. If your zap works correctly it should update data in your CMS.\n</div>\n\nFor each service you need to configure the post action to align with your forms in Webhook. Below are screenshots of the settings you'll need for each service.\n\n##### Twitter\n\nSetting this up will make it so that you your latest tweet shows up on your site. You may also want to set up a \"Filter\"\n\n```\nURL SETTING:\n// Your API key is in \"Backups and Data\".\n// Your SITE_NAME is the webhook site name.\n// Copy paste the below into the URL field.\n\nhttps://server.webhook.com/update-item/?site=MY_SITE_NAME_HERE&apiKey=MY_API_KEY_HERE&type=twitter&id=twitter\n```\n\n![](http://solo-data.webhook.org/webhook-uploads/1422038268497_Image%25202015-01-23%2520at%252010.37.21%2520AM.png)\n\n##### YouTube or Vimeo\n\nThis will add YouTube or Vimeo videos to your site as you post to those services. Note that you can use the filter settings to tailor which videos appear.\n\n```\nURL SETTING:\n// Your API key is in \"Backups and Data\".\n// Your SITE_NAME is the webhook site name.\n// Copy paste the below into the URL field.\n\nhttps://server.webhook.com/add-item/?site=MY_SITE_NAME_HERE&apiKey=MY_API_KEY_HERE&type=video\n```\n\n![](http://solo-data.webhook.org/webhook-uploads/1422038722274_Image%25202015-01-23%2520at%252010.44.36%2520AM.png)\n\n##### Pinboard or Delicious\n\nThis will make it so that the bookmarks you add to one of these services get added to your links section. You can also set up a filter to check for \"Tags\" that \"Contains\" a word.\n\n```\nURL SETTING:\n// Your API key is in \"Backups and Data\".\n// Your SITE_NAME is the webhook site name.\n// Copy paste the below into the URL field.\n\nhttps://server.webhook.com/add-item/?site=MY_SITE_NAME_HERE&apiKey=MY_API_KEY_HERE&type=link\n```\n\n![](http://solo-data.webhook.org/webhook-uploads/1422039110546_Image%25202015-01-23%2520at%252010.51.18%2520AM.png)\n\n## Don't forget to deploy your site!\n\nIf this is your first time using Webhook, remember that you need to deploy your website before it's available live to others. You can do this by running `wh deploy` in your site directory or by using the Webhook app. Once deployed your site will live at `yoursitename.webhook.org`. After it's deployed go to the domain section of your CMS to attach a custom domain.\n\n"
}
},
"contentType": {
"aboutme": {
"controls": [
{
"controlType": "textfield",
"hidden": false,
"label": "Name",
"locked": true,
"name": "name",
"placeholder": "Han Solo",
"required": true,
"showInCms": true
},
{
"controlType": "datetime",
"hidden": true,
"label": "Create Date",
"locked": true,
"name": "create_date",
"required": true,
"showInCms": false
},
{
"controlType": "datetime",
"hidden": true,
"label": "Last Updated",
"locked": true,
"name": "last_updated",
"required": true,
"showInCms": false
},
{
"controlType": "instruction",
"help": "This information will show up on your homepage as well as in your site's header.",
"hidden": false,
"label": "Homepage",
"locked": false,
"name": "homepage",
"required": false,
"showInCms": false
},
{
"controlType": "image",
"help": "Should be squarish. We'll crop this down to a circle for your homepage.",
"hidden": false,
"label": "Picture of you",
"locked": false,
"name": "picture_of_you",
"required": false,
"showInCms": true
},
{
"controlType": "textfield",
"help": "We'll use your initials to build a small circular logo.",
"hidden": false,
"label": "Initials",
"locked": false,
"name": "initials",
"placeholder": "HS",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"help": "This is a short intro to welcome users to your homepage. Keep it short.",
"hidden": false,
"label": "Homepage hello",
"locked": false,
"name": "homepage_hello",
"placeholder": "",
"required": false,
"showInCms": false
},
{
"controlType": "instruction",
"help": "The below information will show up on your About Me page.",
"hidden": false,
"label": "About me page",
"locked": false,
"name": "about_me_page",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Hometown",
"locked": false,
"name": "hometown",
"placeholder": "A galaxy far, far away",
"required": false,
"showInCms": false
},
{
"controlType": "image",
"help": "A largish, wide image of you. Will show up on your about page.",
"hidden": false,
"label": "Bio picture",
"locked": false,
"name": "bio_picture",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"help": "Tell us who you are.",
"hidden": false,
"label": "Bio",
"locked": false,
"name": "bio",
"placeholder": "",
"required": false,
"showInCms": true
},
{
"controlType": "email",
"hidden": false,
"label": "Email",
"locked": false,
"name": "email",
"required": false,
"showInCms": false
},
{
"controlType": "instruction",
"help": "If you'd like to link our to your other online personas, simply add the username for the service below.",
"hidden": false,
"label": "Online personas",
"locked": false,
"name": "online_personas",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Facebook",
"locked": false,
"name": "facebook",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Github",
"locked": false,
"name": "github",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Instagram",
"locked": false,
"name": "instagram",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Reddit",
"locked": false,
"name": "reddit",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Twitter",
"locked": false,
"name": "twitter",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Steam",
"locked": false,
"name": "steam",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Vimeo",
"locked": false,
"name": "vimeo",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": false,
"label": "Youtube",
"locked": false,
"name": "youtube",
"required": false,
"showInCms": false
},
{
"controlType": "instruction",
"help": "All of this is totally optional. But we can build out a mini-resume for you if you want to fill out the stuff below.",
"hidden": false,
"label": "Mini Resume",
"locked": false,
"name": "mini_resume",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"hidden": false,
"label": "Resume intro",
"locked": false,
"name": "resume_intro",
"required": false,
"showInCms": false
},
{
"controlType": "file",
"help": "Can be a PDF or Doc or whatever you want to use.",
"hidden": false,
"label": "Formal resume",
"locked": false,
"name": "formal_resume",
"required": false,
"showInCms": false
},
{
"controlType": "grid",
"controls": [
{
"controlType": "textfield",
"help": "Name of the project or place of work.",
"hidden": false,
"label": "Name",
"locked": false,
"name": "name",
"placeholder": "",
"required": true,
"showInCms": true
},
{
"controlType": "textfield",
"help": "You can write in whatever time format you want.",
"hidden": false,
"label": "Time period",
"locked": false,
"name": "time_period",
"placeholder": "May 2012 - Present",
"required": true,
"showInCms": false
},
{
"controlType": "textfield",
"help": "What was your role or title?",
"hidden": false,
"label": "Role",
"locked": false,
"name": "role",
"required": false,
"showInCms": true
},
{
"controlType": "url",
"help": "Optional link if needed.",
"hidden": false,
"label": "URL",
"locked": false,
"name": "url",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"hidden": false,
"label": "Description",
"locked": false,
"name": "description",
"required": false,
"showInCms": true
}
],
"help": "You can drag and drop to sort objects.",
"hidden": false,
"label": "Notable work",
"locked": false,
"name": "notable_work",
"placeholder": "",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": true,
"label": "Preview URL",
"locked": true,
"name": "preview_url",
"required": true,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": true,
"label": "Slug",
"locked": true,
"name": "slug",
"required": false,
"showInCms": false
}
],
"name": "about me",
"oneOff": true,
"oneOffMD5": "9cc7e28839b916efd9ec9c4d371cfb6a"
},
"article": {
"controls": [
{
"controlType": "textfield",
"hidden": false,
"label": "Name",
"locked": true,
"name": "name",
"placeholder": "Title of your article",
"required": true,
"showInCms": true
},
{
"controlType": "datetime",
"hidden": true,
"label": "Create Date",
"locked": true,
"name": "create_date",
"required": true,
"showInCms": false
},
{
"controlType": "datetime",
"hidden": true,
"label": "Last Updated",
"locked": true,
"name": "last_updated",
"required": true,
"showInCms": false
},
{
"controlType": "datetime",
"hidden": true,
"label": "Publish Date",
"locked": true,
"name": "publish_date",
"required": false,
"showInCms": true
},
{
"controlType": "markdown",
"help": "The short description of this article.",
"hidden": false,
"label": "Deck",
"locked": false,
"name": "deck",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"help": "For image alignment, use [full],[center],[left] and [right]. Example `![center](myimage.jpg)`\n\nWrap video embeds in `<div class=\"video\">{{EMBED CODE}}</div>`",
"hidden": false,
"label": "Body",
"locked": false,
"name": "body",
"required": false,
"showInCms": false
},
{
"controlType": "image",
"help": "Add an image ONLY if you want to use a featured\"Big Hero\" image at the top.",
"hidden": false,
"label": "Optional big hero image.",
"locked": false,
"name": "optional_big_hero_image",
"required": false,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": true,
"label": "Preview URL",
"locked": true,
"name": "preview_url",
"required": true,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": true,
"label": "Slug",
"locked": true,
"name": "slug",
"required": false,
"showInCms": false
}
],
"individualMD5": "a2f96de4e8bc563e61f7b9787e6c295a",
"listMD5": "1ff53b61c46576f7e3336e1d07a8ca3f",
"name": "article",
"oneOff": false
},
"gallery": {
"controls": [
{
"controlType": "textfield",
"hidden": false,
"label": "Name",
"locked": true,
"name": "name",
"placeholder": "Title of your gallery",
"required": true,
"showInCms": true
},
{
"controlType": "datetime",
"hidden": true,
"label": "Create Date",
"locked": true,
"name": "create_date",
"required": true,
"showInCms": false
},
{
"controlType": "datetime",
"hidden": true,
"label": "Last Updated",
"locked": true,
"name": "last_updated",
"required": true,
"showInCms": false
},
{
"controlType": "datetime",
"hidden": true,
"label": "Publish Date",
"locked": true,
"name": "publish_date",
"required": false,
"showInCms": false
},
{
"controlType": "markdown",
"hidden": false,
"label": "Description",
"locked": false,
"name": "description",
"required": false,
"showInCms": true
},
{
"controlType": "grid",
"controls": [
{
"controlType": "image",
"hidden": false,
"label": "Image",
"locked": false,
"name": "image",
"required": false,
"showInCms": true
},
{
"controlType": "textarea",
"hidden": false,
"label": "Caption",
"locked": false,
"name": "caption",
"required": false,
"showInCms": true
}
],
"help": "Images can be reordered by dragging. The first image in the list will be the one used for click-throughs.",
"hidden": false,
"label": "Images",
"locked": false,
"name": "images",
"required": false,
"showInCms": true
},
{
"controlType": "textfield",
"hidden": true,
"label": "Preview URL",
"locked": true,
"name": "preview_url",
"required": true,
"showInCms": false
},
{
"controlType": "textfield",
"hidden": true,
"label": "Slug",
"locked": true,
"name": "slug",