-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·741 lines (656 loc) · 41.4 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
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<title>Smokin Slice of Mojo</title>
<!-- Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800,900' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,400italic,600italic,700italic' rel='stylesheet' type='text/css'>
<!-- Global CSS -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<!-- Plugins CSS -->
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/plugins/vegas/dist/vegas.min.css">
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/styles.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll">
<!-- ******HEADER****** -->
<header id="header" class="header navbar-fixed-top">
<div class="container ">
<nav class="main-nav" role="navigation">
<div class="navbar-header text-center">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-collapse">
<span class="toggle-title">Menu</span>
<span class="icon-bar-wrapper">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</span><!--//icon-bar-wrapper-->
</button><!--//nav-toggle-->
</div><!--//navbar-header-->
<div id="navbar-collapse" class="navbar-collapse collapse text-center">
<ul class="nav navbar-nav center-block">
<li class="nav-item"><a class="scrollto" href="#promo">Home</a></li>
<li class="nav-item"><a class="scrollto" href="#gigs">Gigs</a></li>
<li class="nav-item"><a class="scrollto" href="#music">Music</a></li>
<li class="nav-item"><a class="scrollto" href="#about">About</a></li>
<li class="nav-item"><a class="scrollto" href="#contact">Contact</a></li>
</ul><!--//nav-->
</div><!--//navabr-collapse-->
</nav><!--//main-nav-->
</div><!--//container-->
</header><!--//header-->
<!-- ******Promo Section****** -->
<section id="promo" class="promo-section section">
<div class="container text-center promo-content">
<div class="upper-wrapper">
<!-- h1 class="logo-holder"></h1 -->
<h2 class="headline">The Smokin Slice of Mojo</h2>
<div class="tagline">Playing Your Favorite Classic Soul, Motown, R&B, and Rock and Roll</div>
</div>
</div><!--//container-->
<!--
<div class="updates-block">
</div><!--//carousel-updates-->
</div><!--//container-->
</div><!--//updates-block-->
-->
</section><!--//promo-section-->
<!-- ******Upcoming Gigs Section****** -->
<section id="gigs" class="gigs-section section">
<div class="container">
<h2 class="section-title text-center">Upcoming Gigs</h2>
<div class="gigs-container">
<div class="item">
<div class="date-label">
<div class="number">20</div>
<div class="month">JAN</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Half Moon Bay Brewing Company, Half Moon Bay CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/ThJrmyhHd992">390 Capistrano Rd, Half Moon Bay, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>5:00pm-8:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<!-- ******Previous Gigs Section****** -->
<h2 class="section-title text-center">Previous Gigs</h2>
</div><!--//gigs-container-->
<div class="previous-gigs-container">
<div class="item">
<div class="date-label">
<div class="number">14</div>
<div class="month">OCT</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Save the Music Festival!, Belmont CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/aajqKR">Twin Pines Park, Belmont, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>11:00am-1:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">26</div>
<div class="month">AUG</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Devil's Canyon Brewery, San Carlos CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/RVDJMw">Devil's Canyon Brewing Company, San Carlos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>3:00pm-5:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">25</div>
<div class="month">AUG</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Half Moon Bay Brewing Company, Half Moon Bay CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/ThJrmyhHd992">390 Capistrano Rd, Half Moon Bay, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>8:00pm-11:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">8</div>
<div class="month">SEP</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">GoldRush Eatery, Sunnyvale CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/A7bhbpxGHW82">Wolfe Rd, Sunnyvale, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>6:00pm-9:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">15</div>
<div class="month">SEP</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">St.Robert's Festival, San Bruno CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/oTDw1DLnHEr">St. Robert's Chuch, San Bruno, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>8:00pm-10:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">29</div>
<div class="month">JUN</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">St James Gate, Belmont, CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/GaeoAad6BKT2">St James Gate, Belmont, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>10:00pm-???, Friday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">1</div>
<div class="month">JUL</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">San Carlos Farmer's Market, San Carlos CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/maps/jLHqngjzooC2">Laurel St., San Carlos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>12:00pm-2:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">24</div>
<div class="month">JUN</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Twin Pines Park, Belmont, CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/aajqKR">Twin Pines Park, Belmont, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>1-4:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">28</div>
<div class="month">APR</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Mount Carmel Festival, Redwood City, CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/SvkBhz">Mount Carmel, Redwood City, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>4-7:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">21</div>
<div class="month">APR</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Devil's Canyon Brewery, San Carlos</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/RVDJMw">Devil's Canyon Brewing Company, San Carlos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>6-9:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">03</div>
<div class="month">MAR</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">The Cats, Los Gatos</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/EwsRaB">The Cats, Santa Cruz Highway, Los Gatos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>8-11:00pm, Saturday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">27</div>
<div class="month">DEC</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">The Cats, Los Gatos</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="https://goo.gl/EwsRaB">The Cats, Santa Cruz Highway, Los Gatos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>7-10:00pm, Wednesday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">18</div>
<div class="month">JUNE</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Twin Pines Park, Belmont CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="#">Belmont, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>1:00pm, Sunday
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">10</div>
<div class="month">JUNE</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Marvin's Gardens, Belmont CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="#">Belmont, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>4:00pm, Sat
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
<div class="item">
<div class="date-label">
<div class="number">2</div>
<div class="month">JUNE</div>
</div><!--//date-label-->
<div class="gig-info">
<div class="info-content">
<h3 class="gig-title">Devil's Canyon Brewery, San Carlos CA</h3>
<div class="meta">
<ul class="meta-list list-inline">
<li class="location">
<i class="fa fa-map-marker"></i><a href="#">San Carlos, CA</a>
</li>
<li class="time">
<i class="fa fa-clock-o"></i>7:00pm, Fri
</li>
</ul>
</div><!--//meta-->
</div><!--//info-content-->
</div><!--//gig-info-->
</div><!--//item-->
</div><!--//previous-gigs-container-->
<div class="gigs-contact text-center">
<h4 class="title">Want to book a private gig?</h4>
<p class="intro center-block">We play timeless, classic motown, soul, R&B and rock songs from Stevie Wonder, Wilson Picket, Otis Reading, Joe Cocker, Sam and Dave, James Brown, Van Morrison, Al Green and others. Good time songs that are guaranteed to get everyone dancing</p>
<a class="btn btn-ghost-primary scrollto" href="#contact">Get in touch now</a>
</div><!--//gigs-->
</div><!--//container-->
</section><!--//gigs-section-->
<section id="music" class="music-section section text-center">
<div class="container">
<h2 class="section-title">Music</h2>
<div class="sc-block center-block">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/G8WC77Od_iI?rel=0" allowfullscreen></iframe>
</div>
<br>
<br>
<br>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/13S1uB_LWmg?rel=0" allowfullscreen></iframe>
</div>
<br>
<br>
<br>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/EZOYzPMjko8?rel=0" allowfullscreen></iframe>
</div>
</div><!--//sc-block-->
<section id="about" class="about-section section text-center">
<div class="container">
<h2 class="section-title">About</h2>
<div class="section-intro center-block">Meet the members of the Smokin Slice of Mojo</div>
<div class="members-block">
<div class="row">
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/Jerome2.png" alt="">
</div><!--//member-profile-->
<div class="member-label">Vocals</div>
<h3 class="member-name">
Jerome Harris
</h3>
<div class="member-desc">
I have been singing all my life. When I was a young child, in the early 60s, my grandmother noticed I had the ability to sing songs note for note. In the early 70s, I began singing gospel at our church in San Francisco. Then I started an a cappella group, singing in the hallways of my high school. After high school, I enlisted in the US Navy and while on the USS Constellation I started another singing group called 2+2 Revue. We performed throughout the Western Pacific, including Japan, Hawaii, and the Philippines.
When I returned home, I sang for Bigcat Productions, in Richmond, California, as a solo act. I did that for a while, but the music genre was changing, and in the late 80s, I decided to return back to what I knew and loved, which was singing gospel music. I then joined This Music Matters Ministries as a lead and backup singer.
I have been in many bands and groups since then, and it has been a pleasure singing with them all. In 2013, I sang the national anthem at an Oakland A's home game, it was the experience of a lifetime.
The Smokin' Slice of Mojo band is a new experience for me, we play timeless cover songs from the 60s, 70s, and 80s. With this band I have I have the pleasure of working with some great musicians, so the sky's the limit!
My hope is that when you come out to see this amazing band you will be filled with happiness and we will bring back some of the joyful moments of your lifetime.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/Gomez.png" alt="">
</div><!--//member-profile-->
<div class="member-label">Drums</div>
<h3 class="member-name">
Dave Gomez
</h3>
<div class="member-desc">
David Gomez: drummer, vocals (backing and lead), prankster, and grumpy old man. I'm married, have two kids, and have taught U.S. History at Carlmont High School for nearly 30 years.
Got my first professional gig when I was 17 ($60), playing for a party with a Mexican polka band. Now I'm in my fifties and have played in 25 bands, ranging from heavy metal to gospel, Motown to "cool pop".
Now (half a lifetime and 50 pounds later) I am a drummer and vocalist for Fractured Hans and sub-drummer for Janel & the Heist, and of course, a drummer and vocalist for Jerome and the Smokin' Slice of Mojo.
More than a decade ago, and many times since, I told Jerome Harris that if he needed a drummer for anything he wanted to do, and he wanted me, I would be there. We have seen some musicians come and go, but our current line-up seems to finally fulfill our vision of what a rockin' soul-infused cover ban should be.
Stay tuned as we continue to develop and periodically erupt all over the San Francisco Bay Area and beyond!
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="clearfix visible-xs"></div>
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/fd_profile.jpg" alt="">
</div><!--//member-profile-->
<div class="member-label">Bass</div>
<h3 class="member-name">
Fireman Dave
</h3>
<div class="member-desc">
I have a passion for music and instruments, particularly stringed instruments. Like many kids, I started learning to play guitar in high school.
I never played in a band, or with others for that matter, until a few years ago when a new family moved into the neighborhood. Seeing my new neighbor playing guitar and singing with his band got me inspired to pick it up again. He encouraged me to look for a band to play with, and even scoured Craigslist ads until he found a good fit for me.
I played with two other bands before joining Smokin' Slice of Mojo, and I've never had more fun!
When I am not learning a new bass line, or practicing a vocal harmony, you might find me under the hood of a classic car, or making improvements to my home. I retired from the fire department after 31 years. I am married to my lovely wife Lori and we have two great kids, Brianna and Marissa.
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/JSS_Profile.jpg" alt="">
</div><!--//member-profile-->
<div class="member-label">Keyboards and "Horns"</div>
<h3 class="member-name">
Jeff Silberman
</h3>
<div class="member-desc">
Jeff Silberman on keyboards has well over 20 years of semi-professional playing and recording experience in a variety of musical genres. Prior to playing with Smokin' Slice of Mojo, Jeff played with the Lemmings, The Del Mars, Will Scarlett, and Gail Muldrow.
Jeff has also played with esteemed Berkeley High School Jazz alumni Peter Apfelbaum, Will Bernard, Stacy Starkweather, and Steven Berstein ... while still in diapers.
Ironically, Jeff leads the Funk-tastic Smokin' Mojo Hollywood horn section, while having absolutely no training as a brass musician whatsoever!
</div>
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//row-->
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/grich_profile.jpg" alt="">
</div><!--//member-profile-->
<div class="member-label">Guitar</div>
<h3 class="member-name">
Detroit Rich
</h3>
<div class="member-desc">
It all started in 1964 with the Beatles. They inspired me to learn how to play the guitar, drums, and piano.
I played in my first band in '68 with some school friends, mostly just instrumental songs. Throughout the 70's and 80's I played in a punk rock band, the Whoremones. Then in the 80's and 90's I played L/R guitar in a rock band, The New Nobodys. In 2008, I played bass guitar for The Refugees, a Tom Petty tribute band.
In 2009 I met Dave Musso and we formed a rock group called The Time Slips, we played together through 2015. Then in 2015 I was asked to audition for what was to become Smokin' Slice of Mojo. I am still playing with the group, so I guess I passed the audition...
</div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-6 col-md-3">
<div class="item-inner">
<div class="member-profile">
<img class="img-responsive" src="assets/images/members/cindy_profile.jpg" alt="">
</div><!--//member-profile-->
<div class="member-label">Vocals</div>
<h3 class="member-name">
Cindy Shusterman
</h3>
<div class="member-desc">
Cindy Shusterman has been singing with the Smokin' Slice of Mojo Band since September of 2016. Although she has been singing in church and school choirs since she could talk, this is the first band she has joined.
A musical theater buff and former theater kid, she loves being on stage and performing in front of a crowd, now matter how tiny!
Cindy was born and raised in Chattanooga, Tennessee, and attended college in Birmingham, Alabama. She move to San Francisco in 2004 and began teaching high school English in 2006. Currently, she teaches juniors and seniors at Carlmont High School, and resides in the Outer Sunset area of San Francisco.
</div>
</div><!--//item-inner-->
</div><!--//row-->
</div><!--//members-block-->
</div><!--//container-->
</section><!--//about-section-->
<div id="contact" class="contact-section section text-center">
<div class="container">
<h2 class="section-title">Contact</h2>
<div class="section-intro center-block">We cannot wait to turn your party into a Sizzlin’ Pan-Fried Sweaty Category 5-Z hurricane that simply cannot be stopped!</div>
´ <div class="section-intro center-block">Call/Email us today! </div>
<div class="contact-block center-block">
<div class="row">
<div class="item col-xs-12 col-md-4">
<div class="item-inner">
<div class="icon-holder">
<i class="fa fa-info-circle"></i>
</div><!--//icon-holder-->
<h4 class="title">General</h4>
<div class="email"><a href=mailto:smokinsliceofmojo@gmail.com>smokinsliceofmojo@gmail.com</a></div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-12 col-md-4">
<div class="item-inner">
<div class="icon-holder">
<i class="fa fa-calendar-check-o"></i>
</div><!--//icon-holder-->
<h4 class="title">Booking</h4>
<div class="email"><a href=mailto:smokinsliceofmojo@gmail.com>smokinsliceofmojo@gmail.com</a></div>
</div><!--//item-inner-->
</div><!--//item-->
<div class="item col-xs-12 col-md-4">
<div class="item-inner">
<div class="icon-holder">
<i class="fa fa-newspaper-o"></i>
</div><!--//icon-holder-->
<h4 class="title">Press</h4>
<div class="email"><a href=mailto:smokinsliceofmojo@gmail.com>smokinsliceofmojo@gmail.com</a></div>
</div><!--//item-inner-->
</div><!--//item-->
</div><!--//row-->
</div><!--//contact-list-->
<div class="channels-block">
<ul class="channels-list list-inline">
</ul>
</div><!--//channels-block-->
<div class="social-media-block">
<ul class="list-inline social-media-list">
<li><a href="https://www.facebook.com/smokinsliceofmojo/"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCNGlBwWiNtLH__9zq7o9A-Q"><i class="fa fa-youtube"></i></a></li>
</ul>
</div><!--//social-media-block-->
</div><!--//containter-->
</div>
<!-- ******FOOTER****** -->
<footer class="footer">
<div class="container">
<div class="footer-content text-center">
<div class="copyright">Template Copyright @ <a href="http://themes.3rdwavemedia.com/" target="_blank">3rd Wave Media</a></div>
</div><!--//footer-content-->
</div><!--//container-->
</footer><!--//footer-->
<!-- Video Modal -->
<div class="modal modal-video" id="modal-video" tabindex="-1" role="dialog" aria-labelledby="videoModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 id="videoModalLabel" class="modal-title sr-only">Music Video</h4>
</div>
<div class="modal-body">
<div class="video-container">
<div class="embed-responsive embed-responsive-16by9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/mCHUw7ACS8o?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
</div><!--//video-container-->
</div><!--//modal-body-->
</div><!--//modal-content-->
</div><!--//modal-dialog-->
</div><!--//modal-->
<!-- Info Modal -->
<div id="modal-info" class="modal-info modal" tabindex="-1" role="dialog" aria-labelledby="infoModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title text-center" id="infoModalLabel">We are performing at The Fleece, Bristol</h4>
</div><!--//modal-header-->
<div class="modal-body">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim <a href="#">mollis pretium</a> justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede.</p>
<div class="center-block text-center">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2486.319931873737!2d-2.59156458423205!3d51.45228217962615!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x48718e7bd5fd30fd%3A0x9acbbf4d84e5ca8c!2sThe+Fleece!5e0!3m2!1sen!2sus!4v1454805283508" width="640" height="360" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div><!--//modal-body-->
</div><!--//modal-content-->
</div>
</div><!--//modal-->
<!-- Main Javascript -->
<script type="text/javascript" src="assets/plugins/jquery-1.12.3.min.js"></script>
<script type="text/javascript" src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/plugins/jquery-scrollTo/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="assets/plugins/back-to-top.js"></script>
<script type="text/javascript" src="assets/plugins/vegas/dist/vegas.min.js"></script>
<script type="text/javascript" src="assets/js/main.js"></script>
</body>
</html>