-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
1013 lines (867 loc) · 40.7 KB
/
config.toml
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
#baseurl = "https://www.flyingsma.com/"
#baseurl = "http://southern-maine-aviation.s3-website-us-east-1.amazonaws.com/" #handled in AWS Lambda
#baseurl = "https://suspicious-perlman-3218fa.netlify.app/"
baseurl = "/"
languageCode = "en-us"
title = "Southern Maine Aviation"
theme = "creative"
googleAnalytics = ""
[params]
# You can use Markdown syntax for urls [text](//url.to/source) for
# most longer texts.
# All icons using Fontawesome's icon font. Look at http://fontawesome.io/icons/
# for more icons. The icons are represented by their corresponding
# CSS class.
# All projects of the portfolio are defined in their own files.
# You can find example projects at 'exampleSite/data/projects'. Copy the 'projects'
# folder into the 'data' directory at the root of this Hugo site.
# For more information take a look at the README.
# To provide some metadata for search engines feel free to add some
# information about you and your website.
name = "Southern Maine Aviation"
description = "Flight Training, Instruction and Services in Southern Maine, Scenic Flights, Learn to Fly, Multi-engine, Sanford, Maine, New England"
# The path must be relative to the static folder
favicon = "favicon_1.0.ico"
# Navigation
[params.navigation]
brand = "<img src='../img/SMALogo.png'>"
[params.navigation.links]
news = "News"
services = "Services"
all_services = "All Services"
portfolio = "Portfolio"
contact = "Contact"
[params.navigation.links.schedule]
title = "Scheduling for Current Customers"
link = "https://app.flightschedulepro.com/Account/Login/186067"
icon = "fa-calendar-alt"
# Hero section
[params.hero]
# To change the background of the hero section, replace the 'header.jpg' at './static/img' with your own.
businessHours = "Open 7 days a week from 7 AM to 5 PM"
altBusinessHours = "Open until 7 PM Memorial Day - Labor Day"
# phoneNumber = "207-324-8919"
[params.hero.contactOne]
description = "For all FBO Inquiries, including corporate arrivals, accounting, or aircaft maintenance"
label = "Desk Phone"
phone = "207-324-8919"
email = "fly@flyingsma.com"
altLabel = "Maintenance"
altEmail = "mx@flyingsma.com"
[params.hero.contactTwo]
description = "For all flight training or flight related questions, aircraft rentals and scheduling, scenic and discovery flights"
label = "call or text"
phone = "207-569-4017"
email = "flightdept@flyingsma.com"
[[params.hero.list]]
# To change the background of the hero section, replace the '1.jpg' at './static/img/hero' with your own.
slogan = "Learn To Fly Today!"
subtitle = "Whether you are a beginner or advanced, just starting out on your aviation journey or looking to enhance your skills we can work with you to create the perfect program. We have a wide range of planes and programs to give you the education experience you can't find anywhere else."
buttonText = "Find Out More"
buttonAction = "/fly"
[[params.hero.list]]
# To change the background of the hero section, replace the '2.jpg' at './static/img/hero' with your own.
slogan = "We're Here For You!"
subtitle = "We are a family oriented company providing services for light aircraft and helicopters, large corporate aircraft, including Air Force One! We look forward to making your experience memorable."
buttonText = "Learn More About Us"
buttonAction = "#news"
[[params.hero.list]]
# To change the background of the hero section, replace the '3.jpg' at './static/img/hero' with your own.
slogan = "Try a Scenic Flight!"
subtitle = "Scenic and Discovery Flights at Southern Maine Aviation are a truly memorable experience and a great introduction to flight. They also make great gifts!"
buttonText = "Learn More Today"
buttonAction = "/scenic-flights"
[[params.hero.list]]
# To change the background of the hero section, replace the '4.jpg' at './static/img/hero' with your own.
slogan = "Everything Aviation"
subtitle = "Southern Maine Aviation offers a full range of services, from beginner, advanced and custom tailored [flight training](/fly), [aircraft maintenance and storage](/aircraft-maintenance), and [corporate arrivals](/corporate-arrivals). We can exceed all your aviation needs."
buttonText = "Find Out More"
buttonAction = "#services"
[[params.hero.list]]
# To change the background of the hero section, replace the '4.jpg' at './static/img/hero' with your own.
slogan = "Multi-Engine Training Now Available!"
subtitle = "Our beautiful twin engine trainer has arrived! For more information or to make training reservations call us. It is booking up fast!"
buttonText = "Find Out More"
buttonAction = "/multi-engine"
[params.news]
headline = "News & Events"
# News section
# [[params.news.list]]
# icon = "book"
# headline = "Fall Ground School Is Starting!"
# description = """Our Fall private pilot ground school is starting on Saturday September 8th and runs for ten weeks.
# The ground school is FAA Approved and covers all of the knowledge areas that you will need to pass the FAA
# Knowledge Test with flying colors! The classes are also a great way to refresh your memory and get back into
# flying if you have been on the ground too long. Many folks attend the ground school and fly on the same day. We
# have a great community of people attending these classes already. Please contact us with questions:
#
#Andrew Button, Chief Instructor<br>
#[480-721-7064](tel:480-721-7064)
#
#<h3>Private Pilot Ground School</h3>
#
#Saturdays 8:00-12:00 pm (September 8 - November 17th)
#
#$325 (25% off for high school students)
#
#We have great options available for books and supplies. Please inquire."""
# buttonText = "Contact Us"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "plane"
# headline = "Southern Maine Aviation is Hiring Part Time Flight Instructors!"
# description = "Call [480-721-7064](tel:480-721-7064) to inquire"
# buttonText = "Get started"
# buttonAction = "#contact"
# News section
# [[params.news.list]]
# icon = "graduation-cap"
# headline = "Southern Maine Aviation will be teaching a drone class"
# description = "\"Drone 101 (AVIA 800 01)\", at Southern Maine Community College in South Portland during the first two weeks of November from 6:00pm - 8:30pm on Tuesdays and Thursdays: 6th, 8th, 13th, and 15th. The cost is $250. You can register through the [SMCC Class Continuing Education website](https://www.smccme.edu/business-community/continuing-studies/continuing-studies-browse-register/)."
# buttonText = "Register"
# buttonAction = "https://www.smccme.edu/business-community/continuing-studies/continuing-studies-browse-register/"
# buttonTarget = "_blank"
# News section
# [[params.news.list]]
# icon = "medkit"
# headline = "FAAST Team Safety Seminar"
# description = """October 6, 2018 - 10AM-12PM
#
#SANFORD SEACOAST REGIONAL AIRPORT (KSFM)
#
#Dr. Thomas Gross is a Senior Aviation Medical Examiner and will be at Southern Maine Aviation to discuss and answer questions regarding Basic Med, aeromedical factors, common drug interactions, and how to keep your aviation medical.
#
#Soup and Chowder Fest to follow. Bring your favorite soup or chowder for prizes. Donations of $7.00 will go to Americares, who provide disaster relief services around the globe.
#
#For more information call us at [207-324-8919](tel:207-324-8919)
#"""
# buttonText = "Call for more information"
# buttonAction = "tel:2073248919"
# buttonTarget = "_blank"
# # News section
# [[params.news.list]]
# icon = "tree"
# headline = "Backcountry Experience Training"
# imageURL = "/img/news/Citabria_promo.png"
# imageLink = "/PDF/Citabria_promo.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "book"
# headline = "Private Pilot Ground School Is Starting!"
# imageURL = "/img/news/Southern Maine Aviation LLC.jpg"
# imageLink = "/PDF/Southern Maine Aviation LLC.pdf"
#
# # News section
# [[params.news.list]]
# icon = "graduation-cap"
# headline = "Instrument Ground School Is Starting!"
# imageURL = "/img/news/Start Your Training Today.jpg"
# imageLink = "/PDF/Start Your Training Today.pdf"
#
# # News section
# [[params.news.list]]
# icon = "medkit"
# headline = "Upcoming FAAST Team Safety Seminar"
# imageURL = "/img/news/FAAST_team_safety_seminar.png"
# imageLink = "/PDF/FAAST_team_safety_seminar.pdf"
# # News section
# [[params.news.list]]
# icon = "book"
# headline = "Private Pilot Ground School Is Starting!"
# imageURL = "/img/news/summer_challenge_2019.png"
# imageLink = "/PDF/summer_challenge_2019.pdf"
# # News section
# [[params.news.list]]
# icon = "hotdog"
# headline = "You are invited!"
# imageURL = "/img/news/You are Invited!.png"
# imageLink = "/PDF/You are Invited!.pdf"
# buttonText = "RSVP Today"
# buttonAction = "mailto:accounting@flyingsma.com"
# buttonTarget = "_blank"
# # News section
# [[params.news.list]]
# icon = "drone-alt"
# headline = "Drone Class Is Starting!"
# imageURL = "/img/news/Part 107 Drone_UAV Class.png"
# imageLink = "/PDF/Part 107 Drone_UAV Class.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "mefkit"
# headline = "Upcoming FAASTeam Safety Seminar"
# imageURL = "/img/news/FAASTeam Safety Seminar Ad 10-12-19.jpg"
# imageLink = "/PDF/FAASTeam Safety Seminar Ad 10-12-19.pdf"
# buttonText = "Contact us for more details"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "graduation-cap"
# headline = "Private Pilot Ground School Is Starting!"
# imageURL = "/img/news/Private Pilot Ground School.png"
# imageLink = "/PDF/Private Pilot Ground School.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "drone-alt"
# headline = "Upcoming Drone Training Classes!"
# imageURL = "/img/news/Drone_Class_2020.png"
# imageLink = "/PDF/Drone_Class_2020.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "graduation-cap"
# headline = "Private Pilot Ground School Is Starting!"
# imageURL = "/img/news/Private_Pilot_Ground_School_2022.png"
# imageLink = "/PDF/Private_Pilot_Ground_School_2022.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "gas-pump"
# headline = "Aircraft Rental Increase Notice"
# imageURL = "/img/news/aircraft_rental_increase_notice.png"
# imageLink = "/PDF/Aircraft Rental Increase Notice.pdf"
# # News section
# [[params.news.list]]
# icon = "shield-plus"
# headline = "Spring 2023 Safety Seminar"
# imageURL = "/img/news/Spring 2023 Safety Seminar Flyer.png"
# imageLink = "/PDF/Spring 2023 Safety Seminar Flyer.pdf"
# # News section
# [[params.news.list]]
# icon = "hand-holding-heart"
# headline = "Operation Screaming Eagle"
# imageURL = "/img/news/Operation Screaming Eagle Poster.png"
# imageLink = "/PDF/Operation Screaming Eagle Poster.pdf"
# News section
[[params.news.list]]
icon = "plane-prop"
headline = "Multi-Engine Training Available!"
imageURL = "/img/news/Multi-Ad v3.png"
buttonText = "Find Out More"
buttonAction = "/multi-engine"
# News section
[[params.news.list]]
icon = "plane-alt"
headline = "Multi-Engine Training Now Available!"
imageURL = "/img/news/Multi-Ad v2.png"
imageLink = "/PDF/Multi-Ad v2.pdf"
buttonText = "Find Out More"
buttonAction = "/multi-engine"
# # News section
# [[params.news.list]]
# icon = "drone-alt"
# headline = "Upcoming Remote Pilot Training!"
# imageURL = "/img/news/Remote_Pilot_Training.png"
# imageLink = "/PDF/Remote_Pilot_Training.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "pepper-hot"
# headline = "Winter 2020 Seminar"
# imageURL = "/img/news/winter_2020_seminar.png"
# imageLink = "/PDF/winter_2020_seminar.pdf"
# # News section
# [[params.news.list]]
# icon = "graduation-cap"
# headline = "Private Pilot Ground School Is Starting!"
# imageURL = "/img/news/Private_Pilot_Ground_School_update.png"
# imageLink = "/PDF/Private_Pilot_Ground_School.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# # News section
# [[params.news.list]]
# icon = "tachometer-alt"
# headline = "Instrument Ground School Is Starting!"
# imageURL = "/img/news/Instrument_Ground_School_update.png"
# imageLink = "/PDF/Instrument_Ground_School.pdf"
# buttonText = "Contact us for more information"
# buttonAction = "#contact"
# News section
[[params.news.list]]
icon = "snowflake"
headline = "Look what you can do SOLO!"
imageURL = "/img/news/Look_what_you_can_do_SOLO.png"
imageLink = "/PDF/Look_what_you_can_do_SOLO.pdf"
# # News section
# [[params.news.list]]
# icon = "broadcast-tower"
# headline = "Drone 101 Class Is Starting!"
# imageURL = "/img/news/Mar_2019_Drone_class.png"
# imageLink = "/PDF/Mar_2019_Drone_class.pdf"
# # News section
# [[params.news.list]]
# icon = "broadcast-tower"
# headline = "Upcoming FAASTeam Safety Seminar!"
# imageURL = "/img/news/4_27_19-FAASTeam-Seminar.jpg"
# imageLink = "/PDF/4_27_19-FAASTeam-Seminar.pdf"
# # News section
# [[params.news.list]]
# icon = "broadcast-tower"
# headline = "Upcoming FAASTeam Safety Seminar!"
# imageURL = "/img/news/7_20_19-FAASTeam-Seminar.png"
# imageLink = "/PDF/7_20_19-FAASTeam-Seminar.pdf"
[params.instagram]
headline = "Instagram"
# Service section
[params.services]
headline = "At your service"
description = "We offer a full range of services for General Aviation and corporate aircraft, plus an active flight training program. The FBO offers free computer usage and Wi-Fi, as well as a comfortable lounge and beverages for purchase."
[[params.services.list]]
icon = "fa-briefcase"
title = "Corporate Arrivals"
description = "We can make sure everything you need is here waiting upon your arrival."
[params.services.list.link]
url = "/corporate-arrivals"
title = "Learn More"
[[params.services.list]]
icon = "fa-plane"
title = "Learn To Fly"
description = "There is so much more than we can fit here, so please give us a call or stop by."
[params.services.list.link]
url = "/fly"
title = "Learn More"
[[params.services.list]]
icon = "fa-binoculars"
title = "Scenic Flights"
description = "Make great Gifts, and are memorable experiences."
[params.services.list.link]
url = "/scenic-flights"
title = "Learn More"
[[params.services.list]]
icon = "fa-wrench"
title = "Aircraft Maintenance"
description = "Our award-winning mechanics can help give you the peace of mind that comes from knowing that your aircraft is in top notch condition and has been inspected thoroughly and professionally. "
[params.services.list.link]
url = "/aircraft-maintenance"
title = "Learn More"
# Corporate Service section
[params.corporate_services]
headline = "Corporate Arrival Services"
description = """After hours available on request, $160.00/hour.
Call <a href='tel:2073248919'>207-324-8919</a> during business hours.<br/>
Call <a href='tel:2076519308'>207-651-9308</a> after hours emergency for <span style='white-space:nowrap;'> Mark Damuth - General Manager</span>"""
[[params.corporate_services.list]]
icon = "fa-dollar-sign"
title = "Fees"
description = "Reasonable rates on aviation services."
[params.corporate_services.list.link]
url = "#fees"
title = "Learn More"
[[params.corporate_services.list]]
icon = "fa-utensils-alt"
title = "Dining"
description = "Area dining options."
[params.corporate_services.list.link]
url = "#restaurants"
title = "Learn More"
[[params.corporate_services.list]]
icon = "fa-gas-pump"
title = "Fuel"
description = "High quality aviation grade fuel options."
[params.corporate_services.list.link]
url = "#fuel"
title = "Learn More"
[[params.corporate_services.list]]
icon = "fa-bed"
title = "Lodging"
description = "Area lodging."
[params.corporate_services.list.link]
url = "#lodging"
title = "Learn More"
[[params.corporate_services.list]]
icon = "fa-taxi"
title = "Transportation"
description = "Getting around once you get here."
[params.corporate_services.list.link]
url = "#ground-transportation"
title = "Learn More"
[[params.corporate_services.list]]
icon = "fa-wrench"
title = "Maintenance"
description = "Our award-winning mechanics can help give you the peace of mind that comes from knowing that your aircraft is in top notch condition and has been inspected thoroughly and professionally. "
[params.corporate_services.list.link]
url = "#aircraft-maintenance"
title = "Learn More"
# # Aside section
# [params.aside]
# headline = "Upcoming Events"
# description = """The next Drone class will be taught by Southern Maine Aviation Instructors at the Portland Campus of Southern Maine Community College!
#To register go to the SMCC website and go to the Continuing Studies section or use this link:
#
#[Register Here](//google.com)
#
#Look for this:
#Intro to sUAS - Drone 101
#(AVIA 800 01)
#
#
#4 nights
#03/13/18 - 03/22/18
#Tuesdays 5:30PM-8PM
#Thursdays 5:30PM-8PM
#
#
#The cost will be $225.00"""
#
# [params.aside.button]
# text = "Contact Us"
# link = "mailto:fly@flyingsma.com"
# Contact section
[params.contact]
headline = "Let's Get In Touch!"
description = "Ready to start flying with us? That's great! Give us a call or send us an email and we will get back to you soon!"
facebook = "https://www.facebook.com/SouthernMaineAviation/"
streetAddressLine1 = "199 Airport Road"
streetAddressLine2 = "Sanford, Maine 04073"
gmapsAddress = "Southern Maine Aviation, 199 Airport Rd, Sanford, ME 04073, USA"
gmapsEmbedURL = "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2898.8488587129677!2d-70.71279048432662!3d43.40108837671419!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cb2b440a2eb5a67%3A0xa3a092f530c9d102!2sSouthern+Maine+Aviation!5e0!3m2!1sen!2spe!4v1525538071837"
[[params.contact.phone.list]]
number = "207-324-8919"
label = "FBO Inquiries and Maintenance"
[[params.contact.phone.list]]
number = "207-569-4017"
label = "Flight Questions and Admissions"
[[params.contact.email.list]]
email = "fly@flyingsma.com"
label = "FBO Inquiries"
[[params.contact.email.list]]
email = "flightdept@flyingsma.com"
label = "Flight Questions"
[[params.contact.email.list]]
email = "mx@flyingsma.com"
label = "Maintenance"
# [[params.contact.email.list]]
# email = "admissions@flyingsma.com"
# label = "Admissions"
# Footer
[params.footer.copyright]
name = "Southern Maine Aviation LLC"
year = "2024"
# Fly
[params.fly]
title = "Fly with Souther Maine Aviation"
# Instructors
[[params.instructors.list]]
title = "Andrew Button"
availability = "Full Time Monday-Friday"
description = """Andrew Button has been flying since sixteen and has never grown tired of the view. He enjoys flying with a variety of people and different airplanes. He has a small family and enjoys hiking and lake life. Andrew is the Chief Instructor at Southern Maine Aviation and has diverse experience in aviation training and management. He dreams of ocean sailing."""
imageUrl = "andrew_button.png"
image2Url = "andrew_button_2.png"
# Instructors
[[params.instructors.list]]
title = "Paul Hodak"
availability = "Tuesday and Wednesday"
description = """Paul Hodak is a retired American Airlines Captain and former flight instructor at Embry-Riddle Aeronautical University. He has more than twenty-eight thousand hours of flying experience, from Cessnas to wide-body commercial airliners. Instructing at Southern Maine Aviation has given Paul an opportunity to share his experience with recreational and professional aviation enthusiasts alike."""
imageUrl = "paul_hodak.png"
image2Url = "paul_hodak_2.png"
# Instructors
[[params.instructors.list]]
title = "Richard Whicker"
availability = "Saturdays and By Appointment"
description = """Rich Whicker learned to fly a taildragger in Jaffrey, NH in 1970 and has a multitude of professional flying jobs since. Rich has had a lifelong passion for anything that flies. Ask what is the most important quality a flight instructor must have? “A strong sense of self-preservation”."""
imageUrl = "rich_whicker.png"
image2Url = "rich_whicker_2.png"
# # Instructors
# [[params.instructors.list]]
# title = "Rich Curcio"
# availability = "Variable and by appointment"
# description = """Rich Curcio is currently a first officer for an aircraft charter company. He has been working in aviation in one form or another for the past ten years. Rich enjoys spending time with his family, a good whiskey, and learning to fly various types of airplanes. Rich does not combine the last two activities and recommends you not doing so either."""
# imageUrl = "rich_curcio.png"
# image2Url = "rich_curcio_2.png"
#
# # Instructors
# [[params.instructors.list]]
# title = "Mike Sachse"
# availability = "Thursdays and by appointment"
# description = """Mike Sachse is a former active duty and reserve Air Force pilot. Since retiring from the corporate sector he has been enjoying being an Instructor at Southern Maine Aviation. He is an avid sportsman and enjoys cycling, skiing, and carving decorative wood animals."""
# imageUrl = "mike_sachse.png"
# image2Url = "mike_sachse_2.png"
# Instructors
[[params.instructors.list]]
title = "Sue Tholen"
availability = "By appointment"
description = """Sue Tholen has been instructing at Southern Maine Aviation part-time for the last 15 years, while working in real life as a structural engineer and IT data analyst and whatever new career suits her fancy. She loves flying taildraggers into interesting new places and has recently taken the plunge into attempting a kit built airplane."""
imageUrl = "sue_tholen.png"
image2Url = "sue_tholen_2.png"
# # Instructors
# [[params.instructors.list]]
# title = "Matt Hunter"
# availability = "Tuesday and Thursdays"
# description = """Matt Hunter retired from the Air Force after 23 years of active duty service. He is excited to bring the experience he gained during his career to the students at SMA. In his spare time he likes hunt, fish and exercise vigorously. Matt was born and raised in Maine and has a small family of his own."""
# imageUrl = "placeholder-person.png"
# Instructors
# [[params.instructors.list]]
# title = "Kristi Johnson-Fenton"
# availability = "Mondays and by appointment"
# description = """Kristi Johnson-Fenton has been involved in aviation since 1997. She learned to fly in the St. Louis area and was an instructor and cargo pilot before moving to Maine. Kristi enjoys teaching at SMA. She has a passion for traveling and various arts and crafts."""
# imageUrl = "placeholder-person.png"
# Instructors
[[params.instructors.list]]
title = "James Stickney"
availability = "Weekends and by appointment"
description = """James Stickney earned his private pilot license in a taildragger then learned to fly aerobatics before continuing on with his other ratings. He currently works in the power generation industry but enjoys sharing his passion for aviation as a part time instructor at Southern Maine Aviation."""
imageUrl = "james_stickney.png"
image2Url = "james_stickney_2.png"
# Instructors
# [[params.instructors.list]]
# title = "Nick Mangino"
# availability = "Tuesdays"
# description = """Nick Mangino is a full time Patrol Deputy for the Cumberland County Sheriff's Office and has been flying since he was 17 years old. Nick flies with SMA on his days off and is very excited to be able to share and teach his passion with others. When Nick is not flying, you can find him in the gym doing Crossfit, recreating in the Maine Woods hunting and fishing, and spending time with his wife and dogs."""
# imageUrl = "nick_mangino.png"
# image2Url = "nick_mangino_2.png"
# Instructors
# [[params.instructors.list]]
# title = "Jerry Fraser"
# availability = "Weekends"
# description = """Jerry Fraser worked as a deckhand on fishing boats in his youth, and never thought for a moment about aviation growing up. That is, until he took his own “discovery” flight at Sanford Airport in 1990. He became an instructor in 1995 and now spends weekdays behind a desk in Portland, daydreaming about flight instructing at Southern Maine Aviation on the weekends."""
# imageUrl = "jerry_fraser.png"
# image2Url = "jerry_fraser_2.png"
# Instructors
# [[params.instructors.list]]
# title = "Christian Hemenway"
# availability = "Weekends"
# description = """Christian Hemenway started flying in 1985 and received his private pilot certificate in 1986. In 1989 he iced the cake with his Instrument, Commercial, CFI & CFII. He worked for a flight school out on Long Island, NY before returning home to Maine to work at his family’s business. He have always loved flying and enjoy sharing that passion with everyone that he works and flies with!"""
# imageUrl = "chris_hemenway.png"
# image2Url = "chris_hemenway_2.png"
# Instructors
[[params.instructors.list]]
title = "John Gary"
availability = "By appointment"
description = """John Gary has been a regular fixture at the Southern Maine Aviation and the Sanford Airport for the last twenty years. John is a designated pilot examiner and a great resource to the pilot population here at Southern Maine. John can build anything out of wood and is fairly skilled in the kitchen as well."""
imageUrl = "john_gary.png"
image2Url = "john_gary_2.png"
# Instructors
# [[params.instructors.list]]
# title = "Nicholas Heyland"
# availability = "Seasonal by appointment"
# description = """Nicholas Heyland is a college student graduating in May 2019 from Bridgewater State University with a degree in Aviation science and a concentration in flight training. Nick is one of our seasonal flight instructors, who spends his spare time surfing, skiing and camping. He started flying at SMA back in 2013 at the age of 16 and now teaches for the flight school."""
# imageUrl = "nicholas_heyland.png"
# image2Url = "nicholas_heyland_2.png"
# Instructors
# [[params.instructors.list]]
# title = "James Hanley"
# availability = "By appointment"
# description = """James Hanley began flying right here at Sanford in the early 2000s. He earned most of his ratings at Southern Maine Aviation and began instructing for the school in 2019. James is now a corporate pilot, and part-time instructor. When he isn't flying he can usually be found enjoying the great Maine outdoors."""
# imageUrl = "james_hanley.png"
# image2Url = "james_hanley_2.png"
# Instructors
[[params.instructors.list]]
title = "Cindy Daigle"
availability = "Part Time"
description = """Cindy Daigle is a part-time instructor that started flying 20 years ago. Her day job is a Business Systems Manager but she feels that sharing her passion for aviation as an instructor is a dream come true! When not flying taildraggers, light sport aircraft and gliders, you may find her in her hanger working on her Aeronca Champ. The next dream is aerobatics! Cindy enjoys camping, kayaking, and hiking with family and friends."""
imageUrl = "cindy_daigle.png"
image2Url = "cindy_daigle_2.png"
# Instructors
# [[params.instructors.list]]
# title = "Chad Rassmussen"
# availability = "Full Time Tuesday-Saturday"
# description = """Chad joins us from Louisville Kentucky. As the son of a UPS pilot he has been exposed to aviation his whole life. After graduating college from Franciscna University he trained with ATP, and then taught as a multi-engine instructor for FlightSafety Academy. Chad joins us as a full-time instructor excited to continue sharing his passion for aviation to new and seasoned pilots alike. Chad enjoys riding motorcycles, cooking, and the outdoors among many other things."""
# imageUrl = "chad_rassmussen.png"
# Instructors
# [[params.instructors.list]]
# title = "Richard Peterson III"
# availability = "Full Time Friday-Tuesday"
# description = """Richard is a native New Englander and joins us from New Hampshire. He trained at ATP and is excited to join the local aviation community and train new pilots. Richard enjoys his family, outdoor activities and playing with his pet ferret, Ricardo."""
# imageUrl = "richard_peterson_iii.png"
# Instructors
# [[params.instructors.list]]
# title = "John Tiplady"
# availability = "Full Time Monday-Friday"
# description = """John Tiplady started flying at the ripe age of 11 at his hometown airport of Beverly, MA. He attended Embry-Riddle Aeronautical University where he obtained most of his ratings. He has a passion for teaching, taildraggers, and flying aerobatics. When John isn’t flying, he enjoys nature walks with his dog, Piper, and photography."""
# imageUrl = "john_tiplady.png"
# Instructors
# [[params.instructors.list]]
# title = "Michael Burns"
# availability = "By appointment"
# description = """Michael Burns started his aviation career in his home state of sunny Florida in 2013. An artist at heart, Michael enjoys arts and crafts and is an amateur baker in his spare time. He is a tech guru and can fix anything with a CPU. He is living his dream working as full time professional flight instructor."""
# imageUrl = "michael_burns.png"
# image2Url = "michael_burns_2.png"
# Instructors
[[params.instructors.list]]
title = "Tijani Marou"
availability = "Tuesday-Saturday"
description = """Tijani Marou is a full time instructor (CFI/CFII). He is a graduate of the University of Vermont and is a former Mechanical Engineer. He is an avid sailor, and when not flying you can typically find him windsurfing or skiing if the water is too cold."""
imageUrl = "tijani_marou.png"
image2Url = "tijani_marou_2.png"
# Instructors
[[params.instructors.list]]
title = "Payton Powers"
description = """Payton Powers (CFI/CFII/MEI) has always had a passion for aviation. When he’s not flying you can find him fishing, hiking, traveling (searching for the best tacos) and enjoying the outdoors."""
imageUrl = "payton_powers.png"
image2Url = "payton_powers_2.png"
# Instructors
[[params.instructors.list]]
title = "Jamie Dernbach"
description = """Jamie Dernbach started flying in 2019, following his childhood dream. Before becoming a pilot he was a tricycle tour guide and U.S. Marine. Jamie’s favorite thing about flying is getting a perfect landing. While he isn’t instructing Jamie enjoys playing board games with his fiancée Kelly and his cat Chubbs. His favorite music genre is metal. He can kick a kickball at least 50 yards."""
imageUrl = "jamie_dernbach.png"
image2Url = "jamie_dernbach_2.png"
# Instructors
[[params.instructors.list]]
title = "Josh Harder"
description = """Josh Harder started flying in 2015 out of the Portland International Jetport and in college continued his training in the busy Central Florida airspace. Josh’s favorite season is Fall. When he is not flying you can find him in Portland, hiking, or watching the Boston Red Sox. """
imageUrl = "josh_harder.png"
image2Url = "josh_harder_2.png"
[params.pilotPathway.form]
email = "kevin@greenhopperdesign.com"
message = """Great! We can help set up a program that will fit your interests perfectly! Submit the form below or contact us at <a href='tel:2073248919'>207-324-8919</a> and we'll start working with you to set up the perfect program today."""
subject = "Pilot Pathway Interest"
cc = "kevin@greenhopperdesign.com"
icon = "plane"
image = "pilot-pathway-4.jpg"
[[params.pilotPathway.list]]
step = 1
icon = "plane"
start = true
question = "Why do you want to learn to fly?"
image = "pilot-pathway-1.jpg"
[[params.pilotPathway.list.answers.list]]
nextStep = 2
answerText = "Career opportunities"
[[params.pilotPathway.list.answers.list]]
nextStep = 2
answerText = "Seems like a fun hobby"
[[params.pilotPathway.list]]
step = 2
icon = "plane"
question = "What sparked the interest?"
image = "pilot-pathway-2.jpg"
[[params.pilotPathway.list.answers.list]]
nextStep = 3
answerText = "I've always been interested in aviation"
[[params.pilotPathway.list.answers.list]]
nextStep = 3
answerText = "Friends and family"
[[params.pilotPathway.list]]
step = 3
icon = "plane"
question = "Paved runways at \"point b\" or backcountry grass strips in more remote areas?"
image = "pilot-pathway-3.jpg"
[[params.pilotPathway.list.answers.list]]
nextStep = "last"
answerText = "Paved"
[[params.pilotPathway.list.answers.list]]
nextStep = "last"
answerText = "Grass strips"
[params.thanks]
message = "Thank you! We will be in contact soon."
[params.thanks.button]
text = "Return to Home"
url = "/"
# Lodging
[[params.lodging.list]]
title = "Hampton Inn and Suites"
address = """900 Post Road
Wells, Maine 04090"""
phone = "207-646-0555"
description = """10.2 miles from KSFM"""
imageUrl = "Wells_Hampton_Inn.jpg"
pricing = "call for seasonal pilot discounts"
gmapsEmbedURL = "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2903.660121788136!2d-70.59013548451374!3d43.30043887913499!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x7561240bc72bb6a5!2sHampton+Inn+%26+Suites+Wells-Ogunquit!5e0!3m2!1sen!2spe!4v1530108729724"
# Lodging
[[params.lodging.list]]
title = "Holiday Inn Express Biddeford"
address = """45 Barra Road
Biddeford, Maine 04005"""
phone = "207-294-6464"
description = """16 miles from KSFM"""
imageUrl = "Biddeford_Holiday_Inn_Express.jpg"
pricing = "call for pilot discounts"
gmapsEmbedURL = "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2894.88749237339!2d-70.49381454878161!3d43.48381827128233!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cb2a53cc8537ae9%3A0x93a45743b49d5b5d!2sHoliday+Inn+Express+Biddeford!5e0!3m2!1sen!2spe!4v1530111828730"
# Lodging
[[params.lodging.list]]
title = "Hampton Inn Saco / Biddeford"
address = """48 Industrail Park Road
Saco, Maine 04072"""
phone = "207-282-7222"
description = """20 miles from KSFM"""
imageUrl = "Biddeford_Hampton_Inn.jpg"
pricing = "call and mention Southern Maine Aviation for pilot discount program"
gmapsEmbedURL = "https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2892.892697804521!2d-70.44839324878065!3d43.5254302685986!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4cb2a36314549eb5%3A0xacf954d1696ec797!2sHampton+Inn+Saco%2FBiddeford!5e0!3m2!1sen!2spe!4v1530111962446"
# Dining
# Restaurants
[[params.restaurants.list]]
title = "Pilots Cove Café (on the field)"
url = "https://www.pilotscovecafe.com"
# Restaurants
[[params.restaurants.list]]
title = "Shains of Maine"
url = "https://www.facebook.com/pages/Shains-of-Maine-Restaurant/418009144997295"
# Restaurants
[[params.restaurants.list]]
title = "Lords Clam Box"
url = "http://lordsclambox.com/"
# Catering
[[params.catering.list]]
title = "Jonathan's"
phone = "207-646-4777"
# Catering
[[params.catering.list]]
title = "Day Tripper Catering"
phone = "603-380-6079"
# Catering
[[params.catering.list]]
title = "Pilots Cove Café"
phone = "207-850-1183"
# Ground Transport
# rental cars
[[params.rental_cars.list]]
title = "Enterprise"
phone = "207-324-8122"
# rental cars
[[params.rental_cars.list]]
title = "Hertz"
phone = "207-324-7368"
# rental cars
[[params.rental_cars.list]]
title = "Avis"
phone = "207-874-7501"
# taxis
[[params.taxis.list]]
title = "Frontline Taxi"
name = "William \"Bucky\" Collins owner operator"
description = "7 passenger Dodge Caravans"
phone = "207-490-1214"
# taxis
[[params.taxis.list]]
title = "J&M Taxi"
name = "Mark Bshara owner operator"
description = "7 passenger Dodge Caravans"
phone = "207-490-2222"
# FAQ
[[params.questions.list]]
question = "WHAT AGE SHOULD I BE TO LEARN TO FLY?"
answer = "We have had students as young as 12 and as old as 92. It is a good idea to be tall enough to be able to reach the rudder pedals. The FAA requires a pilot to be at least 16 years of age to solo and 17 years of age to take the practical test."
# FAQ
[[params.questions.list]]
question = "WHAT IS A “DISCOVERY FLIGHT”?"
answer = """
A Discovery Flight is your first flight lesson. It is your introduction to the airplane
and the world of flight. Actual flight time is
about 30 minutes, during which the student
takes the controls for some basic flight
maneuvers. The instructor handles the take
off and landing, with the student following
along on the controls. At the end of the flight
there will be a debriefing to go over the flight
and to plan for your next lesson. Allow
about one and a half hours. The cost is $155
and includes your first logbook."""
# FAQ
[[params.questions.list]]
question = "WHAT DAYS AND TIMES ARE LESSONS SCHEDULED?"
answer = """We are open 7 days a week, 7 am to 5 pm.
In the summer we are open until 7pm. You
can arrange for a lesson any time in that
block, or after hours by prior arrangement
with your instructor."""
# FAQ
[[params.questions.list]]
question = "WHAT DO I NEED TO START FLYING LESSONS?"
answer = """We supply the airplane and headset. You’ll
need to be comfortably and appropriately
dressed for seasonal weather. Sunglasses
are a nice accessory on sunny days, but not
required."""
# FAQ
[[params.questions.list]]
question = "HOW LONG DOES IT TAKE TO GET A PRIVATE PILOT CERTIFICATE?"
answer = """The FAA requires a minimum of 40 hours of
instruction and experience for a private pilot
certificate. Most pilots require 60 or more
flight hours to prepare them for their practical
test. A lesson usually includes one hour of
flying. We recommend 2 to 3 lessons a
week, but some students pace it at one or
two lessons a month."""
# FAQ
[[params.questions.list]]
question = "HOW MUCH DOES IT COST?"
answer = """Aircraft Rental $13,200 \n
60 hrs @220.00/hr \n
Flight Instructor Time $3,000 \n
40 hours @$80/hr \n
Books, test fees, misc. $1,000 \n
Total $17,200\n
Note: Cost shown are estimates and are based on typical
hours, not minimum requirements. Prices are subject to
change."""
# FAQ
[[params.questions.list]]
question = "WHEN DO I GET TO FLY BY MYSELF?"
answer = """This will happen after both you and your
instructor feel you are ready. The FAA
requires you to have passed your flight
physical, be 16 years of age, and your
instructor has signed an endorsement in
your logbook that you are ready. That first
flight alone is referred to as your “Solo” and
generally happens after 12 to 20 hours of
instruction."""
# FAQ
[[params.questions.list]]
question = "SHOULD I TAKE GROUND SCHOOL BEFORE I START FLYING?"
answer = """There is no need for any bookwork before
you take your first flight. There is some
studying involved in flying, to learn the
regulations and the inner workings of an
airplane, but that can be done as you work
on developing your flying skills. The FAA
has a required written test, but it’s multiple
choice and they tell you the questions and
possible answers beforehand, so don’t
sweat it. There are a lot of study aids,
videos and classes available to help you
learn the material. We can help you find one
that works for your learning style."""
# FAQ
[[params.questions.list]]
question = "WHAT CAN I DO WITH A PRIVATE PILOT CERTIFICATE?"
answer = """We make our aircraft available for rent to
licensed pilots for anything from a quick flight
along the coast to a month long trip to
explore the west. There are thousands of
public airports in the United States hoping
you’ll stop by."""
# FAQ
[[params.questions.list]]
question = "WHAT TYPE OF AIRCRAFT WILL I BE FLYING?"
answer = """Most of our students start their lessons in
one of our Cessna 172’s. These high wing
four seat aluminum airplanes are known as
“Skyhawks”. They are comfortable,
predictable and very well built, making them
one of the most popular – and safe – training
aircraft ever built.
Some pilots really love to fly tailwheel
airplanes and for them we have a Citabria.
Ours was built in 2004, though the design
dates back to Grandpa’s time. It is truly
“stick and rudder” flying, with fantastic
visibility."""
# FAQ
[[params.questions.list]]
question = "WHAT HAPPENS IF THE WEATHER IS BAD?"
answer = """We want flight training to be safe AND fun. It
isn’t safe if thunderstorms are in the area or
the clouds are low. It isn’t fun if it is really
windy or turbulent or cold. Book your lesson
when you can and if the weather is outside
your comfort zone (or ours), we’ll just cancel