-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1790 lines (1553 loc) · 94.7 KB
/
index.html
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fuel Cafe</title>
<meta name="description" content="Fuel Cafe 5th Street Walker's Point and Fuel Cafe Center Street Riverwest">
<meta name="keywords" content="web developer, Milwaukee WI">
<meta property="og:title" content="Fuel Cafe 5th Street Walker's Point and Fuel Cafe Center Street Riverwest · Fuel Cafe">
<meta property="og:description" content="Fuel Cafe 5th Street Walker's Point and Fuel Cafe Center Street Riverwest">
<meta property="og:url" content="https:fuelcafe.netlify.com">
<link rel="stylesheet" href="/assets/css/main.css">
<!-- font embeds -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Krona+One|Montserrat:400,700|Yellowtail" rel="stylesheet">
<!-- Replace favicon.ico in the root directory and delete this when done -->
</head>
<body class="contain-drag" style="">
<div class="body-container">
<div class="loader-overlay">
<div class="borderframe top"></div>
<div class="borderframe right"></div>
<div class="borderframe bottom"></div>
<div class="borderframe left"></div>
<img src="/assets/images/loader_logo.png" alt="Fuel Cafe Loading Logo">
</div>
<div class="cs-tag side-tag mobile-only" onclick="selectLocation('left')">
<p>CENTER STREET <span class="side-title"></span></p>
</div>
<div class="wp-tag side-tag mobile-only" onclick="selectLocation('right')">
<p>WALKER'S POINT <span class="side-title"></span></p>
</div>
<div class="main-nav-wrapper mobile-only">
<nav class="main-nav fuel-menu">
<a data-url="#menu" class="">Menu</a>
<a data-url="#events" class="">Events</a>
<a data-url="#about" class="">About</a>
<a data-url="#merch" class="">Merch</a>
<a data-url="#social" class="">Social</a>
</nav>
</div>
<div class="drawer-mobile-menu mobile-only">
<div class="tab-nav-wrapper">
<a class="tab-nav slick-slide" onclick="toggle_drawer('We Vend Events!'); return false;">We Vend Events!</a>
<a class="tab-nav slick-slide" onclick="toggle_drawer('Private Event Space at Fuel'); return false;">Private Event Space at Fuel</a>
<!--
<a class="tab-nav" onclick="toggle_drawer(0); return false;" data-id="0">CATERING AND SPECIAL EVENTS</a>
<a class="tab-nav" onclick="toggle_drawer(1); return false;" data-id="1">Fuel Pop Up Cafe</a>
<a class="tab-nav" onclick="toggle_drawer(2); return false;" data-id="2">Two Wheel Thursday</a>
-->
</div>
</div>
<div class="dev-reset mobile-only" onclick="reset_draggable(); return false;"></div>
<!-- <div class="section-nav mobile-only">
<h2 class="section-title"></h2>
</div> -->
<div class="fixed-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<div class="left-logo">
<img src="/assets/images/center-logo.png" alt="fuel cafe logo center street">
</div>
<div class="right-logo">
<img src="/assets/images/walker-logo.png" alt="fuel cafe logo walkers point">
</div>
</div>
<div class="controller-wrapper mobile-only">
<!-- <div id="draggable" class="location-controller draggable ui-widget-content noSwipe" onclick="selectLocation('center')" style="background-image: url(/assets/images/location-controller-border.png);"><span class="helper-text">Drag Me!</span></div> -->
<img id="draggable" class="location-controller draggable ui-widget-content noSwipe" onclick="selectLocation('center')" src="/assets/images/location-controller.png" alt="location controller slider">
<button type="button" class="helper-text">Drag Me!</button>
</div>
<div class="address-footer cs-address mobile-only">
<div class="address-text">
<h4 class="cafe-info-title">Center Street Cafe</h4>
<p class="cafe-info-content"><span style="margin-right:15px;">818 E center st</span><a href="tel:+1-414-847-3835">414.374.fuel</a></p>
</div>
</div>
<div class="address-footer wp-address mobile-only">
<div class="address-text">
<h4 class="cafe-info-title">Walker's Point Cafe</h4>
<p class="cafe-info-content"><span style="margin-right:15px;"><a href="tel:+1-414-847-9580">414-847-9580</a></span>630 s 5th st</p>
</div>
</div>
<script> var location_url = '';</script>
<!-- start proof of concept -->
<div class="body-wrapper col-12-across clearfix" data-action="page_load">
<!-- <div class="center-bg"></div>
<div class="walker-bg"></div> -->
<section class="main-content split split-horizontal center-street" id="center_street" data-embed="Main contnent area" onclick="selectLocation('left')" style="width: calc(50% - 2.5px);">
<div class="center-street-header section-wrapper menu-target check-loaded" style="background-image: url('/assets/images/bg-home-center-1100.jpg');">
<div class="photo_overlay"></div>
<div class="center-street-container"> <!-- // centers all the content -->
<div class="location-logo to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/center-logo.png" alt="Fuel Cafe Center Street logo">
</div>
<div class="secondary-logo to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/secondary_center_logo.png" alt="center">
</div>
<div class="center-home-wrapper">
<div class="center-home-content">
<h2 class="small-caps-title">WEDNESDAY</h2>
<p class="medium-text">$4 Burrito, $4.50 Super Burrito</p> <br>
<bs_editable section="center-st-header" type="html">
<div class="date-and-time">
<h4 class="medium-text">M-F: 7am-9pm</h4>
<h4 class="medium-text">Sat & Sun: 8am-9pm</h4>
</div>
</bs_editable>
</div>
</div>
</div> <!-- end of center-street-container -->
</div>
<div class="center-menu section-wrapper menu-target check-loaded" id="menu" data-mobile="/assets/images/bg-menu-center.jpg" style="background-image: url('/assets/images/bg-menu-center.jpg');">
<div class="photo_overlay"></div>
<img class="center-plate check-visible" src="/assets/images/food-plate-center.png" alt="Spicy Salami & Baked Ham">
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/center-logo.png" alt="Fuel Cafe Center Street logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">MENU</h2>
<bs_editable section="center-st-menu-content" type="html">
<h2 class="italic-title">Try the</h2>
<h3 class="big-menu-title">Spicy Salami & baked ham</h3>
<br><br>
<p class="medium-white-text">
Baked ham and imported salami on a sub roll with Glorioso’s specialty hot giardiniera peppers, provolone, tomato, onion, Italian herbs, olive oil, mayo & lettuce. Hot or cold.
</p>
</bs_editable>
<div class="menu-button-space">
<h3 class="italic-title">Full Menus</h3>
<br>
<div class="newspaper-background">
<a class="newspaper-button" href="/assets/images/buckets_7_menu_pdf.pdf" target="_blank">Eat</a>
</div> <!-- <div class="newspaper-background">
<a href="#" class="newspaper-button">Eat</a>
</div>
<div class="newspaper-background">
<a href="#" class="newspaper-button">Drink</a>
</div> -->
</div>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="center-events section-wrapper extended menu-target" id="events" data-mobile="/assets/images/center-events-bg.jpg" style="background-image: url(/assets/images/center-events-bg.jpg);">
<div class="photo_overlay"></div>
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/center-logo.png" alt="Fuel Cafe Center Street logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">EVENTS</h2>
<div class="text-center menu-button-space">
<h2 class="small-caps-title">Weekly Specials</h2>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>MONDAY</strong></p>
<p class="medium-text">Double Punches on Fuel Card</p> </div>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>WEDNESDAY</strong></p>
<p class="medium-text">$4 Burrito, $4.50 Super Burrito</p> </div>
<!-- <div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>MONDAY</strong></p>
<p class="medium-text">Double Punches on Fuel Card</p>
</div>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>WEDNESDAY</strong></p>
<p class="medium-text">$4 Burrito, $4.50 Super Burrito</p>
</div> -->
</div>
<!-- <p class="text-center small-orange-text full-span">See all specials</p> -->
<div class="col-12-across column">
<div class="event-slider">
<h2 class="small-caps-title">Upcoming Events</h2>
<div class="byte-parent-logo-carousel">
<p class="medium-text">There are currently no upcoming events</p>
</div>
</div> <!-- end of <div class="event-slider"> -->
</div>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div> <div class="center-about section-wrapper extended menu-target" id="about" data-mobile="/assets/images/page_information_9_9_ss_mobile_image.jpg" style="background-image: url(/assets/images/bg-about-center.jpg);">
<div class="photo_overlay"></div>
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/center-logo.png" alt="Fuel Cafe Center Street logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">ABOUT</h2>
<bs_editable section="center-st-merch-content" type="html">
<h2 class="medium-caps-title">WELCOME TO THE ORIGINAL FUEL CAFÉ</h2>
<p class="small-white-text">Fuel Café has been serving Riverwest and Milwaukee community since 1993.</p>
<p class="small-white-text">We proudly serve Colectivo Coffee. We specialize in coffee, espresso drinks, and great sandwiches - including Milwaukee favorites "The Cheesy Tomato" & "Buttafuoco". We also offer soups, local bakery, and plenty of vegan and vegetarian food options.</p>
<p class="small-white-text">Come celebrate our 20th year of slow brewing great coffee and slowly racing fast motorcycles!</p>
</bs_editable>
<p class="medium-white-text"><a class="social-media-icon" href="https://www.facebook.com/OriginalFuelCafe/" target="_blank"><i class="fa fa-facebook-official" aria-hidden="true"></i></a> <a class="social-media-icon" href="https://www.instagram.com/theoriginalfuelcafe/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></p>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="center-merch section-wrapper menu-target" id="merch" data-mobile="/assets/images/page_information_12_12_ss_mobile_image.png" style="background-image: url(/assets/images/walker-mugs.png);">
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/center-logo.png" alt="Fuel Cafe Center Street logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">MERCH</h2>
<bs_editable section="center-st-about-content" type="html">
<h2 class="medium-caps-title">GET YOURS AT FUEL CAFE</h2>
</bs_editable>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div> <div class="center-social section-wrapper menu-target" id="social">
<div class="social-container">
<div class="insta-slider">
<div class="insta-photo"><a href="http://instagram.com/p/BflxBWXDwkl" target="_blank" rel="noopener"><img src="/assets/images/28429553_1894317970812741_8908379637877309440_n.jpg" alt="@cyndaquart says COFFEE IS TWO DOLLARS! Come by and get some!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfi5fHmj1Tl" target="_blank" rel="noopener"><img src="/assets/images/28152565_154215648623824_8007924097705050112_n.jpg" alt="Just a sample of our wares on sale at @mamatriedshow this weekend. Check out those new hats! #merch #caffeine #coffee #motofashion"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfg0Ei4j77q" target="_blank" rel="noopener"><img src="/assets/images/28154542_1621932661221485_4218273173096890368_n.jpg" alt="Rev up yer party engines! The @mamatriedshow party starts tonight with the Pre Party at our sister location @fuelcafemilwaukee on Fifth St!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfTuU-0jZbd" target="_blank" rel="noopener"><img src="/assets/images/27580202_153136312059421_1155656625680285696_n.jpg" alt="Tonight! Come on down! #vroomvroom"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfQtZnhD4px" target="_blank" rel="noopener"><img src="/assets/images/27580563_161292724525285_7086932356090560512_n.jpg" alt="Absolute monster of an after party Saturday night @mamatriedshow! @weedeaterofficial @seks.scenes #metallica #heavymetalparkinglot #hotrockin"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfO29GHDPsi" target="_blank" rel="noopener"><img src="/assets/images/28152399_412087242580541_1060886157954383872_n.jpg" alt="We will be ready for you at @mamatriedshow with a tight new tent set up! Many hours of hard work went into this, and we are eternally grateful!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Be_XmLCjz9V" target="_blank" rel="noopener"><img src="/assets/images/27575860_220660681838337_5545255511638671360_n.jpg" alt="Let's party! One week from Saturday!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Be3qtUVDRw3" target="_blank" rel="noopener"><img src="/assets/images/26872721_156480228283122_2124882095569371136_n.jpg" alt="Frozen Snot Ride 2018! March 10th! Frozen Snot Ride 2018! Get stoked and ready! Ride hard from Fuel Center Street to Nomad World Pub to LuLu Cafe & Bar to Frank's Power Plant to Palomino Bar to Fuel Cafe 5th St.!! #motorcycle #motorcyclelife #winter #ridehard"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BeQYEmZjwiW" target="_blank" rel="noopener"><img src="/assets/images/26184488_1834885550142483_2058784279755751424_n.jpg" alt="@mamatriedshow and @flatoutfriday are coming up fast! Make sure to get your tickets! #motorcycles #flattrack #vintage #party"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BeEg6l-jTO7" target="_blank" rel="noopener"><img src="/assets/images/26376693_147591272569047_9141133446179979264_n.jpg" alt="We will keep you warm day and night. Servicing the community for close to 25yrs!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BdngLPkjsKi" target="_blank" rel="noopener"><img src="/assets/images/26156659_1761980997442450_3381538678261153792_n.jpg" alt="Did you know we sell beer, even our own?! Beer is great after a coffee and sandwich (or by itself!). Stop in and grab one!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bdis1ynjQsl" target="_blank" rel="noopener"><img src="/assets/images/26180591_349359585545058_3241449025592885248_n.jpg" alt="Our New Years Resolution: to keep you warm, caffeinated and full all though 2018!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bc8FAKvjSgY" target="_blank" rel="noopener"><img src="/assets/images/25018827_133867963947832_3976262602169778176_n.jpg" alt="Get stoked! In just over two months!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bcu1fjWjTAT" target="_blank" rel="noopener"><img src="/assets/images/25014095_226785361195886_6793825233552801792_n.jpg" alt="Zip Up Hoodies back in stock just in time for the holidays! S-XL come in and grab one and look cool all season long!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BctXwPYDqDw" target="_blank" rel="noopener"><img src="/assets/images/25010417_864779110371727_9216712436659257344_n.jpg" alt="META Magazine Volume 10 in stock! (Very Soon at our 5th St location). META is a high quality publication celebrating motorcycle lifestyle through timeless, art driven, culture based content."></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BcchDTGj0mB" target="_blank" rel="noopener"><img src="/assets/images/25006002_1760589970648955_8603006806001713152_n.jpg" alt="Holiday Gift Ideas! Caffeinate your friends and relatives! Stay warm this season with the best coffee in town!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BbVD3qMDQxe" target="_blank" rel="noopener"><img src="/assets/images/23164284_140479879939963_2956379689536454656_n.jpg" alt="It's a ways off but mark your calendars! #flattrack #flatoutfriday"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BbNYJKgDqLy" target="_blank" rel="noopener"><img src="/assets/images/23279286_1926234477642603_8968174159687319552_n.jpg" alt="SLINGSHOT 2018 Organizers in stock and moving fast! Large (shown) $12+tax, small $6+tax. They make great holiday gifts too! #diy #organization #organizing"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Ba9ly4xDmSp" target="_blank" rel="noopener"><img src="/assets/images/23101761_1515373171871819_3854929977921241088_n.jpg" alt="Support @angelsofdirt and get goods in return! Donate to a good cause! Visit their page for more info."></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BamTNzaDzhS" target="_blank" rel="noopener"><img src="/assets/images/22710606_1440303642722684_344157443120431104_n.jpg" alt="Thanks to Milwaukee Magazine for naming us one of the coziest cafes in milwaukee! Come on in and warm up with us!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BaZT-Szj36o" target="_blank" rel="noopener"><img src="/assets/images/22582167_138364453473257_2640411624313192448_n.jpg" alt="It's BURRITO WEDNESDAY! Come in for some lunch or dinner and get filled up for cheap! #burritos #stayhungry"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BaH--2qjL_k" target="_blank" rel="noopener"><img src="/assets/images/22427546_292445801160230_1449814842679492608_n.jpg" alt="Come celebrate our favorite holiday, Burrito Day! $4 til close! ❤️🌯❤️"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BaE97c_DR1o" target="_blank" rel="noopener"><img src="/assets/images/22344435_1929536247367725_433436202452910080_n.jpg" alt="Tonight!
THE RIDE:
5:00: Staging at @hdmuseum parking lot for the ride
6:00: Ride to @fuelcafemilwaukee
AT FUEL 5TH:
5:00-7:00: Henna Tattoos with @reneelunabebeau
6:30: Meet and Greet with Jay, Scott, and Bubba
7:00: Auction with the evening's MC, everyone’s favorite loudmouth, Mark Martinich
See you tonight!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BaC6d_zjV73" target="_blank" rel="noopener"><img src="/assets/images/22280111_289069308259823_8983444477821583360_n.jpg" alt="Tomorrow! To properly kick off the Angels of Dirt fundraising launch party at @fuelcafemilwaukee, join us for a 6pm ride from the @hdmuseum to Fuel Cafe 5th St.
JP Kainz will lead the pack on Charlotte Kainz’s XR750.
Jay Springsteen, Scott Parker and Bubba Shobert will join him, alongside dozens of racers and riders, to honor Charlotte and support the @angelsofdirt launch. See you tomorrow night!"></a></div>
</div>
<!--
<iframe class="desktop-only" src="//users.instush.com/collage/?cols=5&rows=8&sl=false&user_id=1269566228&username=theoriginalfuelcafe&sid=-1&susername=-1&tag=-1&stype=mine&bg=transparent&space=true&rd=false&grd=false&gpd=6&drp=false&pin=false&t=9999994W3Lr2yebJ-uRT6DjvCOb_Yfvs3geLHsMCllPNg8c_FV1t5k8XMcw79Iqah5SftKUIGOeaMH2F8" allowtransparency="true" frameborder="0" scrolling="no" style="display:block;border:none;overflow:visible;" ></iframe>
<iframe class="mobile-only" src="//users.instush.com/collage/?cols=3&rows=8&sl=false&user_id=1269566228&username=theoriginalfuelcafe&sid=-1&susername=-1&tag=-1&stype=mine&bg=transparent&space=true&rd=false&grd=false&gpd=6&drp=false&pin=false&t=9999994W3Lr2yebJ-uRT6DjvCOb_Yfvs3geLHsMCllPNg8c_FV1t5k8XMcw79Iqah5SftKUIGOeaMH2F8" allowtransparency="true" frameborder="0" scrolling="no" style="display:block;border:none;overflow:visible;" ></iframe>
-->
<!-- <iframe src="//users.instush.com/collage/?cols=7&rows=7&sl=true&user_id=1269566228&username=theoriginalfuelcafe&sid=-1&susername=-1&tag=-1&stype=mine&grd=false&gpd=6&drp=false&bg=transparent&space=true&rd=false&pin=true&t=9999994W3Lr2yebJ-uRT6DjvCOb_Yfvs3geLHsMCllPNg8c_FV1t5k8XMcw79Iqah5SftKUIGOeaMH2F8" allowtransparency="true" frameborder="0" scrolling="no" style="display:block;border:none;overflow:visible;width:100%;height:100%;" ></iframe> -->
</div>
</div> <div class="center-hours">
<div class="content-wrapper">
<div class="center-home-wrapper">
<bs_editable section="center-st-footer" type="html">
<p class="hours-text">MON-FRI 7AM-9PM<br>SAT & SUN 8AM-9PM</p>
</bs_editable>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="fixed-address desktop-only">
<div class="center-address" style="position: fixed; bottom: 1em;">
<div class="center-address-text">
<div class="cafe-footer-text">
<h4 class="cafe-info-title">Center Street Cafe</h4>
<p class="cafe-info-content"><span style="margin-right:15px;">818 E center st</span>414.374.fuel</p>
</div>
</div>
</div>
</div>
<div class="overlay">
</div>
</section><!--.main-content.center-street-->
<div id="split_gutter" class="gutter gutter-horizontal" style="width: 5px;">
<div class="line"></div>
<div class="drawer-menu desktop-only">
<a class="tab-nav slick-slide" onclick="toggle_drawer('We Vend Events!'); return false;">We Vend Events!</a>
<a class="tab-nav slick-slide" onclick="toggle_drawer('Private Event Space at Fuel'); return false;">Private Event Space at Fuel</a>
<!--
<a class="tab-nav" onclick="toggle_drawer(); return false;" data-id="0">CATERING AND SPECIAL EVENTS</a>
<a class="tab-nav" onclick="toggle_drawer(); return false;" data-id="1">Fuel Pop Up Cafe</a>
<a class="tab-nav" onclick="toggle_drawer(); return false;" data-id="2">Two Wheel Thursday</a>
-->
</div>
<div class="menu-wrapper desktop-only">
<div class="location-controller" style="background-image: url(/assets/images/location-controller-border.png);"></div>
<button type="button" class="helper-text">Drag Me!</button>
<ul class="fuel-menu">
<div class="to-top" onclick="goto('.contain-drag', 0); unpop();"></div>
<li>
<a data-url="#menu" class="">Menu</a>
</li>
<li>
<a data-url="#events" class="">Events</a>
</li>
<li>
<a data-url="#about" class="">About</a>
</li>
<li>
<a data-url="#merch" class="">Merch</a>
</li>
<li>
<a data-url="#social" class="">Social</a>
</li>
</ul>
<!-- <img src="/assets/images/Group%206.svg" alt ="menu"/> -->
</div>
</div>
<section class="main-content split split-horizontal walkers-point" id="walkers_point" data-embed="Main contnent area" onclick="selectLocation('right')" style="width: calc(50% - 2.5px);">
<div class="walkers-point-header section-wrapper check-loaded" style="background-image: url('/assets/images/bg-home-walkers-1100.jpg');">
<div class="photo_overlay"></div>
<div class="walker-point-container">
<div class="location-logo to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walker-logo.png" alt="Fuel Cafe Walker's Point logo">
</div>
<div class="secondary-logo to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walkers_point_logo.svg" alt="center">
</div>
<div class="walker-home-wrapper">
<div class="walker-home-content">
<h2 class="small-caps-title">Daily Happy Hour</h2>
<p class="medium-text">3pm - 6pm:</p>
<p class="medium-text">Everyday!!</p>
<p class="medium-text">$3 Taps // $5 Apps</p> <br>
<div class="date-and-time text-center">
<bs_editable section="walkers-point-header" type="html">
<h3 class="small-bold-title">Cafe:</h3>
<h4 class="medium-text">M - F: 7am - 6pm</h4>
<h4 class="medium-text">Sat & Sun: 8am-6pm</h4>
<p> </p>
<h3 class="small-bold-title text-center">Restaurant & Bar:</h3>
<p><span style="letter-spacing: 0px;">8am -10pm all week</span></p>
<p><strong><span style="letter-spacing: 0px;">Breakfast served all day!</span></strong></p>
<h4 class="medium-text"><strong style="letter-spacing: 0px;">Dinner daily:</strong><span style="letter-spacing: 0px;"> 3 -10pm</span></h4>
<h4 class="medium-text"><strong>Brunch Sat & Sun:</strong> 8am - 3pm</h4>
<h4 class="medium-text"> </h4>
</bs_editable>
</div>
</div>
</div>
</div> <!-- end walker point container -->
</div>
<div class="walkers-menu section-wrapper check-loaded" id="walkers_menu" data-mobile="/assets/images/bg-menu-center.jpg" data-image-src="/assets/images/bg-menu-center.jpg">
<div class="photo_overlay"></div>
<img class="walker-plate check-visible visible" style="display: none;" src="/assets/images/hot-plate-walker.png" alt="Hot Plate">
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walker-logo.png" alt="Fuel Cafe Walker's Point logo">
</div>
<div class="center-home-wrapper walkers-point">
<h2 class="content-title mobile-only">MENU</h2>
<bs_editable section="walkers-point-menu-content" type="html">
</bs_editable>
<div class="menu-button-space">
<h3 class="italic-title">Full Menus</h3>
<br>
<div class="newspaper-background">
<a class="newspaper-button" href="/assets/images/buckets_6_menu_pdf.pdf" target="_blank">Weekday Menu</a>
</div>
<div class="newspaper-background">
<a class="newspaper-button" href="/assets/images/buckets_9_menu_pdf.pdf" target="_blank">Brunch</a>
</div>
<div class="newspaper-background">
<a class="newspaper-button" href="/assets/images/buckets_11_menu_pdf.pdf" target="_blank">Cafe/Bar Menu</a>
</div> <!-- <div class="newspaper-background">
<a href="#" class="newspaper-button">Cafe</a>
</div>
<div class="newspaper-background">
<a href="#" class="newspaper-button">Dinner</a>
</div>
<div class="newspaper-background">
<a href="#" class="newspaper-button">Drinks</a>
</div> -->
</div>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="walkers-events section-wrapper extended" id="walkers_events" data-mobile="/assets/images/page_information_8_8_ss_mobile_image.jpg" style="background-image: url(/assets/images/bg-events-walkers-1100.jpg);">
<div class="photo_overlay"></div>
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walker-logo.png" alt="Fuel Cafe Walker's Point logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">EVENTS</h2>
<div class="text-center menu-button-space">
<h2 class="small-caps-title">Weekly Specials</h2>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>Daily Happy Hour</strong></p>
<p class="medium-text">3pm - 6pm:</p>
<p class="medium-text">Everyday!!</p>
<p class="medium-text">$3 Taps // $5 Apps</p> </div>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>Fish Fry Fridays</strong></p>
<p class="medium-text">$9 hand battered cod fish, fries, coleslaw, house tartar sauce, lemons, and french bread.</p> </div>
<!-- <div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>Daily Happy Hour</strong></p>
<p class="medium-text">3pm - 6pm</p>
<p class="medium-text">$1 off all taps.</p>
<p class="medium-text">1/2 off all tap beers, Coffee Inspired Cocktails, New Standards Cocktails</p>
<p class="medium-text">$5 all Snacks & Starters</p>
</div>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>Two Wheel Thursday</strong></p>
<p class="medium-text">$6 Smashburger basket with hand-cut fries, house pickle.</p><p class="medium-text">$7 Cheeseburger </p>
</div>
<div class="weekly-special-block col-6-across">
<p class="medium-text"><strong>Fish Fry Fridays</strong></p>
<p class="medium-text">$8 hand battered cod fish, fries, coleslaw, house tartar sauce, lemons, and french bread.</p>
</div> -->
</div>
<div class="col-12-across column">
<div class="event-slider">
<h2 class="small-caps-title">Upcoming Events</h2>
<div class="byte-parent-logo-carousel">
<p class="medium-text">There are currently no upcoming events</p>
</div>
</div> <!-- end of <div class="event-slider"> -->
</div>
</div> <!-- <div class="center-home-wrapper"> -->
</div>
</div>
<div class="walkers-about section-wrapper extended" id="walksers_about" data-mobile="/assets/images/page_information_11_11_ss_mobile_image.jpg" style="background-image: url(/assets/images/bg-about-walkers-1100.jpg);">
<div class="photo_overlay"></div>
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walker-logo.png" alt="Fuel Cafe Walker's Point logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">ABOUT</h2>
<bs_editable section="walkers-about-content" type="html">
<h2 class="medium-caps-title">WELCOME TO THE (SECOND) ORIGINAL FUEL CAFÉ</h2>
<p class="small-white-text">Our vision of Fuel Cafe 24 years later! Our concept is decidedly riffing off of Fuel’s motorcycle roots, but that is just a sliver of our new vision. Fuel Cafe 5th Street is part counter service cafe and part full service neighborhood restaurant and bar.</p>
<p class="small-white-text">In the Cafe, you can expect the same great coffee and espresso offerings as Center Street, but with lots of great additions. We feature products from our friends in Milwaukee including Colectivo, Stone Creek, Valentine and Anodyne, along with some great new drinks including Banana Milk Coffee and Rishi Tea on Tap.</p>
<p class="small-white-text">The bar and restaurant represent the way we want to hang out today. We offer 15 local beers on tap, coffee inspired cocktails, and a scratch menu with our take on modern American comfort food. You can expect great sandwiches, scratch soups, and delicious breakfast items offered daily. Our kitchen is open from 8 am to 10 pm daily.</p>
<p class="small-white-text">And then there’s the motorcycle roots.</p>
<p class="small-white-text">Watch for new rides, Two Wheel Thursdays specials, and yes, we are scheming new ideas for a street festival.</p>
<p class="small-white-text">Yes, it’s not the old Fuel, but we hope you will enjoy our vision as much as we have enjoyed reinventing our dream of the original.</p>
</bs_editable>
<p class="medium-white-text"><a class="social-media-icon" href="https://www.facebook.com/Fuel-Cafe-5th-St-510270792476740/" target="_blank"><i class="fa fa-facebook-official" aria-hidden="true"></i></a> <a class="social-media-icon" href="https://www.instagram.com/fuelcafemilwaukee/" target="_blank"><i class="fa fa-instagram" aria-hidden="true"></i></a></p>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="walkers-merch section-wrapper" id="walksers_merch" data-mobile="/assets/images/walker-merch-front.png" style="background-image: url(/assets/images/walker-merch-front.png);">
<div class="content-wrapper">
<div class="location-logo mobile-only to-top" onclick="goto('.contain-drag', 0); unpop();">
<img src="/assets/images/walker-logo.png" alt="Fuel Cafe Walker's Point logo">
</div>
<div class="center-home-wrapper">
<h2 class="content-title mobile-only">MERCH</h2>
<bs_editable section="walkers-merch-content" type="html">
<h2 class="medium-caps-title">GET YOURS AT FUEL CAFE</h2>
</bs_editable>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div> <div class="walkers-social section-wrapper" id="walksers_social">
<div class="social-container">
<div class="insta-slider">
<div class="insta-photo"><a href="http://instagram.com/p/BfmHz2Qnq_z" target="_blank" rel="noopener"><img src="/assets/images/28156670_426202761136047_4312995253721235456_n.jpg" alt="We're getting ready for our Screws, Dews, Brews and Tattoos party! Happy @mamatriedshow weekend!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfl9HSknz_G" target="_blank" rel="noopener"><img src="/assets/images/28156322_192274034707254_1129130250530193408_n.jpg" alt="TONIGHT⚡️Celebrate @mamatriedshow with $5 @tullamoredew and a @pabstblueribbon brew, tattoos from @walkerspointtattooco and music from DJ @whybproblems! Fun starts at 6pm!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BflyyhQn-0J" target="_blank" rel="noopener"><img src="/assets/images/28430936_581962595502345_370550373636636672_n.jpg" alt="We've got some new merch in by our café (and at our booth at @mamatriedshow) ⚡️"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BflcOuUHiJX" target="_blank" rel="noopener"><img src="/assets/images/28151541_160204208113018_92489144307023872_n.jpg" alt="ITS HERE ⚡️ We've got shuttles running to and from @mamatriedshow until 10:15pm tonight! ⚡️ See ya tonight at our Screws, Brews, Dews and Tattoos party!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfj77KCHhSS" target="_blank" rel="noopener"><img src="/assets/images/27892834_405040679940687_4737089700441882624_n.jpg" alt="@flatoutfriday is in full swing! ⚡️"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfjZ2IknsUW" target="_blank" rel="noopener"><img src="/assets/images/28151903_1658767994188381_8085831583229018112_n.jpg" alt="Fuel up with our killer Mac N Cheese ⚡️Our kitchen is open 8a- 10p every day"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfjJAa4nEzp" target="_blank" rel="noopener"><img src="/assets/images/28430936_581962595502345_370550373636636672_n.jpg" alt="WAY TO KICK OFF @mamatriedshow WEEKEND RIGHT, MILWAUKEE ⚡️ It's only just begun, we'll see you tonight at @flatoutfriday ⚡️ @jeremywitek on bike ⚡️ 📸: @candlemiss"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfi28oDnvFW" target="_blank" rel="noopener"><img src="/assets/images/28427474_194814594608934_4184869975485317120_n.jpg" alt="The time has finally come! ⚡️ We're your hub to all things @mamatriedshow this weekend ⚡️ Shuttles running Sat. and Sun. ⚡️ Screw, Dews, Brews and Tattoo Party Saturday ⚡️"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfhnvwLnRQW" target="_blank" rel="noopener"><img src="/assets/images/28152845_543849955987700_8249105185893253120_n.jpg" alt="Amelinda is spinning ⚡️ come by for tunes and good times to kick off @mamatriedshow"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfhTXkInn4J" target="_blank" rel="noopener"><img src="/assets/images/27890830_430136427407294_6842213310067113984_n.jpg" alt="KICK OFF IS STARTING NOW! @rizoma_official Behind The Build will be starting soon!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfg-T-lHsQx" target="_blank" rel="noopener"><img src="/assets/images/27880452_140176850131967_2364128846451572736_n.jpg" alt="Before the official pre-party begins, @rizoma_official and @mamatriedshow are presenting Behind The Build! The event is free and open to the public! Panel discussion starts at 7pm!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfgNOxZnBwW" target="_blank" rel="noopener"><img src="/assets/images/28150926_925541980939183_9210394681500762112_n.jpg" alt="TONIGHTS THE NIGHT // 6PM // OFFICIAL @mamatriedshow PRE-PARTY WITH @solemnoathbeer @milwaukeerivets @jimbeamofficial @rizoma_official @badger_liquor // Garage Rock spins by Amelinda // Behind the Build Panel at 5P // DONT MISS IT ⚡️POSTER ART BY @jourdon"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfe4Ss3nFUc" target="_blank" rel="noopener"><img src="/assets/images/27879149_489274758134422_1276932698094436352_n.jpg" alt="Don't forget to hitch a ride with us this weekend ⚡️ There'll be shuttles running to and from @theraveusa @mamatriedshow Saturday and Sunday! ⚡️ Be safe, be smart and avoid the hassle! ⚡️ Shuttles will also be stopping at @hdmuseum"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/Bfdt1DhnakH" target="_blank" rel="noopener"><img src="/assets/images/28151855_1805530073074926_6764005988581244928_n.jpg" alt="We're very excited to have @rizoma_official present Behind the Build panel with @mamatriedshow this Thursday at 5pm ⚡️ Kick off the weekend with @analogmotorcycles @noisecycles @craigrodsmith and @majikmikesdesigns!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfbsJQgnqcg" target="_blank" rel="noopener"><img src="/assets/images/27891405_896758070505916_4270421300205322240_n.jpg" alt="Wheelie good times ahead ⚡️ We'll be your go-to spot for @mamatriedshow this weekend! ⚡️ Pre and Post Parties Thursday and Saturday, and everything in-between"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfbIYWzHxpX" target="_blank" rel="noopener"><img src="/assets/images/27879996_1565936113523908_5181820034795700224_n.jpg" alt="A little morning pick-me-up on this rainy day 🌧 Café open until 8pm ☔️
.
.
📸: @emilykdundon"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfYm9jwnE5S" target="_blank" rel="noopener"><img src="/assets/images/27581615_1979769225623975_6894354406314082304_n.jpg" alt="SAT. FEB 24 IS COMING UP ⚡️Celebrate @mamatriedshow with $5 @tullamoredew and a @pabstblueribbon brew, tattoos from @walkerspointtattooco and music from DJ @whybproblems! Fun starts at 6pm!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfV6_axHmZW" target="_blank" rel="noopener"><img src="/assets/images/27878137_153058948736029_3585360556065816576_n.jpg" alt="Have you heard? We've got the Impossible Burger for your meat alternative! 🍔 Try this meat-tasting patty now, vegan option available as well ~ available all day, every day!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfUKFv6n2dY" target="_blank" rel="noopener"><img src="/assets/images/27578896_1482359018541318_4733169056725598208_n.jpg" alt="We're getting ready for @mamatriedshow weekend! ⚡️ Thursday is our Pre-Party to kick off the festivities and Saturday is our Screws, Brews, Dews and Tattoos Party ⚡️ Our restaurant is open 8-10, cafe 6:30-8, and bar 8a - close ⚡️ We can't wait to see ya!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfRGSVfH3aw" target="_blank" rel="noopener"><img src="/assets/images/27581764_1876302002675936_3682785944940838912_n.jpg" alt="More rad new neighbors! ⚡️ @formfinegoods is having the Grand (re)Opening tomorrow at their new location at 700 S 5th! Stop by from 12 - 6 and check out their lovely goods!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfO8fPyHjlR" target="_blank" rel="noopener"><img src="/assets/images/27578472_1945583055758260_7490126113264369664_n.jpg" alt="We're stoked to have a new neighbor 🍻 @sprecherbrewery has a tap room open right on the block! Be sure to check them out! Congrats and we're ecstatic to have you in the neighborhood!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfOR4RiHCyZ" target="_blank" rel="noopener"><img src="/assets/images/27879386_1595262407225209_5487286634397302784_n.jpg" alt="ONE WEEK AWAY ⚡️ Kick off for @mamatriedshow is next Thursday! @solemnoathbeer, @jimbeamofficial, Milwaukee Rivets and @rizoma_official are helping us start the weekend right! Check out @mamatriedshow for more day-to-day activities!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfJjBk9ntIx" target="_blank" rel="noopener"><img src="/assets/images/27578896_1482359018541318_4733169056725598208_n.jpg" alt="Our big sis @theoriginalfuelcafe is hosting this Launch Party for this @milwaukeeharley custom built Hooligan Harley Sportster for Dave and the Fuel race team @teamkilkenny35 @jj_rides ⚡️ @lakefrontbrewery will be on site with brews and there'll be good times to be had! THIS SATURDAY, SEE YA THERE!"></a></div>
<div class="insta-photo"><a href="http://instagram.com/p/BfJL68xnYD-" target="_blank" rel="noopener"><img src="/assets/images/28153699_186413748794920_2451739088298967040_n.jpg" alt="The snow is packed high, but we've got whatever you need to stay warm 🍺☕️
.
📸: @john_sobczak"></a></div>
</div>
</div>
</div> <div class="walkers-hours">
<div class="content-wrapper">
<div class="center-home-wrapper">
<bs_editable section="walkers-point-footer" type="html">
<p class="hours-text">Cafe: M-F 7a - 6p // Sa-Su 8a - 6p<br>
Restaurant & Bar: M-F 8a - 10p<br>
<br>
Sat - Sun Brunch 8a - 3p<br>
<br>
Private Event/Meeting Space Available.</p>
<p class="hours-text">Contact: Fuelcafe5thstreet@gmail.com</p>
</bs_editable>
</div> <!-- end of center home wrapper -->
</div> <!-- end of center menu content -->
</div>
<div class="fixed-address desktop-only">
<div class="walker-address" style="position: fixed; bottom: 1em;">
<!-- // walkers point octagon: -->
<div class="walker-address-text">
<div class="cafe-footer-text">
<h4 class="cafe-info-title">Walker's Point Cafe</h4>
<p class="cafe-info-content"><span style="margin-right:15px;">414-847-9580</span>630 s 5th st</p>
</div>
</div>
</div>
</div>
<div class="overlay">
</div>
</section><!--.main-content.walkers-point-->
</div><!--.body-wrapper-->
<!-- end proof of concept -->
<section class="content-drawer">
<div class="drawer-border-bottom"></div>
<div class="drawer-border-left"></div>
<div class="drawer-border-right"></div>
<div class="close-drawer" onclick="close_drawer(); return false;"><i class="fa fa-times" aria-hidden="true"></i><p> Close</p></div>
<div class="drawer-wrapper">
<div class="drawer-tabs">
<div class="tab-content grid-w-gutters clearfix highlighted" data-id="0">
<div class="tab-wrapper">
<div class="column col-6-across s-twelve">
<h3 class="content-title">Use our space for your party, gathering or meeting</h3>
<bs_editable section="form_start_message" type="html">
<p>Interested in Fuel at your private or company event, or as a food tent for your street festival or party? Fill out this form for our catering manager to get back to you!(*) = required</p>
</bs_editable>
<form onsubmit="submit_form('/contact/offsite_contact_form.php','offsite_event'); return false;" method="post" id="offsite_event" name="offsite_event">
<fieldset>
<div class="field-row" style="clear: both;"><!-- default field-row -->
<div class="column col-6-across s-twelve field-container" id="field_full_name" style="">
<label for="full_name" style="">Your Name <span class="required-star">*</span></label>
<input class="textboxes required_field" type="text" name="full_name" id="full_name" style="" value="" required="">
</div> <!-- close field container -->
<div class="column col-6-across s-twelve field-container" id="field_email" style="">
<label for="email" style="">Your Email <span class="required-star">*</span></label>
<input class=" required_field" type="email" name="email" id="email" style="" value="" required="">
</div> <!-- close field container -->
<br style="clear: both">
</div>
<div class="field-row">
<div class="column col-6-across s-twelve field-container" id="field_form_date" style="">
<label for="form_date" style="">Date of Event <span class="required-star">*</span></label>
<input class="textboxes required_field" type="text" name="form_date" id="form_date" style="" placeholder="mm/dd/yyyy" value="" pattern="\d{1,2}/\d{1,2}/\d{4}" required="">
</div> <!-- close field container -->
<div class="column col-6-across s-twelve field-container" id="field_event_type" style="">
<label for="event_type" style="">Type of Event </label>
<input class="textboxes " type="text" name="event_type" id="event_type" style="" value="">
</div> <!-- close field container -->
<br style="clear: both">
</div>
<div class="field-row" style="display: none;">
</div>
</fieldset>
<input type="hidden" name="form_check">
<input class="submitbutton " type="submit" value="send word!" style="display: block;">
</form>
<script src="/assets/js/jquery.min.js"></script>
<script>
$( document ).ready(function() {
switch_form_fields ();
required_checkbox();
hide_empty_rows ();
});
function required_checkbox() {
if ($('input[type="checkbox"][required]').length > 0) {
//this add an event listener to all required checkbox fields
$('input[type="checkbox"][required]').on('change', function() {
checked_name = $(this).attr('name');
//this tells us whether the checkbox is checked or not
if ($(this).is(':checked')) {
$('input[name="'+checked_name+'"]').prop('required', false);
$(this).prop('required', true);
$(this).prop('checked', true);
$(this).attr('checked', 'checked');
} else {
$(this).prop('checked', false);
$(this).removeAttr('checked');
}
//this lets us add the required property back in if all checkboxes are now unchecked
if ($('input[name="'+checked_name+'"][checked]').length == 0) {
$('input[name="'+checked_name+'"]').prop('required', true);
}
});
}
}
function hide_empty_rows () {
// console.log('hide empty rows');
$('.field-row').each( function (i, val) {
// console.log($(val));
var count_empty = $(val).children().filter(function() {
return $(this).css('display') === 'block';
}).length;
// console.log('count: '+count_empty);
if (count_empty >= 1 ) {
$(val).show();
} else {
$(val).hide();
}
});
}
function switch_form_fields () {
if ($('form').length > 0) {
// console.log('>>switch_form_fields');
// if a value is selected (radio, checkbox, select
var conditionalValue = '';
var $conditionalFieldTypes = $('input[type="radio"],input[type="checkbox"],select,select option');
var $formFields = $('form .field-container');
$conditionalFieldTypes.on('change', function() { // when a radio is clicked
// console.log('>>clicked something');
conditionalValue = $(this).val();
$formFields.each(function() { // iterate through the form fields
var $formField = $(this); // the current form field object
$(this).find($conditionalFieldTypes).each(function() { // find the radio, checkbox or select
//$('input').prop('required',true); // use this for the required conditional action
conditionalValue = $(this).val(); // set the conditionalValue to the value of the item
// console.log($(this).val());
var $conditionalFields = $('form').find("[data-condition='"+conditionalValue+"']");
// if this property is checked, OR if this is a select box and the selected
if ($(this).prop('checked') || $(this).is(':selected')) {
$conditionalFields.each(function() { // loop through each conditional field
var $conditionalField = $(this);
//console.log($conditionalField);
if ($conditionalField.data("action") == 'show') {
$conditionalField.show().css('height', 'auto');
} else if ($conditionalField.data("action") == 'hide') {
$conditionalField.hide().css('height', 0);
} else if ($conditionalField.data("action") == 'disable') {
// console.log($conditionalField.find($conditionalFieldTypes));
$conditionalField.find('input,textarea').prop('disabled',true);
} else if ($conditionalField.data("action") == 'require') {
$conditionalField.find('label').css({'color':'red'});
$conditionalField.find('input,textarea').prop('required',true);
}
});
} else {
$conditionalFields.each(function() {
var $conditionalField = $(this);
//console.log($conditionalField);
if ($conditionalField.data("action") == 'show') {
$conditionalField.hide().css('height', 0);
} else if ($conditionalField.data("action") == 'hide') {
$conditionalField.show().css('height', 'auto');
} else if ($conditionalField.data("action") == 'disable') {
//console.log($conditionalField.find($conditionalFieldTypes));
$conditionalField.find('input,textarea').prop('disabled',false);
} else if ($conditionalField.data("action") == 'require') {
$conditionalField.find('label').css({'color':'black'});
$conditionalField.find('input,textarea').prop('required',false);
}
});
}
});
});
hide_empty_rows ();
});
}// end if ($('#lets_talk_form').length > 0)
}
//File upload with ajax
function upload_form_files(form_url, field_name,form_name) {
//Check if there is an upload limit
var limit_reached = false;
var file_limit = $('#'+form_name+' input[type="file"][name="'+field_name+'"]').attr('data-max-limit');
var file_limit_count = $('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-file-count');
if (file_limit <= file_limit_count) {
limit_reached = true;
}
// console.log(':::upload_form_files('+field_name+', '+form_name+')');
//Prevent for submission until finished processing upload
$('#'+form_name+' input[type="submit"]').prop('disabled', true);
//Check if file value is not empty
if ($('#'+form_name+' input[type="file"][name="'+field_name+'"]').length > 0 && $('#'+form_name+' input[type="file"][name="'+field_name+'"]').val() != '' && limit_reached != true) {
// console.log('>>>file is not empty');
//Create file icon with selected file name
var icon_count = $('#'+form_name+' input[type="file"][name="'+field_name+'"]').attr('data-icon-count');
var file_label = $('#'+form_name+' input[type="file"][name="'+field_name+'"]')[0].files[0].name;
var file_icon = "<div class='file-icon loading' id='"+ field_name +"_icon' data-id='"+ icon_count +"'><span>"+file_label+"</span><div class='progress-bar'></div></div>";
//Store values from hidden input
var uploaded_files = '';
uploaded_files = $('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val();
// console.log('>>current files: '+uploaded_files);
//create variable to store accepted file extensions
var accepted_extensions_string = $('#'+form_name+' input[type="file"][name="'+field_name+'"]').attr('accept');
var accepted_extensions = accepted_extensions_string.split(", ");
// console.log('>>>accepted_extensions: ');
// console.log(accepted_extensions);
//Append file icon after input field
$('#'+form_name+' input[type="file"][name="'+field_name+'"]').after(file_icon);
//Create new FormData
var form_data = new FormData();
//Add file upload to FormData
form_data.append('do', 'upload_file');
form_data.append('file', $("#"+form_name+' input[type=file][name="'+field_name+'"]')[0].files[0]);
//Add file type whitelist
for (var i = 0; i < accepted_extensions.length; i++) {
form_data.append('whitelist[]', accepted_extensions[i]);
// formData.append('array_php_side[]', accepted_extensions[i]);
}
form_data.append('cs', form_url);
//Make ajax call to process file and upload
$.ajax({
url: "/assets/common_forms_hybrid.php", // point to server-side PHP script
xhr: function (evt) {
//Progress bar xhr
var xhr = new window.XMLHttpRequest();
xhr.upload.addEventListener("progress", function (evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
// console.log(percentComplete);
$('.progress-bar').css({
width: percentComplete * 100 + '%'
});
}
}, false);
xhr.addEventListener("progress", function (evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
// console.log(percentComplete);
$('.progress-bar').css({
width: percentComplete * 100 + '%'
});
}
}, false);
return xhr;
},
dataType: 'text', // what to expect back from the PHP script, if anything
cache: false,
contentType: false,
processData: false,
data: form_data,
type: 'post',
success: function(evt){
//Parse text repsonse into json
var success_json = $.parseJSON(evt);
//console.log('AJAX success: ');
//console.log(success_json);
if (success_json.success_status != 'error' && success_json.file_path) {
// console.log('file upload success:');
// console.log('file path? '+success_json.file_path);
// console.log('file id? '+success_json.file_id);
//check if file uploaded successfully
if (success_json.file_path == 'true') {
// console.log('file path == true');
//check if any files have already been stored in the hidden field
if (uploaded_files != '') {
// console.log('>>1+ file');
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val(uploaded_files+'|||'+success_json.file_id);
} else {
// console.log('>>first file');
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val(success_json.file_id);
}
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-add-file', true);
// console.log('new files: '+$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val());
//remove value from form field
$('#'+form_name+' input[type="file"][name="'+field_name+'"]').val('');
$('#'+field_name+'_icon[data-id="'+ icon_count +'"]').removeClass('loading');
$('#'+field_name+'_icon[data-id="'+ icon_count +'"]').attr('data-file-id',success_json.file_id);
$('#'+field_name+'_icon[data-id="'+ icon_count +'"] span').after(" <span class='delete-file fa-stack' onclick='delete_form_files(\""+field_name+"\", \""+ success_json.file_id +"\", "+ icon_count +"); return false;'><i class='fa fa-circle fa-stack-2x'></i><i class='fa fa-times fa-stack-1x fa-inverse'></i></span>");
//update file count
icon_count++;
$('#'+form_name+' input[type="file"][name="'+field_name+'"]').attr('data-icon-count', icon_count);
file_limit_count++;
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-file-count', file_limit_count);
//remove progress bar
$('#'+form_name+' .progress-bar').addClass('complete');
//enable submit button
$('#'+form_name+' input[type="submit"]').prop('disabled', false);
}
} else {
//check for ajax success message
if (success_json.success_message) {
alert(success_json.success_message+', please check file and try again.');
// console.log(success_json.success_message);
//clear file input value and remove file icon
$('#'+form_name+' input[type="file"][name="'+field_name+'"]').val('');
$('#'+field_name+'_icon[data-id="'+ icon_count +'"]').remove();
}
//enable submit button
$('#'+form_name+' input[type="submit"]').prop('disabled', false);
}
},
error: function (evt) {
alert('File failed to upload, please check file and try again.');
// console.log ("Ajax Error: "+evt.responseText);
// console.log(evt);
//enable submit button
$('#'+form_name+' input[type="submit"]').prop('disabled', false);
}
});
} else {
if (limit_reached == true) {
alert('file limit reached');
}
// submit_form(form_url, form_name, false);
// console.log('error: no file inputs');
// console.log($('#'+form_name+' input[type="file"][name="'+field_name+'"]').val());
//enable submit button
$('#'+form_name+' input[type="submit"]').prop('disabled', false);
}
}
//remove file from form submission
function delete_form_files(field_name, file_id, icon_id) {
//check uploaded files field
var uploaded_files = $('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val();
var new_file_list = '';
var new_file_count = 0;
//cycle through list of file ids and add to new list if it isn't being deleted
if (uploaded_files != '') {
$.each(uploaded_files.split('|||') , function(i, val) {
if (val != file_id && new_file_count < 1) {
new_file_list += val;
new_file_count++;
} else if (val != file_id) {
new_file_list += '|||'+val;
new_file_count++;
}
});
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val(new_file_list);
}
//update max file count
var file_limit_count = $('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-file-count');
file_limit_count--;
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-file-count', file_limit_count);
//If there are no files set attr to false (this tells submit_form that there are not files uploaded)
if ($('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').val() == '') {
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-add-file', false);
} else {
$('#'+form_name+' input[type="hidden"][name="'+field_name+'_files"]').attr('data-add-file', true);
}
//clear upload input field
$('#'+form_name+' input[type="file"][name="'+field_name+'"]').val('');
// console.log('>>>delete_form_files('+file_id+')');
$('#'+form_name+' .file-icon[data-id="'+ icon_id +'"]').remove();
}
//submit form with ajax
function submit_form(form_url, form_name) {
console.log('>>> submit_form(' + form_url +', '+form_name+')');
//enable submit button
$('#'+form_name+' input[type="submit"]').prop('disabled', true);
console.log('submit button pressed');
var add_file = "false";
var file_list = '';
//check file inputs to see if any files are being attached with the form
if ($('#'+form_name+' input[data-type="file"]').length > 0) {
$('#'+form_name+' input[data-type="file"]').each( function (i, val) {
if ($(val).attr('data-add-file') == "true") {
// console.log('data-add-file: '+ $(val).attr('data-add-file'));
add_file = "true";
// console.log('add_file: '+add_file);
}
});
}
var ready_to_send_ajax = true;
//grecaptcha check
// grecaptcha.render('#g-recaptcha-'+form_name, {
// sitekey: '6LdlpP8SAAAAAHO_yF1DKczYzKgp87i3sXavJlXn',
// callback: function(response) {
// console.log(response);
// }
// });
//console.log(grecaptcha.getResponse('#g-recaptcha-'+form_name));
//check if required fields are filled out
var error_field = '';
$('#'+form_name+' .required_field').each( function (i,v) {
if ($(v).val() != '') {
var elem_id = $(v).attr('id');
$("label[for='"+elem_id+"']").removeClass('error');
$("label[for='"+elem_id+"']").css('color', '#222');
// console.log("required not empty");
}
if ($(v).val() == '') {
// console.log("required is empty");