-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshort-code.html
More file actions
905 lines (765 loc) · 42.5 KB
/
short-code.html
File metadata and controls
905 lines (765 loc) · 42.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
<!DOCTYPE html>
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/calendar.css" media="screen">
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>The Church</title>
<meta name="description" content>
<meta name="author" content>
<link rel="icon"
type="image/png"
href="images/favicon.png">
<meta name="description" content>
<meta name="author" content>
<link rel="icon"
type="image/png"
href="images/favicon.png">
<meta name="description" content>
<meta name="author" content>
<link rel="icon"
type="image/png"
href="images/favicon.png">
<!-- CSS Style -->
<link rel="stylesheet" href="css/all.css" type="text/css" media="all">
<!-- ResponsiveCSS Style -->
<link rel="stylesheet" href="css/responsive.css" type="text/css" media="all">
<!-- CSS ShortCode -->
<link rel="stylesheet" href="css/shortcode.css" type="text/css" media="all">
<!-- Start JavaScript -->
<link rel="stylesheet" href="css/javascri.css" type="text/css" media="all">
<!-- gallery CSS -->
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" media="all">
<!-- Start Player CSS -->
<link rel="stylesheet" href="css/player.css" type="text/css" media="all">
<!-- Style Switcher CSS -->
<link rel="stylesheet" href="css/default.css" id="stylesheet">
<!-- Megamenu CSS -->
<link rel="stylesheet" href="css/megamenu.css" type="text/css" media="screen" />
<script type="text/javascript">
function changeStyle(url) {
document.getElementById('stylesheet').href ='css/'+url;
}
</script>
<!-- End JavaScript -->
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
</head>
<body>
<ul id="sheetswitch">
<li><a href="#" class="default" onClick="changeStyle('default.css');return false;" >black</a></li>
<li><a href="#" class="blue" onClick="changeStyle('blue.css');return false;" >white</a></li>
<li><a href="#" class="green" onClick="changeStyle('green.css');return false;" >white</a></li>
<li><a href="#" class="perpul" onClick="changeStyle('perpul.css');return false;" >white</a></li>
<li><a href="#" class="brown" onClick="changeStyle('brown.css');return false;" >white</a></li>
</ul>
<div class="wrapper">
<!-- header -->
<div class="main">
<div class="head-banner">
<header id="header">
<div class="header-wrapper">
<div class="header-holder">
<h1 id="logo"><a href="index.html">The Church</a></h1>
<div class="nav">
<ul class="menu menu_blue">
<li><a href="index.html">Home</a></li>
<li class="fullwidth"><a href="about.html" class="drop">About</a>
<div class="dropdown_fullwidth first_fullwidth">
<div class="col_2 firstcolumn">
<div class="inner-col"> <img src="images/ch-25.jpg" alt="">
<h2>John</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
<div class="inner-col"> <img src="images/ch-27.jpg" alt="">
<h2>Mark</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
</div>
<div class="col_2">
<h2>About Us</h2>
<div class="col_1 firstcolumn">
<ul>
<li><a href="team.html">Team</a></li>
<li><a href="timeline.html">Timeline</a></li>
<li><a href="sermons.html">Sermons</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="fullwidth"><a href="church-event.html" class="drop">Events</a>
<div class="dropdown_fullwidth first_fullwidth">
<div class="col_2 firstcolumn">
<div class="inner-col"> <img src="images/ch-25.jpg" alt="">
<h2>John</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
<div class="inner-col"> <img src="images/ch-25.jpg" alt="">
<h2>Mark</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
</div>
<div class="col_2">
<h2>Events</h2>
<div class="col_1 firstcolumn">
<ul>
<li><a href="event-detail.html">Event Detail</a></li>
<li><a href="event-venue.html">Event Venue</a></li>
<li><a href="news.html" class="drop">Latest News</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="fullwidth"><a href="blog.html" class="drop">Blog</a>
<div class="dropdown_fullwidth first_fullwidth">
<div class="col_2 firstcolumn">
<div class="inner-col"> <img src="images/ch-36.jpg" alt="">
<h2>John</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
<div class="inner-col"> <img src="images/ch-29.jpg" alt="">
<h2>Mark</h2>
<p>vore veritatis et quasi itecto veritatis et quasi itecto</p>
</div>
</div>
<div class="col_2">
<h2>Blog</h2>
<div class="col_1 firstcolumn">
<ul class="plus">
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-post.html">Blog Post</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="fullwidth"><a href="gallery.html" class="drop">Gallery</a>
<div class="dropdown_fullwidth first_fullwidth">
<div class="col_2 firstcolumn">
<div class="inner-col"> <img src="images/ch-28.jpg" alt=""> <img src="images/ch-29.jpg" alt=""> <img src="images/ch-30.jpg" alt=""> <img src="images/ch-31.jpg" alt=""> <img src="images/ch-32.jpg" alt=""> <img src="images/ch-33.jpg" alt=""> <img src="images/ch-34.jpg" alt=""> <img src="images/ch-35.jpg" alt=""> </div>
</div>
<div class="col_2">
<h2>Gallery</h2>
<div class="col_1 firstcolumn">
<ul class="plus">
<li><a href="gallery-singlepost.html">Gallery Column 1</a></li>
<li><a href="gallery-2.html"> Gallery Column 2</a></li>
<li><a href="gallery-3.html"> Gallery Column 3</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="fullwidth active"><a href="#" class="drop">Pages</a>
<div class="dropdown_fullwidth first_fullwidth">
<div class="col_2 firstcolumn">
<div class="inner-col">
<iframe src="http://player.vimeo.com/video/8282393?badge=0" width="300" height="200" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
</div>
<div class="col_2">
<h2>All Pages</h2>
<div class="col_1 firstcolumn">
<ul class="plus">
<li><a href="prayer-wall.html">Prayer Wall</a></li>
<li><a href="video.html">Videos</a></li>
<li><a href="prayer-request.html">Prayer Request</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="404.html">404</a></li>
<li class="active"><a href="short-code.html">Short Code</a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="fullwidth">
<li><a href="contact-us.html" class="drop">Contact</a>
<div class="dropdown_fullwidth first_fullwidth" id="contact-drop">
<div class="col_2 firstcolumn">
<h2>Contact Us</h2>
<div class="col_1 firstcolumn">
<form action="contact-form.php" method="post" name="contactform">
<fieldset>
<div class="row-contact">
<label>Name</label>
<input type="text" required pattern="[a-zA-Z ]+" name="name" value="">
</div>
<div class="row-contact">
<label>Email</label>
<input required pattern="^[a-zA-Z0-9-\_.]+@[a-zA-Z0-9-\_.]+\.[a-zA-Z0-9.]{2,5}$" name="email" type="text" value="">
</div>
<div class="row-contact">
<label>Message</label>
<textarea name="comments" id="comments" rows="42" cols="42"></textarea>
</div>
<input name="submit" type="submit" value="SUBMIT" class="submit-1">
</fieldset>
</form>
<ul class="blog-networks">
<li><a href="#" class="blog-twitter">twitter</a></li>
<li><a href="#" class="blog-flicker">flicker</a></li>
<li><a href="#" class="blog-facebook">facebook</a></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
<form action="dummy" method="post">
<select name="choice" size="1" onChange="jump(this.form)" class="chzn-results">
<option value="index.html">home</option>
<option value="about.html">About</option>
<option value="church-event.html">Events</option>
<option value="event-detail.htm.html"> - Event Detai</option>
<option value="event-venue.html"> - Event Venue</option>
<option value="news.html">Latest News</option>
<option value="blog.html"> - Blog</option>
<option value="blog-post.html"> - Blog Post</option>
<option value="news-pos.html"> - News Post</option>
<option value="gallery.html">Gallery</option>
<option value="gallery-singlepost.html.html"> - Gallery Template 1</option>
<option value="gallery-2.html"> - Gallery Template 2</option>
<option value="gallery-3.html"> - Gallery Template 3</option>
<option value="#">Pages</option>
<option value="prayer-wall.html">prayer wall</option>
<option value="prayer-wall.html"> - Prayer Wall</option>
<option value="prayer-request.html"> - prayer request</option>
<option value="service.html"> - Service</option>
<option value="404.html"> - 404</option>
<option value="team.html"> - team</option>
<option value="timeline.html"> - Timeline</option>
<option value="sermons.html"> - Sermons</option>
<option value="video.html"> - Video</option>
<option value="short-code.html"> - short-code</option>
<option value="contact-us.html">contact</option>
</select>
</form>
</div>
</div>
</div>
</header>
</div>
<!-- Content -->
<div class="content">
<section class="bodywrapper inner">
<section class="mainwrapper">
<h2>Short Codes<span class="h-line"></span></h2>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-half">
<!-- ========================= Alert Boxes ========================= -->
<strong class="short-heading">Alert Boxes<span class="h-line"></span></strong>
<div class="alert error hideit">
<p>Error Message. Your Message Goes Here.</p>
<span class="close"></span> </div>
<!-- End error -->
<div class="alert success hideit">
<p>Error Message. Your Message Goes Here.</p>
<span class="close"></span> </div>
<!-- End success -->
<div class="alert info hideit">
<p>Error Message. Your Message Goes Here.</p>
<span class="close"></span> </div>
<!-- End info -->
<div class="alert notice hideit">
<p>Error Message. Your Message Goes Here.</p>
<span class="close"></span> </div>
<!-- End notice -->
<!-- ========================= Alert Boxes End ========================= -->
</figure>
<figure class="column c-one-half">
<!-- ========================= Accordion ========================= -->
<strong class="short-heading">Accordion<span class="h-line"></span></strong>
<div id="accordion">
<h3><a href="#">Accordion-1</a></h3>
<div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard
dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
<h3><a href="#">Accordion-2</a></h3>
<div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard
dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
<h3><a href="#">Accordion-3</a></h3>
<div>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard
dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
</div>
<!-- ========================= Accordion End ========================= -->
</figure>
</section>
</section>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-half">
<!-- ========================= Progress Bar ========================= -->
<strong class="short-heading">Progress Bar<span class="h-line"></span></strong>
<ul class="progress-bar">
<li>
<h5>Web Design ( 40% )</h5>
<div class="meter"><span style="width: 40%"></span></div>
<!-- Edite width here -->
</li>
<li>
<h5>Wordpress ( 80% )</h5>
<div class="meter"><span style="width: 80%"></span></div>
<!-- Edite width here -->
</li>
<li>
<h5>Branding ( 100% )</h5>
<div class="meter"><span style="width: 100%"></span></div>
<!-- Edite width here -->
</li>
</ul>
<!-- ============================ End ============================ -->
</figure>
<figure class="column c-one-half">
<!-- ========================= Buttons ========================= -->
<h3 class="title">Buttons<span class="h-line"></span></h3>
<a href="#" class="readmorebtn small">Small Button</a> <a href="#" class="readmorebtn small gray">Small Button</a> <a href="#" class="readmorebtn small black">Small Button</a>
<div class="clearfix"></div>
<a href="#" class="readmorebtn medium">Medium Button</a> <a href="#" class="readmorebtn medium gray">Medium Button</a> <a href="#" class="readmorebtn medium black">Medium Button</a>
<div class="clearfix"></div>
<a href="#" class="readmorebtn large">Large Button</a> <a href="#" class="readmorebtn large gray">Large Button</a> <a href="#" class="readmorebtn large black">Large Button</a>
<!-- ============================ End ============================ -->
</figure>
</section>
</section>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-half">
<!-- ========================= Tabs 1 ========================= -->
<strong class="short-heading">Tabs 1<span class="h-line"></span></strong>
<div id="horizontal-tabs">
<ul class="tabs">
<li id="tab1">Tab 1</li>
<li id="tab2">Tab 2</li>
<li id="tab3">Tab 3</li>
</ul>
<div class="contents">
<div id="content1" class="tabscontent">
<p> <span class="blue">1 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
<div id="content2" class="tabscontent">
<p> <span class="blue">2 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
<div id="content3" class="tabscontent">
<p> <span class="blue">3 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. </p>
</div>
</div>
<!-- End contents -->
</div>
<!-- End horizontal-tabs -->
<!-- ============================ End ============================ -->
</figure>
<figure class="column c-one-half">
<!-- ========================= Tabs 2 ========================= -->
<strong class="short-heading">Tabs 2<span class="h-line"></span></strong>
<div id="vertical-tabs">
<ul class="tabs">
<li id="tabz1">Tab 1</li>
<li id="tabz2">Tab 2</li>
<li id="tabz3">Tab 3</li>
</ul>
<div class="contents">
<div id="contentz1" class="tabscontent">
<p> <span class="blue">1 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been </p>
</div>
<div id="contentz2" class="tabscontent">
<p> <span class="blue">2 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been </p>
</div>
<div id="contentz3" class="tabscontent">
<p> <span class="blue">3 :</span> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been </p>
</div>
</div>
<!-- End contents -->
</div>
<!-- End vertical-tabs -->
<!-- ============================ End ============================ -->
</figure>
</section>
</section>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-half">
<!-- ========================= Dropcaps ========================= -->
<strong class="short-heading">Dropcaps<span class="h-line"></span></strong>
<p> <span class="dropcap color">L</span>orem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type. <br>
<br>
<span class="dropcap black">L</span>orem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type. </p>
<!-- ============================ End ============================ -->
</figure>
<figure class="column c-one-half">
<!-- ========================= Toggle ========================= -->
<strong class="short-heading title">Toggle<span class="h-line"></span></strong>
<ul class="toggle-view">
<li>
<h3 class="color">Title 1</h3>
<span class="link">+</span>
<div class="panel">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus
neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.</p>
</div>
</li>
<li>
<h3 class="black">Title 2</h3>
<span class="link">+</span>
<div class="panel">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus
neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.</p>
</div>
</li>
<li>
<h3 class="gray">Title 3</h3>
<span class="link">+</span>
<div class="panel">
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi commodo, ipsum sed pharetra gravida, orci magna rhoncus
neque, id pulvinar odio lorem non turpis. Nullam sit amet enim.</p>
</div>
</li>
</ul>
<!-- ============================ End ============================ -->
</figure>
</section>
</section>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-third "> <strong class="short-heading">Blockquote<span class="h-line"></span></strong>
<blockquote> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer took a galley of type. </blockquote>
</figure>
<figure class="column c-one-third"> <strong class="short-heading">Highlight & Tooltips<span class="h-line"></span></strong>
<div class="box">
<p>Sed at odio ut <span class="highlight-color"><a href="#" data="your Text will be here" class="black">ToolTip Black</a></span> dictum eu eu nisl. Donec rutrum erat non arcu gravida porttitor.
Nunc <a href="#" data="your Text will be here" class="black">[ Normal link ]</a> nisi. aliquet mollis. Fusce elementum velit
in purus <span class="highlight-black"><a href="#" data="your Text will be here" class="yellow">ToolTip Yellow</a></span> vel dolor iaculis egestas. Maecenas ut nulla quis eros <span class="highlight-gray"><a href="#" data="your Text will be here" class="white">ToolTip White</a></span> scelerisque vel
vitae nibh. </p>
</div>
</figure>
<figure class="column c-one-third"> <strong class="short-heading">Info Box<span class="h-line"></span></strong>
<div class="info-box">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been. </p>
<a href="#" class="readmorebtn">Some Button</a> </div>
</figure>
</section>
</section>
<section class="grid-holder">
<section class="grid">
<figure class="column c-one-third list-styles">
<!-- ========================= List Styles ========================= -->
<strong class="short-heading">List Styles<span class="h-line"></span></strong>
<ul class="square-list">
<li><a href="#">Square List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End square-list -->
<ul class="check-list">
<li><a href="#">Check List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End check-list -->
<ul class="plus-list">
<li><a href="#">Plus List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End plus-list -->
<ul class="arrow-list">
<li><a href="#">Arrow List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End arrow-list -->
<ul class="cross-list">
<li><a href="#">Cross List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End cross-list -->
<ul class="star-list">
<li><a href="#">Star List - Lorem Ipsum is simply text </a></li>
</ul>
<!-- End star-list -->
<ul class="minus-list">
<li><a href="#">Minus List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End minus-list -->
<ul class="arrow2-list">
<li><a href="#">Arrow2 List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End arrow2-list -->
<ul class="circle-list">
<li><a href="#">Circle List - Lorem Ipsum is simply text</a></li>
</ul>
<!-- End circle-list -->
<!-- ========================= End ========================= -->
</figure>
<figure class="column c-three-fourth">
<!-- ========================= Pagination ========================= -->
<strong class="short-heading">Pagination<span class="h-line"></span></strong>
<ul class="pagination-list color">
<li><a href="#" class="prev">previous</a></li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#" class="current">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">6</a></li>
<li><a href="#">7</a></li>
<li><a href="#">8</a></li>
<li><a href="#">9</a></li>
<li>...</li>
<li><a href="#">50</a></li>
<li><a href="#">51</a></li>
<li><a href="#">52</a></li>
<li><a href="#" class="next">Next</a></li>
</ul>
<!-- End pagination color -->
<div class="clearfix"></div>
<ul class="pagination-list black">
<li><a href="#" class="prev">previous</a></li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#" class="current">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">6</a></li>
<li><a href="#">7</a></li>
<li><a href="#">8</a></li>
<li><a href="#">9</a></li>
<li>...</li>
<li><a href="#">50</a></li>
<li><a href="#">51</a></li>
<li><a href="#">52</a></li>
<li><a href="#" class="next">Next</a></li>
</ul>
<!-- End pagination color -->
<!-- End column -->
<!-- ============================ End ============================ -->
<!-- ========================= Breadcrumbs ========================= -->
<strong class="short-heading">Breadcrumbs<span class="h-line"></span></strong>
<ul class="breadcrumbs">
<li class="active"><a href="#">Home</a></li>
<li>>> <a href="#">About</a></li>
<li>>> <a href="#">Shortcodes</a></li>
</ul>
<!-- End -->
<ul class="breadcrumbs gray">
<li class="active"><a href="#">Home</a></li>
<li>>> <a href="#">About</a></li>
<li>>> <a href="#">Shortcodes</a></li>
</ul>
<!-- End -->
<!-- ============================ End ============================ -->
</figure>
</section>
</section>
<section class="grid-holder">
<h2>Videos<span class="h-line"></span></h2>
<section class="grid">
<figure class="column c-one-half">
<!-- Youtube Video -->
<strong class="short-heading">Youtube<span class="h-line"></span></strong>
<div class="video-wrap widescreen">
<iframe width="400" height="300" frameborder="0" allowfullscreen="" src="http://www.youtube.com/embed/e-yldqNkGfo?feature=player_detailpage"></iframe>
</div>
<!-- End video wrap -->
<!-- End Youtube -->
</figure>
<figure class="column c-one-half">
<!-- Vimeo Video -->
<strong class="short-heading">Vimeo <span class="h-line"></span></strong>
<div class="video-wrap widescreen vimeo">
<iframe src="http://player.vimeo.com/video/50939095" width="90%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
<!-- End video wrap -->
<!-- End Vimeo -->
</figure>
</section>
</section>
<section class="grid-holder lightbox gallery">
<section class="grid">
<figure class="column c-one-half">
<section class="grid-holder"> <strong class="short-heading">Light Box & Frame<span class="h-line"></span></strong>
<section class="grid">
<figure class="column c-one-fourth">
<!-- ========================= Light Box & Frame ========================= -->
<!-- Images Lightbox -->
<div class="item alpha">
<div class="caption"> <a href="images/gallery-img-5.jpg" rel="prettyPhoto[gallery1]"> <img src="images/gallery-img-5.jpg" alt="" class="pic"> <span class="hover-effect big zoom"></span></a> </div>
<!-- hover effect -->
<h4><a>True Words</a></h4>
</div>
<!-- End -->
</figure>
<!-- Videos Lightbox -->
<figure class="column c-one-fourth">
<div class="item alpha">
<div class="caption"> <a href="images/gallery-img-6.jpg" rel="prettyPhoto[gallery1]"> <img src="images/gallery-img-6.jpg" alt="" class="pic"> <span class="hover-effect big zoom"></span></a> </div>
<!-- hover effect -->
<h4><a>Faith</a></h4>
</div>
</figure>
</section>
</section>
</figure>
<figure class="column c-one-half"> <strong class="short-heading">Table<span class="h-line"></span></strong>
<table>
<tbody>
<tr>
<th>Title 1</th>
<th>Title 2</th>
<th>Title 3</th>
<th>Title 4</th>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
<tr>
<td>item</td>
<td>item</td>
<td>item</td>
<td>item</td>
</tr>
</tbody>
</table>
</figure>
</section>
</section>
</section>
</section >
</div>
</div>
<!-- footer -->
<footer class="footer">
<div class="footer-holder">
<div class="footer-frame">
<div class="top">
<div class=" holder">
<div class="music-bar">
<audio class="projekktor1 speaker dark">
<source src="playlist.json" type="application/json"/>
</audio>
</div>
</div>
</div>
<div class="bottom">
<div class=" holder">
<section class="grid-holder">
<section class="grid">
<article class="column c-one-fifth">
<div class="box">
<h5>blog posts</h5>
<p>Morbi a libero eget erat
Dec 15, 2012 | JAMES
Morbi a libero eget erat
cursus vitae id tortor. </p>
<a href="#" class="view-all">view all</a> </div>
</article>
<article class="column c-one-fifth">
<div class="box">
<h5>twitter <span class="footer-tweet"><a href="#">follow</a></span></h5>
<p> Ut sem lacus, porttitor et
eget, iaculis id lacus ipsum. <a href="#" class="view-all">http://is.gd/UuSBXf</a> 8 minutes ago</p>
</div>
</article>
<article class="column c-one-fifth">
<div class="box">
<h5>SERMON TIMINGS</h5>
<strong class="day">SUNDAY</strong>
<ul class="list">
<li>Morning 10:00 am</li>
<li>Afternoon 3:00 pm</li>
<li>Evening 6:00 pm</li>
</ul>
</div>
</article>
<article class="column c-one-fifth">
<div class="box">
<h5>ON THE MAP</h5>
<div class="f-map">
<div style="width:100%">
<iframe width="100%" height="100" src="http://regiohelden.de/google-maps/map_en.php?width=600&height=100&hl=en&q=Wilhelmstra%C3%9Fe%204A%2C%2070182%20Stuttgart+(RegioHelden%20GmbH)&ie=UTF8&t=&z=14&iwloc=A&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
</div>
</article>
<article class="column c-one-fifth">
<div class="box">
<h5>OUR ADDRESS</h5>
<address>
<span>45/923 AA, City Name,
Street 16, Stats, XYZ.</span>
</address>
<h5>NEXT EVENT IN:</h5>
<span class="time">24 Days : 7 Hrs : 24 Min</span> </div>
</article>
</section>
</section>
</div>
</div>
</div>
</div>
</footer>
</div>
<script src="js/jquery-1.js"></script><!-- jQuery library -->
<script type="text/javascript" src="js/jquery.slideshow.js"></script><!-- jQuery main banner -->
<script src="js/jquery-u.js"></script><!-- jQuery Ui -->
<script src="js/sourtin-jquery.js"></script><!-- sourtin-jquery -->
<script src="js/jqueryi-icon-menu.js"></script><!-- Js For all Small Style -->
<script src="js/tytabs.js"></script><!-- jQuery Plugin tytabs -->
<script type="text/javascript" src="js/speakker-big-1.2.02r134.min.js"></script>
<script type="text/javascript" src="js/jquery-inner-slider.js"></script><!-- inner-slider -->
<script src="js/jquery.timelinr-0.9.52.js"></script><!-- timline-slider -->
<script src="js/browser-detect.js"></script> <!-- Browser-Detect -->
<script src="js/sticky-header.js"></script> <!-- Sticky-header -->
<script src="js/jquery.countdown.js"></script>
</html>