This repository was archived by the owner on Apr 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1082 lines (1020 loc) · 59.5 KB
/
Copy pathindex.html
File metadata and controls
executable file
·1082 lines (1020 loc) · 59.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Jonathan Baillie Strong</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top">Jonathan Baillie Strong</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#services">Services</a>
</li>
<li>
<a class="page-scroll" href="#portfolio">Projects</a>
</li>
<li>
<a class="page-scroll" href="#blog">Writing</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Jonathan Baillie Strong</div>
<div class="intro-heading">Podcast expert
<br>Community Builder</div>
<a href="#services" class="page-scroll btn btn-xl" align="center">Tell Me More</a>
</div>
</div>
</header>
<!-- Services Section -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Services</h2>
<h3 class="section-subheading text-muted">Everyday I'm hustling</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-rocket fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Podcast Production</h4>
<p class="text-muted">I've produced some of the world's most popular shows with millions of downloads. I can help you by managing the entire production process through recording, launch and marketing.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-paper-plane fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Digital Marketing</h4>
<p class="text-muted">Well versed in all aspects of online & digital marketing. I can help your business grow by developing strategy and execution.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Community Building</h4>
<p class="text-muted">Having created the world's largest geographically specific slack group & consulted others including Google Campus, I can help you build and grow your online community.</p>
</div>
</div>
</div>
</section>
<section id="newsletter">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3>JBS' monthly email digest</h3>
<p>Receive my updates, curated tools & links</p>
<a href="https://jonbstrong.typeform.com/to/wPhkDd" button type="submit" class="btn btn-xl typeform-share button" data-mode="popup" data-hide-headers=true data-hide-footer=true target="_blank">Sign Up Here</button></a>
<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
</div>
</div>
</section>
<!-- Portfolio Grid Section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Projects</h2>
<h3 class="section-subheading text-muted">Current & previous work</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/lewis.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>School Of Greatness</h4>
<p class="text-muted">Business Mastery podcast<br>
Producer<br>
Soundcloud, Wordpress</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/GLP.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Good Life Project</h4>
<p class="text-muted">Podcast<br>
Producer<br>
Audacity, Garageband</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal4" target="blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/live-lockdown-gypsy.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>The Live Lockdown</h4>
<p class="text-muted">2 Hour Live Music Radio Show<br>Creator & Radio Host<br>Production | Coordination</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal8" target="blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/techlondon.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>#techLondon</h4>
<p class="text-muted">Connecting the Tech Community<br>Founder<br>Github | Slack | Bootstrap</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal11" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/foundeduk-tumbnail.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Founded in UK</h4>
<p class="text-muted"> Curated list of UK startups<br>
Web Developer & Curator<br>
Bootstrap | HTML/CSS/Jquery</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/SI-london.png" target="blank" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Startup Institute London Alumni</h4>
<p class="text-muted">Alumni showcase for the SI Program<br>Creator & Website Developer<br>Bootstrap | HTML | CSS</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal7" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Hotel-Kakslauttanen-Finland.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Spectacular Stays</h4>
<p class="text-muted">Showcasting & Curating Unique Hotels<br>Founder & Website Developer<br>Wordpress</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://www.andrea-dee.com/" target="blank" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/andrea-dee.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Andrea Dee</h4>
<p class="text-muted">Indie solo artist<br>Website developer<br>Worpress | Mailchimp</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal10" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/casamoringa-6.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Casa Moringa</h4>
<p class="text-muted">High end hospitality in Colombia<br>
Web Dev, Web Master & Booking system<br>
Wordpress | Typeform | Zapier</p>
</div>
</div>
<!-- About Section -->
<!--section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Web Portfolio</h2>
<h3 class="section-subheading text-muted">See me work my magic.</h3>
</div>
</div>
<div class="row"-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/tropical_beats_logo.jpg" target="blank" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Tropical Beats</h4>
<p class="text-muted">Tropical Music Radio Show<br>Producer, DJ, Social Media<br>Mixcloud</p>
</div>
</div-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/ttt.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Thursday Tech Tip podcast</h4>
<p class="text-muted">Monthly technology podcast<br>
Co-host and Website Developer <br>
Wordpress | Spreaker | Soundcloud</p>
</div>
</div-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/treehouse.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Givtree</h4>
<p class="text-muted">Website Design <br> Bootstrap | HTML/CSS/Jquery</p>
</div>
</div>
</div>
</section-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal12" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/Launch22-logo-emblem.jpg" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Launch 22</h4>
<p class="text-muted">Redesign of coworking space website<br>
Web Developer<br>
Wordpress</p>
</div>
</div-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal9" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/SI-london.png" target="blank" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Startup Institute London Alumni</h4>
<p class="text-muted">Alumni showcase for the SI Program<br>Creator & Website Developer<br>Bootstrap | HTML | CSS</p>
</div>
</div-->
<!--div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal12" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/slackhunt.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Natalie Gauci</h4>
<p class="text-muted">Supporting an award winning singer/songwriter<br>
Digital strategist<br>
Social Media Marketing | Crowdfunding campaign strategy</p>
</div>
</div-->
</div>
</div>
</section>
<section data-type="background" data-speed="2" class="paralax" id="quote">
<div class="container" style="padding:100px; text-transform:uppercase; ">
<div class="row">
<div class="col-lg-12 text-center">
<h2 style="color:white; letter-spacing: 5px; " >"Among flowers, the cherry blossom. Among men, the samurai"</h2>
</div>
</div>
</div>
</section>
<!-- About Section -->
<!--section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/Brussels-flags-cropped.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2009-2011</h4>
<h4 class="subheading">My origin story</h4>
</div>
<div class="timeline-body">
<p class="text-muted">I knew I wanted to change the world when I volunteered on a World Bank platform, supporting kids learning to be social entrepreneurs. It was an amazing experience!</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/2.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>March 2011</h4>
<h4 class="subheading">Joining the startup community</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Between starting my first startup, winning a World Bank grant, moving to Boston, and volunteering all over Cambridge, this was a busy couple of years! Also, I'm getting my feet wet with code!</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/3.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>December 2012</h4>
<h4 class="subheading">Headfirst into code</h4>
</div>
<div class="timeline-body">
<p class="text-muted">This is the period I really dove into code. Between working on my second startup, using a LAMP stack, and going deeper on UI/UX and design, I grew into a frontend dev during this period!</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/me-diving-cropped.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>July 2014</h4>
<h4 class="subheading">Startup Institute and beyond!</h4>
</div>
<div class="timeline-body">
<p class="text-muted">After chosing to shutter my second startup, I attended Startup Institute to to go deeper on my existing skills, and to diversify them as well. Upon leaving, I felt more confident that I'd be changing the world with my code.</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<h4>Be Part
<br>Of My
<br>Story!</h4>
</div>
</li>
</ul>
</div>
</div>
</div>
</section-->
<!-- Clients Aside -->
<aside class="clients" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Who else I've worked with</h2>
<!--h3 class="section-subheading text-muted">Current or recent</h3-->
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="http://www.freedompodcasting.com" target="blank">
<img src="img/logos/Freedom-Podcasting-Log-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.ouishaire.net" target="blank">
<img src="img/logos/ouishare-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.tyba.com" target="blank">
<img src="img/logos/tyba_logo_high-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.memrise.com" target="blank">
<img src="img/logos/Memrise-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="http://www.theelevatorlife.com" target="blank">
<img src="img/logos/elevator-life.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://gntmedia.co.uk/" target="blank">
<img src="img/logos/gnt-media-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="https://aliveinberlin.com" target="blank">
<img src="img/logos/alive-berlin-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.gcbusinessweek.com/" target="blank">
<img src="img/logos/gc-biz-week.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
<section id="blog">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading"><a href="http://jonbstrong.com/blog" target="blank">Blog</a></h2>
<div id="posts" class="posts horizontal">
<div class="overlay"></div>
</div>
</div>
</div>
</div>
</section>
<aside class="featured" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Also featured on</h2>
<!--h3 class="section-subheading text-muted">Current or recent</h3-->
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-12">
<a href="http://thestartupmag.com/author/jonathan-baillie-strong/" target="blank">
<img src="img/logos/startupmag-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<!--div class="col-md-3 col-sm-6">
<a href="http://www.ouishaire.net" target="blank">
<img src="img/logos/ouishare-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div-->
<div class="col-md-4 col-sm-12">
<a href="https://hubblehq.com/blog/huckletree-follow-your-gut-when-finding-somewhere-to-work" target="blank">
<img src="img/logos/hubble-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-4 col-sm-12">
<a href="http://blog.xpenditure.com/blog/paperless-office-with-xpenditure-freeagent/" target="blank">
<img src="img/logos/xpenditure-resized.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="row">
</div>
</div>
</div>
</aside>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact</h2>
<h3 class="section-subheading text-muted">Shoot me a message and I'll get back to you within 48 hours.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="col-lg-12 text-center">
<div id="success"></div>
<a href="https://jonbstrong.typeform.com/to/B6DKqd" button type="submit" class="btn btn-xl typeform-share button" data-mode="popup" data-hide-headers=true data-hide-footer=true target="_blank">Send Message</button></a>
<script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © Jonathan Baillie Strong 2017</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/jonbstrong" target="blank"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="skype:jonathan.baillie.strong?chat"><i class="fa fa-skype"></i></a>
</li>
<li><a href="http://uk.linkedin.com/in/jonbstrong/" target="blank"><i class="fa fa-linkedin"></i></a>
<li><a href="https://github.com/jonbai" target="blank"><i class="fa fa-github"></i></a>
<!--li><a href="http://www.jonathanbailliestrong.com" target="blank"><i class="fa fa-wordpress"></i></a-->
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<!--li><strong>+44 7514 179 150</strong></a-->
<li><strong></strong></li>
<!--li><a href="#">Terms of Use</a>
</li-->
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>The Startup Magazine Podcast</h2>
<p class="item-intro text-muted">Media publishing company covering startups</p>
<p>The Startup Magazine is an online publishing company covering the startup scene. Jonathan was brought on to manage and produce the launch of their first podcast series which went straight into the New and Noteworthy section for buseinss podcasts on Itunes.</p>
<p align="center">
<img class="img-responsive" src="img/portfolio/newnoteworthy-SM.png" alt=""></p>
<p>
The whole podcast series can be found here:
<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/users/138328714&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
</p>
<ul class="list-inline">
<li>Launched: February 2015</li>
<li>Category: Business</li>
<li>Available on: <a href="https://itunes.apple.com/gb/podcast/the-startup-magazine/id969934543" target="blank">Itunes</a> | <a href="https://soundcloud.com/thestartupmag" target="blank">Soundcloud</a> | <a href="http://www.stitcher.com/podcast/the-startup-magazine" target="blank">Stitcher</a> | <a href="http://tunein.com/radio/The-Startup-Magazine-p686900/">Tunein</a></li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Lewis Howes - School of Greatness</h2>
<p class="item-intro text-muted">Business, leadership, and personal development podcast</p>
<p align="center">
<img class="img-responsive" src="img/portfolio/lewis.jpg" alt=""></p>
<p>A top rated leadership and personal development podcast on iTunes with over 5 million downloads. The show includes a wide range of guests such as authors, business leaders, actors, musicians, entrepreneurs, spoken word artists, nutritionists, and many others. Past guests have included Robert Greene, Tim Ferriss, Timothy Sykes and Bryan Clay.</p>
<p>In his capactiy as podcast producer at Freedom Podcasting, Jonathan took ownership of editing the episodes, overseeing the overall production and writing the copy.
<p>
Example episode which Jonathan produced below</p>
<p><iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/117516559&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe></p>
<ul class="list-inline">
<li>Category: Self-Help</li>
<li>Available on: <a href="https://soundcloud.com/lewishowes"> Soundcloud</a> | <a href="https://itunes.apple.com/us/podcast/the-school-of-greatness/id596047499">Itunes</a> | <a href="http://tunein.com/radio/The-School-of-Greatness-p527955/"> Tunein</a> | <a href="http://www.stitcher.com/podcast/the-school-of-greatness">Stitcher</a></li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>The Good Life Project with Jonathan Fields</h2>
<p class="item-intro text-muted">A movement towards leading a better life</p>
<img class="img-responsive img-centered" src="img/portfolio/GLP.jpg" alt="">
<p>In-depth Conversations With Artists, Entrepreneurs, Makers and World-shakers, like Brene Brown, Seth Godin, Danielle LaPorte, Milton Glaser and Marie Forleo, Hosted by Jonathan Fields.</p>
<p>Jonathan converted video into audio format along with production</p>
<ul class="list-inline">
<li>Category: Self-Help</li>
<li>Available on: <a href="https://soundcloud.com/goodlifeproject"> Soundcloud</a> | <a href="https://itunes.apple.com/gb/podcast/good-life-project/id647826736?mt=2">Itunes</a> | <a href="http://tunein.com/radio/Good-Life-Project-p527964/"> Tunein</a> | <a href="http://www.stitcher.com/podcast/good-life-project">Stitcher</a></li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>The Live Lockdown</h2>
<p class="item-intro text-muted">2 hour live music show on K2K radio</p>
<img class="img-responsive img-centered" src="img/portfolio/roger-greg-jbs.jpg" alt="">
<p><a href="http://www.mixcloud.com/livelockdown/" target="blank">The Live Lockdown</a> is a radio show started by Jonathan that brought together some of the best musicians in London to produce a 2 hour live show on <a href="http://www.k2kradio.com" target="blank">Kilburn to Kensal Radio</a> in London.</p>
<p>The show also attracted listener Roger Trowbridge, musical archavist and president of the National Harmonica Association, who collaborated with Jonathan to produce a one-off musical documentary of British Blues Harmonica pioneer Cyril Davies, which can now be found on the official <a href="http://www.cyrildavies.com" target="blank">Cyril Davies website.</a>
<p>You can listen back to all the shows <a href="http://www.mixcloud.com/livelockdown/" target="blank">here</a>. The show is currently on haitus as Jonathan juggles other priorities but is due to kick off again in 2018.</p>
<img class="img-responsive img-centered" src="img/portfolio/Doc-live-lockdown.jpg" alt="">
<br>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Tropical Beats</h2>
<p class="item-intro text-muted">Sunshine for your ears</p>
<img class="img-responsive img-centered" src="img/portfolio/TB2.jpg" alt="">
<p>London based radio show playing Afro Beat, Latin Rhythms, Carnival Beats and Tropical Bass..
Jonathan co-hosts the show alongside Gary Lee & Karl Hildebrandt. Co-produced with Chris Jones.
</p>
<p><iframe width="100%" height="60" src="https://www.mixcloud.com/widget/iframe/?embed_type=widget_standard&embed_uuid=075e22af-18f5-46fe-8a73-374b369eb338&feed=https%3A%2F%2Fwww.mixcloud.com%2Ftropicalbeatslondon%2F&hide_cover=1&hide_tracklist=1&mini=1&replace=0" frameborder="0"></iframe><div style="clear: both; height: 3px; width: auto;"></div><p style="display: block; font-size: 11px; font-family: 'Open Sans', Helvetica, Arial, sans-serif; margin: 0px; padding: 3px 4px; color: rgb(153, 153, 153); width: auto;"><a href="https://www.mixcloud.com/tropicalbeatslondon/?utm_source=widget&utm_medium=web&utm_campaign=base_links&utm_term=resource_link" target="_blank" style="color:#808080; font-weight:bold;">Cloudcasts by Tropical Beats</a><span> on </span><a href="https://www.mixcloud.com/?utm_source=widget&utm_medium=web&utm_campaign=base_links&utm_term=homepage_link" target="_blank" style="color:#808080; font-weight:bold;"> Mixcloud</a></p><div style="clear: both; height: 3px; width: auto;"></div></p>
<p>Website: <a href="http://www.tropicalbeats.audio" target="blank">www.tropicalbeats.audio</a></p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Thursday Tech Tip Podcast</h2>
<p class="item-intro text-muted">Weekly live technology podcast</p>
<img class="img-responsive img-centered" src="img/portfolio/ttt.jpg" alt="">
<p>The Thursday Tech Tip Podcast is a show co-hosted by Jonathan and <a href="http://twitter.com/louisinlondon">Louis Slabbert</a> which focuses on providing themed technology advice with new guests every week.</p>
<p>You can find the show, <a href="http://www.thursdaytechtip.com">listen to all the episodes and sign up to the newsletter here</a></p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 7 -->
<div class="portfolio-modal modal fade" id="portfolioModal7" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Spectacular Stays</h2>
<p class="item-intro text-muted">Curating the world's most stunning and unique hotel experiences</p>
<p align="center">
<img class="img-responsive" src="img/portfolio/Final-Logo-Emblem.jpg" alt=""></p>
<p>Spectacular Stays was created by Jonathan after he grew exasperated with travel blogs being dialuted with sponsored posts. He came up with the idea of creating a purpose built platform on wordpress allowing bloggers to write sponsored guest posts. The site has succeeded in attracting over 40 talented travel bloggers, photographers and video experts as well as engaging over 80 hotels. Together they have created a highly visual experience, enticing readers to find out more about each individual hotel.</p>
<p>
Visit the site at <a href="http://www.spectacularstays.com" target="blank">spectacualrstays.com</a> as well as our new sister site that we have recently launched in Chinese, <a href="http://www.baituyou.com" target="blank">baityu.com</a>.</p>
<ul class="list-inline">
<li>Founded: July 2014</li>
<li>Category: Accomodation/Hospitality</li>
<li>Platform: Wordpress</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 8 -->
<div class="portfolio-modal modal fade" id="portfolioModal8" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>#techlondon</h2>
<p class="item-intro text-muted">The London startup & tech community online, real time</p>
<img class="img-responsive img-centered" src="img/portfolio/techlondon.png" alt="">
<p>#techlondon is a community group built on the Slack instant communication platform, which helps people within the startup & tech scene communicate, collaborate, brainstorm, get feedback and share knowledge.</p>
<p>Jonathan joined the group from an early stage and helped grow the user base to over 5000 people who discover the group primarily through word of mouth.</p>
<ul class="list-inline">
<li>Founded: January 28th 2015</li>
<li>Website: <a href="http://www.techlondon.io">www.techlondon.io</a></li>
<li>Platforms/Tools used: Github, Bootstrap, Slack, Trello, Mailchimp</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 9 -->
<div class="portfolio-modal modal fade" id="portfolioModal9" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Startup Institute Alumni</h2>
<p class="item-intro text-muted">Showcase for students graduating fromt the Fall 2014 program</p>
<img class="img-responsive img-centered" src="img/portfolio/SI-fun.JPG" alt="">
<p>The <a href="http://www.startupinstitute.com/" target="blank">Startup Institute</a> is a career accelerator that combines hard skills with cultural acumen to drastically increase the impact of startup employees.</p>
<p>The <a href="http://www.silondon.com" target="blank">alumni website</a> was set up by Jonathan to showcase participants on the program, during which they spent 8 weeks learning, networking and navigating the startup scene in London.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 10 -->
<div class="portfolio-modal modal fade" id="portfolioModal10" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Casa Moringa</h2>
<p class="item-intro text-muted">High end hostel web design</p>
<img class="img-responsive img-centered" src="img/portfolio/casamoringa-2.jpg" alt="">
<p>Casa Moringa is a new luxury boutique hostel in the costal town of Taganga, Colombia.</p>
<p>Jonathan was contracted to build a website which includes booking integration using <a href="http://www.typeform.com">Typeform</a>.</p>
<p>You can visit the website by <a href="http://www.casa-moringa.com">clicking here</a></p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 11 -->
<div class="portfolio-modal modal fade" id="portfolioModal11" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Founded In UK</h2>
<p class="item-intro text-muted">Curated list of Startups founded in Britain</p>
<img class="img-responsive img-centered" src="img/portfolio/foundeduk.png" alt="">
<p>Part of the <a href="http://www.foundedx.com">FoundedX</a> initative, Founded in UK is a list of startups handpicked for being truly innovative and disruptive within their industry.</p>
<p>Jonathan contacted the Founded X creators and modified their existing template to create a UK specific instance.</p>
<ul class="list-inline">
<li><a href="http://www.foundeduk.com">www.foundeduk.com</a></li>
<li>Founded: March 2015</li>
<li>Category: Startups</li>
<li>Tech: HTML/CSS/Javascript/Jquery</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 12 -->
<!-- <div class="portfolio-modal modal fade" id="portfolioModal12" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">