forked from larrycai/astyleclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.html
951 lines (671 loc) · 42.6 KB
/
website.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- generator meta tag -->
<!-- leave this for stats and Silex version check -->
<meta name="generator" content="Silex v2.2.7">
<!-- End of generator meta tag -->
<link data-silex-static="" href="//editor.silex.me/static/2.7/normalize.css" rel="stylesheet">
<link data-silex-static="" href="//editor.silex.me/static/2.7/front-end.css" rel="stylesheet">
<script data-silex-static="" type="text/javascript" src="//editor.silex.me/static/2.7/jquery.js"></script>
<script data-silex-static="" type="text/javascript" src="//editor.silex.me/static/2.7/jquery-ui.js"></script>
<script data-silex-static="" type="text/javascript" src="//editor.silex.me/static/2.7/pageable.js"></script>
<script data-silex-static="" type="text/javascript" src="//editor.silex.me/static/2.7/front-end.js"></script>
<style type="text/css" class="silex-style">
@import url('https://fonts.googleapis.com/css?family=Open+Sans:700,300');
.normal {
font-family: "Open Sans", sans-serif;
font-weight: 300;
font-size: 20px;
}
.top-text .normal {
color: white;
}
/* mobile version */
body.enable-mobile {
padding: 0;
}
.silex-pages {
display: none;
}
/* */
.heading1 {
text-shadow: 2px -2px 5px rgba(0, 0, 0, 0.75);
letter-spacing: -3px;
font-size: 150px;
font-weight: 700;
line-height: 150px;
margin-bottom: 0;
text-transform: uppercase;
text-rendering: optimizelegibility;
color: #1ABC9C;
}
.heading2 {
font-size: 36px;
font-weight: 300;
letter-spacing: -1;
text-rendering: optimizelegibility;
text-transform: uppercase;
}
.heading3 {
font-size: 26px;
font-weight: 300;
text-rendering: optimizelegibility;
text-transform: uppercase;
color: #666666;
}
.go-down {
cursor: pointer;
}
body .top-pic {
left: 0;
right: 0;
width: initial;
width: auto;
}
.arrow .normal {
font-size: 110px;
line-height: 15px;
color: white;
}
.middle-text .normal {
color: white;
}
.button {
color: white;
line-height: 35px;
}
.button.page-link-active {
background-color: #FC6F5C;
}
.col>div {
columns: 3;
column-gap: 50px;
-moz-columns: 2;
-moz-column-gap: 50px;
-webkit-columns: 3;
-webkit-column-gap: 50px;
text-align: justify;
}
</style>
<script type="text/javascript" class="silex-script">
$(function () {
$('.go-down').click(function () {
$('html,body').animate({scrollTop: 960}, 500);
});
});
</script>
<style class="silex-inline-styles" type="text/css">
.body-initial {
background-color: rgb(255, 255, 255);
}
.silex-id-1489143154958-1 {
top: 100px;
left: NaNpx;
background-image: url('../../../../../../../libs/templates/silex-templates/perso2/assets/top-pic.jpg');
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-color: rgba(51, 51, 51, 1);
}
.silex-id-1489143154957-0 {
min-height: 960px;
background-color: transparent;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1489143154957-0 {
top: 0px;
left: 12px;
width: 445px;
min-height: 960px;
}
}
.silex-id-1440793860642-0 {
width: 960px;
top: 151px;
left: 0px;
background-color: transparent;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
min-height: 394px;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1440793860642-0 {
top: 75px;
left: 11px;
width: 423px;
min-height: 558px;
}
}
.silex-id-1440798151836-0 {
width: 100px;
top: 633px;
left: 443px;
background-color: rgba(26, 188, 156, 0.447059);
border-top-left-radius: 50px;
border-top-right-radius: 50px;
border-bottom-right-radius: 50px;
border-bottom-left-radius: 50px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: rgb(0, 0, 0);
border-right-color: rgb(0, 0, 0);
border-bottom-color: rgb(0, 0, 0);
border-left-color: rgb(0, 0, 0);
min-height: 100px;
}
.silex-id-1484954814876-0 {
min-height: 43px;
width: 69px;
top: 31px;
left: 15px;
}
.silex-id-1489143327627-3 {
top: 960px;
left: 0px;
background-color: transparent;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1489143327627-3 {
top: 1020px;
left: 0px;
}
}
.silex-id-1489143327626-2 {
min-height: 733px;
background-color: transparent;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1489143327626-2 {
min-height: 1014px;
}
}
.silex-id-1440798996856-3 {
width: 489px;
top: 129px;
left: 0px;
min-height: 94px;
}
.silex-id-1440798669277-2 {
width: 242px;
top: 233px;
left: -2px;
min-height: 300px;
}
.silex-id-1440799193140-4 {
width: 678px;
top: 205px;
left: 282px;
min-height: 347px;
}
.silex-id-1489143411591-5 {
top: 1473px;
left: 0px;
background-color: rgba(51, 51, 51, 1);
background-image: url('../../../../../../../libs/templates/silex-templates/perso2/assets/pic2.jpg');
}
.silex-id-1489143411591-4 {
min-height: 960px;
background-color: transparent;
}
.silex-id-1440800016088-6 {
width: 960px;
top: 134px;
left: 0px;
min-height: 621px;
}
.silex-id-1489143528708-7 {
top: 6637px;
left: 0px;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1489143528708-7 {
top: 3293px;
left: 0px;
}
}
.silex-id-1489143528708-6 {
min-height: 1163px;
background-color: rgb(255, 255, 255);
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1489143528708-6 {
min-height: 2771px;
}
}
.silex-id-1440800306868-7 {
width: 130px;
top: 67px;
left: 212px;
background-color: rgb(83, 161, 173);
border-top-left-radius: 11px;
border-top-right-radius: 11px;
border-bottom-right-radius: 11px;
border-bottom-left-radius: 11px;
min-height: 40px;
}
.silex-id-1440800468283-8 {
width: 130px;
top: 67px;
left: 412px;
background-color: rgb(83, 161, 173);
border-top-left-radius: 11px;
border-top-right-radius: 11px;
border-bottom-right-radius: 11px;
border-bottom-left-radius: 11px;
min-height: 40px;
}
.silex-id-1440800509589-9 {
width: 130px;
top: 67px;
left: 612px;
background-color: rgb(83, 161, 173);
border-top-left-radius: 11px;
border-top-right-radius: 11px;
border-bottom-right-radius: 11px;
border-bottom-left-radius: 11px;
min-height: 40px;
}
.silex-id-1440800819834-10 {
width: 960px;
top: 180px;
left: 0px;
min-height: 960px;
}
.silex-id-1440801309675-13 {
width: 960px;
top: 180px;
left: 0px;
min-height: 960px;
}
@media only screen and (max-width: 480px),
only screen and (max-device-width: 480px) {
.silex-id-1440801309675-13 {
top: 195px;
left: 11px;
width: 423px;
min-height: 2525px;
}
}
.silex-id-1492792986749-1 {
height: 979px;
width: 960px;
background-color: transparent;
top: 162px;
left: 0px;
}
.silex-id-1489143627408-9 {
top: 6637px;
left: 0px;
}
.silex-id-1489143627407-8 {
min-height: 324px;
background-color: rgb(255, 255, 255);
}
.silex-id-1440801730160-14 {
width: 960px;
top: 58px;
left: 0px;
border-top-width: 1px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
min-height: 218.25px;
}
</style>
<meta content="/api/1.0/github/exec/put/silex-templates/wip/perso2" name="publicationPath">
<script type="text/javascript" class="silex-json-styles">
[{"desktop":{"body-initial":{"background-color":"rgb(255, 255, 255)"},"silex-id-1440793860642-0":{"width":"960px","top":"151px","left":"0px","background-color":"transparent","border-top-left-radius":"5px","border-top-right-radius":"5px","border-bottom-right-radius":"5px","border-bottom-left-radius":"5px","border-top-width":"0px","border-right-width":"0px","border-bottom-width":"0px","border-left-width":"0px","border-top-style":"solid","border-right-style":"solid","border-bottom-style":"solid","border-left-style":"solid","min-height":"394px"},"silex-id-1440798151836-0":{"width":"100px","top":"633px","left":"443px","background-color":"rgba(26, 188, 156, 0.447059)","border-top-left-radius":"50px","border-top-right-radius":"50px","border-bottom-right-radius":"50px","border-bottom-left-radius":"50px","border-top-width":"1px","border-right-width":"1px","border-bottom-width":"1px","border-left-width":"1px","border-top-style":"solid","border-right-style":"solid","border-bottom-style":"solid","border-left-style":"solid","border-top-color":"rgb(0, 0, 0)","border-right-color":"rgb(0, 0, 0)","border-bottom-color":"rgb(0, 0, 0)","border-left-color":"rgb(0, 0, 0)","min-height":"100px"},"silex-id-1440798669277-2":{"width":"242px","top":"233px","left":"-2px","min-height":"300px"},"silex-id-1440798996856-3":{"width":"489px","top":"129px","left":"0px","min-height":"94px"},"silex-id-1440799193140-4":{"width":"678px","top":"205px","left":"282px","min-height":"347px"},"silex-id-1440800016088-6":{"width":"960px","top":"134px","left":"0px","min-height":"621px"},"silex-id-1440800306868-7":{"width":"130px","top":"67px","left":"212px","background-color":"rgb(83, 161, 173)","border-top-left-radius":"11px","border-top-right-radius":"11px","border-bottom-right-radius":"11px","border-bottom-left-radius":"11px","min-height":"40px"},"silex-id-1440800468283-8":{"width":"130px","top":"67px","left":"412px","background-color":"rgb(83, 161, 173)","border-top-left-radius":"11px","border-top-right-radius":"11px","border-bottom-right-radius":"11px","border-bottom-left-radius":"11px","min-height":"40px"},"silex-id-1440800509589-9":{"width":"130px","top":"67px","left":"612px","background-color":"rgb(83, 161, 173)","border-top-left-radius":"11px","border-top-right-radius":"11px","border-bottom-right-radius":"11px","border-bottom-left-radius":"11px","min-height":"40px"},"silex-id-1440800819834-10":{"width":"960px","top":"180px","left":"0px","min-height":"960px"},"silex-id-1440801309675-13":{"width":"960px","top":"180px","left":"0px","min-height":"960px"},"silex-id-1440801730160-14":{"width":"960px","top":"58px","left":"0px","border-top-width":"1px","border-right-width":"0px","border-bottom-width":"0px","border-left-width":"0px","border-top-style":"solid","border-right-style":"solid","border-bottom-style":"solid","border-left-style":"solid","min-height":"218.25px"},"silex-id-1484954814876-0":{"min-height":"43px","width":"69px","top":"31px","left":"15px"},"silex-id-1489143154957-0":{"min-height":"960px","background-color":"transparent"},"silex-id-1489143154958-1":{"top":"100px","left":"NaNpx","background-image":"url('../../../../../../../libs/templates/silex-templates/perso2/assets/top-pic.jpg')","background-position":"center center","background-size":"cover","background-repeat":"no-repeat","background-color":"rgba(51,51,51,1)"},"silex-id-1489143327626-2":{"min-height":"733px","background-color":"transparent"},"silex-id-1489143327627-3":{"top":"960px","left":"0px","background-color":"transparent"},"silex-id-1489143411591-4":{"min-height":"960px","background-color":"transparent"},"silex-id-1489143411591-5":{"top":"1473px","left":"0px","background-color":"rgba(51,51,51,1)","background-image":"url('../../../../../../../libs/templates/silex-templates/perso2/assets/pic2.jpg')"},"silex-id-1489143528708-6":{"min-height":"1163px","background-color":"rgb(255, 255, 255)"},"silex-id-1489143528708-7":{"top":"6637px","left":"0px"},"silex-id-1489143627407-8":{"min-height":"324px","background-color":"rgb(255, 255, 255)"},"silex-id-1489143627408-9":{"top":"6637px","left":"0px"},"silex-id-1492792986749-1":{"height":"979px","width":"960px","background-color":"transparent","top":"162px","left":"0px"},"silex-id-1495975627992-0":{"width":"400px","height":"400px","background-color":"transparent","top":"343px","left":"276px"}},"mobile":{"silex-id-1440793860642-0":{"top":"75px","left":"11px","width":"423px","min-height":"558px"},"silex-id-1489143154957-0":{"top":"0px","left":"12px","width":"445px","min-height":"960px"},"silex-id-1489143528708-7":{"top":"3293px","left":"0px"},"silex-id-1489143528708-6":{"min-height":"2771px"},"silex-id-1489143327627-3":{"top":"1020px","left":"0px"},"silex-id-1489143327626-2":{"min-height":"1014px"},"silex-id-1440801309675-13":{"top":"195px","left":"11px","width":"423px","min-height":"2525px"}},"componentData":{"silex-id-1492792986749-1":{"name":"slideshow1","templateName":"slideshow","slides":[{"image":[{"url":"/api/1.0/github/exec/get//silex-templates/wip/perso2/assets/top-pic.jpg","name":"top-pic.jpg","size":131025}],"text":"This is a slideshow component...","color":"#ffffff"},{"image":[{"url":"/api/1.0/github/exec/get//silex-templates/wip/perso2/assets/pic2.jpg","name":"pic2.jpg","size":118845}],"text":"...with 2 slides!","color":"#ffffff"}]},"silex-id-1495975627992-0":{"name":"form1","templateName":"form"}}}]
</script>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2.2" data-silex-viewport="">
<script src="//editor.silex.me/static/2.7/unslider/unslider-min.js" data-silex-static="" data-dependency=""></script>
<link rel="stylesheet" href="//editor.silex.me/static/2.7/unslider/unslider.css" data-silex-static="" data-dependency="">
<style id="current-page-style">
.page-design {
display: inherit;
}
</style>
<!-- Silex HEAD tag do not remove -->
<!-- End of Silex HEAD tag do not remove -->
</head>
<body data-silex-id="body-initial" class="body-initial enable-mobile silex-runtime" data-silex-type="container">
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1489143154958-1 section-element" data-silex-id="silex-id-1489143154958-1">
<div data-silex-type="container" class="editable-style silex-element-content website-width silex-id-1489143154957-0 silex-container-content container-element prevent-draggable" data-silex-id="silex-id-1489143154957-0">
<div data-silex-id="silex-id-1440793860642-0" class="editable-style silex-id-1440793860642-0 text-element top-text" data-silex-type="text">
<div class="silex-element-content normal">
<h1 style="text-align: center;" class="heading1"><span style="color: rgb(255, 255, 255);">JOHN</span> SMITH </h1>
<div style="text-align: center;">
<h2 class="heading2">Photographe ~ Coder ~ Designer </h2>
</div>
</div>
</div>
<div data-silex-id="silex-id-1440798151836-0" class="editable-style silex-id-1440798151836-0 container-element go-down" data-silex-type="container">
<div data-silex-type="image" class="editable-style silex-id-1484954814876-0 image-element" data-silex-id="silex-id-1484954814876-0" style=""><img src="arrow.png" class="silex-element-content"></div>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1489143327627-3 section-element" data-silex-id="silex-id-1489143327627-3">
<div data-silex-type="container" class="editable-style silex-element-content website-width silex-id-1489143327626-2 silex-container-content container-element prevent-draggable" data-silex-id="silex-id-1489143327626-2">
<div data-silex-id="silex-id-1440798996856-3" class="editable-style silex-id-1440798996856-3 text-element" data-silex-type="text">
<div class="silex-element-content normal">
<h2 class="heading2">A propos de moi</h2>
</div>
</div>
<div data-silex-id="silex-id-1440798669277-2" class="editable-style silex-id-1440798669277-2 image-element" data-silex-type="image"><img class="silex-element-content" src="../../../../../../../libs/templates/silex-templates/perso2/assets/me.jpg">
</div>
<div data-silex-id="silex-id-1440799193140-4" class="editable-style silex-id-1440799193140-4 text-element" data-silex-type="text">
<div class="silex-element-content normal">
<h3 class="heading3">Ma philosophie<br></h3>
<p class="normal">Flank shankle minim proident id andouille. Dolore nostrud fatback, boudin eu short ribs ut ham hock picanha doner id aliqua. Aliqua reprehenderit porchetta ut tenderloin ea shank. Shankle in salami, pariatur irure do doner tenderloin
andouille venison sirloin deserunt elit labore dolore.
<br>
</p>
<p class="normal"> Dolore pork chop short ribs officia ullamco, strip steak reprehenderit esse landjaeger aliquip magna ea. Cupim landjaeger irure biltong bresaola beef ribs turducken enim shank pancetta tongue laboris adipisicing pork belly.</p>
</div>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1489143411591-5 section-element" data-silex-id="silex-id-1489143411591-5">
<div data-silex-type="container" class="editable-style silex-element-content website-width silex-id-1489143411591-4 silex-container-content container-element prevent-draggable" data-silex-id="silex-id-1489143411591-4">
<div data-silex-id="silex-id-1440800016088-6" class="editable-style silex-id-1440800016088-6 text-element middle-text" data-silex-type="text">
<div class="silex-element-content normal">
<h2 style="text-align: center;" class="heading2">Porchetta ea jerky ipsum alcatra pork chop. <br></h2>
<p style="text-align: center;" class="normal">Andouille ut in ball tip picanha et. Laborum hamburger sint lorem ribeye enim. Filet mignon magna anim in, ground round consequat aliquip in prosciutto incididunt officia culpa rump enim eu. Bresaola proident sed beef tongue in voluptate
duis exercitation nostrud. Doner eu fatback ground round ea. Lorem tail kevin drumstick excepteur aliqua pork belly t-bone hamburger.</p>
<p style="text-align: center;" class="normal"></p>
<p style="text-align: center;" class="normal">Commodo in ground round turkey. Duis mollit filet mignon shankle, eiusmod excepteur nostrud labore fatback beef ribs tempor incididunt pork chop. Boudin et pork chop drumstick, t-bone enim porchetta officia cupim short loin qui nisi.
Prosciutto pariatur flank filet mignon tenderloin dolore reprehenderit, fatback cow commodo aute tri-tip quis.</p>
<p style="text-align: center;" class="normal">Andouille ut in ball tip picanha et. Laborum hamburger sint lorem ribeye enim. Filet mignon magna anim in, ground round consequat aliquip in prosciutto incididunt officia culpa rump enim eu. Bresaola proident sed beef tongue in voluptate
duis exercitation nostrud. Doner eu fatback ground round ea. Lorem tail kevin drumstick excepteur aliqua pork belly t-bone hamburger.
</p>
<p style="text-align: center;" class="normal">Commodo in ground round turkey. Duis mollit filet mignon shankle, eiusmod excepteur nostrud labore fatback beef ribs tempor incididunt pork chop. Boudin et pork chop drumstick, t-bone enim porchetta officia cupim short loin qui nisi.
Prosciutto pariatur flank filet mignon tenderloin dolore reprehenderit, fatback cow commodo aute tri-tip quis.</p>
<p class="normal" style="text-align: center;"></p>
</div>
</div>
</div>
</div>
<div class="silex-pages">
<div data-silex-type="image" data-silex-id="silex-id-hamburger-menu" class="menu-button editable-style silex-id-hamburger-menu image-element page-page-1 paged-element prevent-draggable prevent-resizable"><img alt="open mobile menu" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAoCAYAAAC8cqlMAAAB5UlEQVR42u2ZPWvCUBSGM+UfFO3e3dLu/QN+oKj4EUXRQREEJYgoiCAu6qCogyDo7iJ21UUaKqEgCC4iiEMGB3UVgsnpTWj/wfVK2nvhGbKEPJyT996TMMzPGg6H5mKx+GgkyuWyeTQasb8OTDwef4tEIp8+n+/LYIjJZJJHQiwzm81M6OLDarWqNpsNjEYgEJCy2ewT0+/3TagighElNFAnQT6ft1ARKkJFqMgfFvF4PFpuEwFtdrcRqVarIIoirFYrIiyXSxiPx+B2u/GJBINBuF6vQHopigK1Wg2fCMdxcLlciIuoqgqNRgOfiN1uB3Qwg91uB8fjkQiHwwEmkwne1qLxS0VuKKJle71eh06nQ4Rmswk8z+MVcTqdsNlsQJZlotF7Pp8hk8ngE4lGo/qN7xG/vV4Pb0Xm8zlxkdPpBGgMx/+yJxIJKBQKRMjlcuBwOGhq/Q+RcDgMsViMCFrAuFwu/CKDwQC22y1IkkSE/X4PgiDo+xc2Ea0S9zjGa/Hb7Xbxifj9fj0K7yFSqVTwtlY6nYbpdKpPiSRYLBbQarX0PYymFhWhIlSEilCRW6GdyUqlkoVZr9dsKpXiOY6TtW+7BkNBz/7ebrcf9L+6Xq+XRYPMMyrTq5EIhUIvaAjTJb4BBNQ2yhnth0wAAAAASUVORK5CYII="
class="silex-element-content"></div><a id="page-design" data-silex-type="page" class="page-element page-link-active">Design</a><a class="page-element" data-silex-type="page" id="page-photo">Photo</a><a class="page-element" data-silex-type="page"
id="page-code">Code</a></div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1489143528708-7 section-element" data-silex-id="silex-id-1489143528708-7">
<div data-silex-type="container" class="editable-style silex-element-content website-width silex-id-1489143528708-6 silex-container-content container-element prevent-draggable" data-silex-id="silex-id-1489143528708-6">
<div data-silex-href="#!page-design" data-silex-id="silex-id-1440800306868-7" class="editable-style silex-id-1440800306868-7 text-element button page-link-active" data-silex-type="text">
<div class="silex-element-content normal">
<div style="text-align: center;">Design</div>
</div>
</div>
<div data-silex-href="#!page-photo" data-silex-id="silex-id-1440800468283-8" class="editable-style text-element button silex-id-1440800468283-8" data-silex-type="text">
<div class="silex-element-content normal">
<div style="text-align: center;">Photo</div>
</div>
</div>
<div data-silex-href="#!page-code" data-silex-id="silex-id-1440800509589-9" class="editable-style text-element button silex-id-1440800509589-9" data-silex-type="text">
<div class="silex-element-content normal">
<div style="text-align: center;">Code</div>
</div>
</div>
<div data-silex-id="silex-id-1440800819834-10" class="editable-style silex-id-1440800819834-10 text-element col page-design paged-element" data-silex-type="text">
<div class="silex-element-content normal">Doner ea ipsum, chicken sed hamburger do incididunt qui pork capicola. Velit et porchetta, filet mignon ground round bresaola laborum. Aute fugiat pork chop drumstick, frankfurter do chicken kielbasa meatball. Capicola chuck fugiat, culpa
bacon consectetur biltong tenderloin ipsum quis aliqua hamburger eiusmod incididunt. Cupim tongue fugiat elit laboris alcatra sint ribeye pariatur pig meatloaf irure bresaola picanha boudin. Mollit cupim aute, sunt minim aliquip drumstick
rump chuck id nisi tongue velit bresaola. Est pariatur t-bone occaecat meatball tongue officia.
<br>
<br>Doner ad magna alcatra, et short ribs id qui. Proident short ribs turducken frankfurter flank, beef minim spare ribs laborum bresaola ground round. Drumstick pastrami aute, kielbasa eiusmod venison turducken. Ad id cupim velit
filet mignon ea, turkey prosciutto ball tip sirloin pancetta minim alcatra. Flank irure pork chop veniam, culpa anim eiusmod kevin landjaeger. Rump pancetta venison ut short loin reprehenderit, pig pork chop flank dolore non hamburger
jowl.
<br>
<br>Aliquip incididunt nostrud, boudin sunt cupidatat kevin in. Mollit cupim bacon veniam. Consectetur turkey venison, doner lorem magna exercitation bacon bresaola aliqua nisi eu sed. Fugiat in sirloin, landjaeger nulla meatloaf eu
short ribs sed. Non in chuck pig. Lorem sint magna boudin shank beef ribs sirloin rump, ham deserunt nostrud excepteur ribeye. Tail short ribs dolor anim meatloaf, sirloin deserunt shankle ham ground round in magna velit.
<br>
<br>Incididunt in short ribs bacon kevin est. Short loin tempor ham hock, ball tip filet mignon laboris capicola. Officia alcatra tri-tip andouille cow. Ipsum laboris nostrud rump sausage consequat pastrami proident ball tip do qui
dolor porchetta deserunt chicken.
<br>
<br>In reprehenderit ipsum nisi picanha, shoulder brisket jowl tongue fatback labore turducken minim short loin. Et dolore tempor capicola sunt fugiat. Quis ham hock et, tri-tip eiusmod pancetta drumstick in boudin t-bone venison.
Ground round adipisicing filet mignon drumstick frankfurter, elit andouille consequat bacon dolore.
<br>
<br>Fugiat pork loin esse commodo kevin frankfurter, tongue jerky exercitation. Ribeye est tempor et cupim ut. Tongue brisket ex, nulla ut tempor minim chicken sint dolor venison strip steak est. Pig aliqua et, ut alcatra elit labore
doner tenderloin occaecat filet mignon pork loin. Ut velit voluptate spare ribs in est. Tenderloin swine ex ipsum, id aute adipisicing venison strip steak consequat turducken.</div>
</div>
<div data-silex-id="silex-id-1440801309675-13" class="editable-style text-element col silex-id-1440801309675-13 page-code paged-element" data-silex-type="text">
<div class="silex-element-content normal">Enim pancetta pastrami ad aliqua, ullamco do bacon nisi shank in ball tip commodo cupidatat. Excepteur strip steak magna dolore t-bone labore brisket nulla tail. Landjaeger enim sed meatloaf ut salami cow shank magna ham hock venison boudin
capicola pancetta ad. Porchetta capicola pork belly in leberkas. Pork labore meatball, cupidatat meatloaf sausage esse pork loin. Shankle pariatur et, kielbasa pastrami swine landjaeger esse cupim fatback beef ribs ground round consequat.
<br>
<br>T-bone flank dolore capicola proident aute. Aliqua cupidatat ea, leberkas shank cow meatball. Ipsum sunt excepteur shankle doner nisi ullamco tri-tip short loin consequat strip steak in ut. Irure enim anim, pork swine ut eu bacon
cillum pork loin elit et. Sirloin reprehenderit ad swine sausage aute boudin in fatback in laborum pig short loin proident.
<br>
<br>Officia proident pork loin cupim do elit in veniam, adipisicing salami aute. Mollit jowl do ut chuck ball tip ea pork belly reprehenderit excepteur tenderloin. Turducken rump capicola laboris nisi shankle. Tempor capicola pig,
venison enim sed spare ribs minim pastrami commodo. Eiusmod adipisicing pariatur, biltong voluptate cupim aute. Salami bresaola elit ut ham hock, filet mignon velit laborum irure.
<br>
<br>
<br>
<br>Dolor prosciutto consectetur dolore nostrud boudin beef reprehenderit tail non andouille. Dolor sunt dolore, kielbasa ad swine landjaeger. Veniam tenderloin exercitation, meatball tempor est occaecat pariatur mollit rump nostrud.
Quis frankfurter culpa, minim alcatra prosciutto nostrud enim hamburger tail ground round lorem. Cillum fugiat lorem sirloin corned beef exercitation ex quis tenderloin reprehenderit ad frankfurter prosciutto swine cow.
<br>
<br>Ea ham in proident. Minim ipsum est ex capicola short loin ad flank pork belly. Turducken velit pig reprehenderit aliquip landjaeger pork loin deserunt magna et cillum adipisicing. Reprehenderit eu excepteur ea, tail jerky biltong
turkey ham hock venison pariatur ullamco esse.
<br>
<br>Sint strip steak shank, cillum tail sed ea. Proident deserunt spare ribs, ham venison jowl ribeye irure cow adipisicing shank ut esse anim capicola. In andouille shankle kielbasa. Elit aute velit, nulla flank shankle leberkas shoulder
t-bone cow id.
<br>
<br>
<br>
</div>
</div>
<div data-silex-type="html" class="editable-style silex-id-1492792986749-1 html-element silex-component silex-component-slideshow silex-use-height-not-minheight page-photo paged-element" data-silex-id="silex-id-1492792986749-1">
<div class="silex-element-content">
<div id="parent_1495975593816_968">
<!-- preview -->
<div class="prodotype-preview">
<div class="preview-text prodotype-force-size">
<p>~ Preview ~</p>
</div>
<figure class="slide-0">
<div class="slide-image prodotype-force-size">
<figcaption>This is a slideshow component...</figcaption>
</div>
</figure>
</div>
<div id="id_1495975593816_968">
<!-- runtime -->
<!-- the whole slideshow -->
<ul class="prodotype-runtime">
<li>
<figure class="slide-0">
<div class="slide-image">
<figcaption>This is a slideshow component...</figcaption>
</div>
</figure>
</li>
<li>
<figure class="slide-1">
<div class="slide-image">
<figcaption>...with 2 slides!</figcaption>
</div>
</figure>
</li>
</ul>
</div>
</div>
<style type="text/css">
/* *********************** */
/* "Preview" label always on top of the slideshow in silex */
#parent_1495975593816_968 .prodotype-preview {
list-style-type: none;
margin: 0;
padding: 0;
}
#parent_1495975593816_968 .prodotype-preview .preview-text {
display: flex;
align-items: center;
justify-content: center;
}
#parent_1495975593816_968 .prodotype-preview .preview-text p {
z-index: 1;
background-color: black;
color: white;
}
/* *********************** */
/* styles for each slide */
#parent_1495975593816_968 .slide-0 .slide-image {
background-image: url('../../../../../../../libs/templates/silex-templates/perso2/assets/top-pic.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
}
#parent_1495975593816_968 .slide-1 .slide-image {
background-image: url('../../../../../../../libs/templates/silex-templates/perso2/assets/pic2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: 50%;
}
/* *********************** */
/* styles for all the slides */
#parent_1495975593816_968 .slide-image {
width: 100%;
display: flex;
justify-content: center;
align-items: flex-end;
justify-content: center;
}
#parent_1495975593816_968 figcaption {
padding: 50px;
color: white;
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
text-align: center;
}
/* *********************** */
/* UI style */
#parent_1495975593816_968 .unslider-nav {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
top: auto;
margin: 0;
}
#parent_1495975593816_968 .unslider-nav ol {
text-align: center;
}
#parent_1495975593816_968 .unslider-nav ol li.unslider-active {
background: #fff;
cursor: default;
opacity: 1;
}
#parent_1495975593816_968 .unslider-nav ol li {
display: inline-block;
float: none;
width: 6px;
height: 6px;
margin: 0 4px;
padding: 3px;
background: transparent;
border-radius: 10px;
overflow: hidden;
text-indent: -999em;
border: 2px solid #fff;
cursor: pointer;
opacity: .4;
}
#parent_1495975593816_968 .unslider-arrow {
display: block;
width: 32px;
height: 32px;
top: 50%;
right: 16px;
left: auto;
margin-top: -16px;
overflow: hidden;
background: rgba(0, 0, 0, .2) no-repeat 50% 50%;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAAi0lEQVR4AU3OISBEQQBAwS0AACS9NxqQgCZpkiYBVddFvWhAAUABAPQCAGC4g/0vTnrBqCfDIZl70J+kMUBPpEwT4FNXxBxz4F1HxHyr4EVTxBLb4EFNxEon4CJSlVNw9AcV9sC16h8osgke1P1ArgXwouVvdQq86ww/GQefusNf7kBviBlxpT8k+gL/Wox4r1d4MwAAAABJRU5ErkJggg==');
background-size: 7px 11px;
border-radius: 32px;
text-indent: -999em;
opacity: .6;
transition: opacity .2s;
}
#parent_1495975593816_968 .unslider-arrow.prev {
left: 16px;
right: auto;
-ms-transform: rotate(-180deg);
transform: rotate(-180deg);
}
/* *********************** */
</style>
<script type="text/javascript">
(function() {
function initUnslider() {
// do not start in the editor (it would mess with the markup)
if(!$('body').hasClass('silex-runtime')) return;
var slider = $('#id_1495975593816_968').unslider({
'autoplay': false,
'speed': 750,
'delay': 3000,
'index': 0,
'nav': true,
'animation': 'horizontal',
'arrows': true
});
// Listen to slide changes
// apply element height to the images
var silexElement = $('#id_1495975593816_968').closest('.editable-style');
var elementMinHeight = silexElement.css('height');
var elementWidth = silexElement.css('width');
$('#id_1495975593816_968 li .slide-image').css({
'height': elementMinHeight
});
}
initUnslider();
})();
</script>
</div>
</div>
</div>
</div>
<div data-silex-type="container" class="prevent-draggable container-element editable-style silex-id-1489143627408-9 section-element" data-silex-id="silex-id-1489143627408-9">
<div data-silex-type="container" class="editable-style silex-element-content website-width silex-id-1489143627407-8 silex-container-content container-element prevent-draggable" data-silex-id="silex-id-1489143627407-8">
<div data-silex-id="silex-id-1440801730160-14" class="editable-style silex-id-1440801730160-14 text-element" data-silex-type="text">
<div class="silex-element-content normal">
<div style="text-align: center;">
<br>
<br>Pictures and template are Creative Commons
<br>Pictures are labeled for noncommercial reuse
<br>
<br>Template created by <a href="//lexoyo.me/">@lexoyo</a> with <a href="//www.silex.me/">Silex, free website builder</a>
<br>
</div>
</div>
</div>
</div>
</div>
</body>
</html>