-
Notifications
You must be signed in to change notification settings - Fork 3
/
blog-detail.html
946 lines (874 loc) · 52.3 KB
/
blog-detail.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
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" class="ie"lang="en-US">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" class="ie"lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" class="ie"lang="en-US">
<![endif]-->
<!--[if IE 9]>
<html id="ie9" class="ie"lang="en-US">
<![endif]-->
<!--[if gt IE 9]>
<html class="ie"lang="en-US">
<![endif]-->
<!--[if !IE]>
<html lang="en-US">
<![endif]-->
<!-- START HEAD -->
<head>
<meta charset="UTF-8" />
<!-- this line will appear only if the website is visited with an iPad -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.2, user-scalable=yes" />
<title>Celestino | only for creative minds.</title>
<!-- RESET STYLESHEET -->
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" />
<!-- BOOTSTRAP STYLESHEET -->
<link rel="stylesheet" type="text/css" media="all" href="css/bootstrap.css" />
<!-- MAIN THEME STYLESHEET -->
<link rel="stylesheet" type="text/css" media="all" href="style.css" />
<link rel='stylesheet' id='custom-css' href='css/custom.css' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-css' href='http://fonts.googleapis.com/css?family=Oswald%7CDroid+Sans%7CPlayfair+Display%7COpen+Sans+Condensed:300,400,800%3A300%7CRokkitt%7CShadows+Into+Light%7CMaven+Pro:400,700%7CAbel%7CMontez' type='text/css' media='all' />
<link rel='stylesheet' id='responsive-css' href='css/responsive.css' type='text/css' media='all' />
<link rel='stylesheet' id='tipsy-css' href='css/tipsy.css' type='text/css' media='all' />
<link rel='stylesheet' id='fonts-css' href='css/font-awesome.css' type='text/css' media='all' />
<link rel='stylesheet' id='slide-details-css' href='sliders/flexslider-elegant/css/flexslider.css' type='text/css' media='all' />
<link rel='stylesheet' id='flexislider-css' href='sliders/flexslider/css/slider.css' type='text/css' media='all' />
<link rel='stylesheet' id='shortcode-css' href='css/shortcodes.css' type='text/css' media='all' />
<link rel='stylesheet' id='colorbox-css' href='css/colorbox.css' type='text/css' media='all' />
<link rel='stylesheet' id='elegant-css' href='blog/elegant/css/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='custom-button-mfast-3-css' href='css/buttons/mfast-3.css' type='text/css' media='all' />
<link rel='stylesheet' id='comment-css' href='css/comment.css' type='text/css' media='all' />
<!-- [favicon] begin -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- [favicon] end -->
<!-- Touch icons more info: http://mathiasbynens.be/notes/touch-icons -->
<!-- For iPad3 with retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144x.png" />
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x.png" />
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-57x.png" />
<link rel='stylesheet' id='thickbox-css' href='js/thickbox/thickbox.css' type='text/css' media='all' />
<script type='text/javascript' src='js/jquery/jquery.js'></script>
</head>
<!-- END HEAD -->
<!-- START BODY -->
<body class="home page no_js responsive stretched">
<!-- START BG SHADOW -->
<div class="bg-shadow">
<!-- START WRAPPER -->
<div id="wrapper" class="container group">
<!-- START TOP BAR -->
<!-- START TOP BAR -->
<div id="topbar">
<div class="container">
<div class="row">
<div id="last-tweets-3" class="widget-first span6 widget last-tweets">
<h3>Last Tweets</h3>
<div class="list-tweets-3"></div>
<script type="text/javascript">
jQuery(function($){
$('#last-tweets-3 .list-tweets-3').tweetable({
listClass: 'tweets-widget-3',
username: 'samuelbetio',
time: false,
limit: 3,
replies: false
});
});
</script>
</div>
<div id="text-8" class=" widget-last span6 widget widget_text">
<div class="textwidget">
<a href="# " class="socials-small facebook-small" title="Facebook" >facebook</a>
<a href="#" class="socials-small rss-small" title="Rss" >rss</a>
<a href="#" class="socials-small twitter-small" title="Twitter" >twitter</a>
<a href="#" class="socials-small google-small" title="Google" >google</a>
<a href="#" class="socials-small linkedin-small" title="Linkedin" >linkedin</a>
<a href="#" class="socials-small pinterest-small" title="Pinterest" >pinterest</a></div>
</div>
</div>
</div>
</div>
<script>
jQuery(function($){
var twitterSlider = function(){
$('#topbar .last-tweets ul').addClass('slides');
$('#topbar .last-tweets').flexslider({
animation: "fade",
slideshowSpeed: 5 * 1000,
animationDuration: 700,
directionNav: false,
controlNav: false,
keyboardNav: false
});
};
$('#topbar .last-tweets > div').bind('tweetable_loaded', function(){
twitterSlider();
});
});
</script>
<!-- END TOP BAR -->
<!-- START HEADER -->
<div id="header" class="group">
<div class="group container">
<div class="row">
<div class="span12">
<div class="row">
<!-- START LOGO -->
<div id="logo" class="span4 group">
<a id="logo-img" href="index.html" title="celestino">
<img src="images/celestino1.png" title="celestino" alt="celestino" />
</a>
<p id="tagline">only for creative minds.</p>
</div>
<!-- END LOGO -->
<div id="menu" class="span8 group">
<!-- START MAIN NAVIGATION -->
<div class="menu">
<ul id="nav" class="sf-menu">
<li class="nav-icon-hi">
<a href="index.html">
Home
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li class="nav-icon-open-small">
<a href="home-ii.html">
Home Version II
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-folder-small">
<a href="home-iii.html">
Home Version III
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-target-small">
<a href="home-iv.html">
Home Version IV
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-design-small">
<a href="home-v.html">
Home Version V
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-cert-small">
<a href="home-vi.html">
Home Version VI (Grid slider)
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-book-small">
<a href="home-vii.html">
Home Version VII
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-cake-small">
<a href="home-viii.html">
Home Version VIII
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-bulb-small ">
<a href="home-ix.html">
Home version IX (Blog)
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
<li class="nav-icon-monitor">
<a href="#">
Sliders
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li>
<a href="revolution-slider.html">
Revolution Slider
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="images-grid.html">Images Grid
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sliders-thumbnails.html">Thumbnails
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="elastic.html">
Elastic
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="slider-flexslider-classic.html">
Flexslider Classic
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="flexslider-elegant.html">
Flexslider Elegant
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="cycle.html">
Cycle
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="slider-flash.html">
Slider Flash
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
<li class="nav-icon-doc">
<a href="#">
Pages
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li class="nav-icon-team-small ">
<a href="pages-about.html">
About
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-bubble-small ">
<a href="pages-testimonials.html">
Testimonials
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-contact-small ">
<a href="pages-contact.html">
Contact
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li class="nav-icon-bomb-small">
<a href="error-404.html">
Error 404
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
<li class="nav-icon-works">
<a href="#">
Portfolio
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li>
<a href="portfolio-pinterest-style.html">
Portfolio Pinterest Style
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-detail.html">
Portfolio Slide Detail
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-filterable.html">
Portfolio Filterable
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-2-columns.html">
Portfolio 2 Columns
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-3-columns.html">
Portfolio 3 Columns
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-4-columns.html">
Portfolio 4 Columns
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-big-image.html">
Portfolio Big Image
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-slider.html">
Portfolio Slider
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="portfolio-full-description.html">
Portfolio Full Description
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
<li class="nav-icon-newspaper">
<a href="#">
Blog
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li>
<a href="blog-big-image.html">
Big image
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="blog-small-image.html">
Small image
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="blog-elegant.html">
Elegant
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="blog-blog-pinterest-style.html">
Pinterest Style
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
<li class="nav-icon-lab">
<a href="#">
Shortcodes
<div style="position:absolute; left: 50%;">
<span class="triangle"> </span>
</div>
</a>
<ul class="sub-menu">
<li>
<a href="sc-typography.html">
Typography
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sc-icon-section.html">
Icon section
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sc-alert-box-buttons.html">
Alert box & Buttons
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sc-table-box-prices.html">
Table & Box prices
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sc-media-widgets.html">
Media & Widgets
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
<li>
<a href="sc-mix-various.html">
Mix & Various
<div>
<span class="triangle"> </span>
</div>
</a>
</li>
</ul>
</li>
</ul>
</div>
<!-- END MAIN NAVIGATION -->
</div>
</div>
</div>
</div>
</div>
<div id="border-header"></div>
</div>
<!-- END HEADER -->
<!-- START PAGE META -->
<div id="page-meta" class="container">
<!-- BREDCRUMB -->
<div class="breadcrumbs">
<p id="yit-breadcrumb" itemprop="breadcrumb">
<a class="home" href="index.html">
Home Page
</a> >
<a href="category-web-design.html" title="View all posts in Web Design">
Web Design
</a> >
<a class="no-link current" href="#">
This is the title of the first article. Enjoy it.
</a>
</p>
</div>
</div>
<!-- END PAGE META -->
<!-- START PRIMARY -->
<div id="primary" class="sidebar-right">
<div class="container group">
<div class="row">
<!-- START CONTENT -->
<div id="content-single" class="span9 content group">
<div class="post type-post status-publish format-gallery hentry tag-design tag-developing tag-web hentry-post group blog-elegant">
<!-- post featured & title -->
<div class="thumbnail">
<div class="row">
<!-- post meta -->
<div class="meta group span3">
<div>
<h1 class="post-title">
<a href="#">
This is the title of the first article. Enjoy it.
</a>
</h1>
<p class="author">
<img src="images/icons/author.png" alt="icon-user" />
<span>Author:</span>
<a href="author-celestino" title="Posts by Nicola Mustone" rel="author">
Nicola Mustone
</a>
</p>
<p class="date">
<img src="images/icons/date.png" alt="icon-calendar" />
<span>Date:</span> October 8, 2012
</p>
</div>
<div>
<p class="comments">
<img src="images/icons/comments.png" alt="icon-comment" />
<span>
<a href="#" title="Comment on This is the title of the first article. Enjoy it.">
<span>Comments:</span> 0
</a>
</span>
</p>
</div>
<div>
<div class="socials">
<h2>Share on</h2>
<a href="#" class="socials-small facebook-small" title="Facebook" target="_blank" >facebook</a>
<a href="#" class="socials-small twitter-small" title="Twitter" target="_blank" >twitter</a>
<a href="#" class="socials-small google-small" title="Google" target="_blank" >google</a>
<a href="#" class="socials-small pinterest-small" title="Pinterest" target="_blank" >pinterest</a>
</div>
</div>
</div>
<!-- post title -->
<div class="the-content span6">
<div>
<div class="images-slider-sc" style="width:100%;height:230px">
<ul class="slides">
<li>
<img style="max-width:100%" src="images/portfolios/23-539x230.jpg" alt="1" />
</li>
<li>
<img style="max-width:100%" src="images/0011-539x230.jpg" alt="2" />
</li>
<li>
<img style="max-width:100%" src="images/002-539x230.jpg" alt="3" />
</li>
<li>
<img style="max-width:100%" src="images/0031-539x230.jpg" alt="4" />
</li>
<li>
<img style="max-width:100%" src="images/004-539x230.jpg" alt="5" />
</li>
<li>
<img style="max-width:100%" src="images/005-539x230.jpg" alt="6" />
</li>
</ul>
</div>
<script type="text/javascript">
jQuery(document).ready(function($){
$('.images-slider-sc').flexslider({
animation: 'fade',
directionNav: true,
controlNav: false,
keyboardNav: false,
slideshowSpeed: 5000,
slideDirection: 'horizontal'
});
});
</script>
</div>
</div>
<!-- post content -->
<div class="the-content single group span9">
<p>Fusce nec accumsan eros. Aenean ac orci a magna vestibulum posuere quis nec nisi. Maecenas rutrum vehicula condimentum. Donec volutpat nisl ac mauris consectetur gravida.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec vel vulputate nibh. Pellentesque habitant <strong>morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas.</p>
<p>In facilisis ornare arcu, sodales facilisis neque blandit ac. Ut blandit ipsum quis arcu adipiscing <strong>sit amet semper</strong> sem feugiat. Nam sed dapibus arcu. Nullam eleifend molestie lectus. Nullam nec risus purus.</p>
<p>Fusce rutrum lectus id nibh ullamcorper aliquet. Pellentesque pretium mauris et augue fringilla non bibendum turpis iaculis. Donec sit amet nunc lorem. Sed fringilla vehicula est at pellentesque. Aenean imperdiet elementum arcu id facilisis. Mauris sed leo eros.</p>
<p>Duis nulla purus, malesuada in gravida sed, viverra at elit. Praesent nec purus sem, non imperdiet quam. Praesent tincidunt tortor eu libero scelerisque quis consequat justo elementum. Maecenas aliquet facilisis ipsum, commodo eleifend odio ultrices et. Maecenas arcu arcu, luctus a laoreet et, fermentum vel lectus. Cras consectetur ipsum venenatis ligula aliquam hendrerit. Suspendisse rhoncus hendrerit fermentum. Ut eget rhoncus purus.</p>
<p>Cras a tellus eu justo lobortis tristique et nec mauris. Etiam tincidunt tellus ut odio elementum adipiscing. Maecenas cursus dolor sit amet leo elementum ut semper velit lobortis. Pellentesque posue</p>
<p class="tags">
Tags:
<a href="tag-web-design.html" rel="tag">design</a>,
<a href="#" rel="tag">developing</a>,
<a href="#" rel="tag">web</a>,
<a href="#" rel="tag">wp</a>
</p>
</div>
</div>
</div>
</div>
<!-- START COMMENTS -->
<div id="comments">
<div id="respond">
<h3 id="reply-title">
Leave a <span>Reply</span>
<small>
<a rel="nofollow" id="cancel-comment-reply-link" href="#" style="display:none;">
Cancel reply
</a>
</small>
</h3>
<form action="#" method="post" id="commentform">
<div class="row">
<p class="comment-form-author span3">
<label for="author">Name</label>
<i class="icon-user"></i>
<input id="author" name="author" type="text" value="" size="30" aria-required='true' />
</p>
<p class="comment-form-email span3">
<label for="email">Email</label>
<i class="icon-envelope"></i>
<input id="email" name="email" type="text" value="" size="30" aria-required='true' />
</p>
<p class="comment-form-url span3">
<label for="url">Website</label>
<i class="icon-globe"></i>
<input id="url" name="url" type="text" value="" size="30" />
</p>
<p class="comment-form-comment span9">
<label for="comment">Your comment</label>
<i class="icon-pencil"></i>
<textarea id="comment" name="comment" cols="45" rows="8"></textarea>
</p>
<div class="clear"></div>
<div class="span9">
<p class="form-submit">
<input name="submit" type="submit" id="submit" value="Post Comment" />
<input type='hidden' name='comment_post_ID' value='31' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p>
</div>
</div>
</form>
</div>
<!-- #respond -->
</div>
<!-- END COMMENTS -->
</div>
<!-- END CONTENT -->
<!-- START SIDEBAR -->
<div id="sidebar-blog-sidebar" class="span3 sidebar group">
<div id="text-9" class="widget-first widget widget_text">
<h3>I’m social</h3>
<div class="textwidget">
Praesent ultricies iaculis erat iaculis feugiat. Sed suscipit tempor felis, sit amet aliquam nunc sollicitudin sed.
<br /><br />
<a href="# " class="socials-small facebook-small" title="Facebook" >facebook</a>
<a href="#" class="socials-small rss-small" title="Rss" >rss</a>
<a href="#" class="socials-small twitter-small" title="Twitter" >twitter</a>
<a href="#" class="socials-small google-small" title="Google" >google</a>
<a href="#" class="socials-small linkedin-small" title="Linkedin" >linkedin</a>
<a href="#" class="socials-small pinterest-small" title="Pinterest" >pinterest</a>
</div>
</div>
<div id="last-tweets-4" class="widget-2 widget-last widget last-tweets">
<h3>Last Tweets</h3>
<div class="list-tweets-4"></div>
<script type="text/javascript">
jQuery(function($){
$('#last-tweets-4 .list-tweets-4').tweetable({
listClass: 'tweets-widget-4',
username: 'samuelbetio',
time: true,
limit: 3,
replies: true
});
});
</script>
</div>
</div>
<!-- END SIDEBAR -->
</div>
</div>
</div>
<!-- END PRIMARY -->
<!-- START FOOTER -->
<div id="footer">
<div class="container">
<div class="row">
<div>
<div class="widget-first widget span3 recent-posts">
<h3>From my blog</h3>
<div class="recent-post">
<div class="post type-post status-publish format-gallery hentry category-web-design group">
<div class="date">
<span class="month">Oct</span>
<span class="day">8</span>
</div>
<div class="text">
<h3>
<a href="blog-detail.html" title="This is the title of the first article. Enjoy it.">
This is the title of the first article. Enjoy it.
</a>
</h3>
<p>by
<a href="author-celestino.html" title="Posts by celestino" rel="author">
celestino
</a> -
<a href="blog-detail.html#respond" title="Comment on This is the title of the first article. Enjoy it.">
0 comments
</a>
</p>
</div>
</div>
<div class="post type-post status-publish format-standard hentry category-elegant-vintage group">
<div class="date">
<span class="month">Sep</span>
<span class="day">12</span>
</div>
<div class="text">
<h3>
<a href="#" title="Nice & Clean. The best for your blog!">
Nice & Clean. The best for your blog!
</a>
</h3>
<p>by
<a href="#" title="Posts by celestino" rel="author">
celestino
</a> -
<a href="#" title="Comment on Nice & Clean. The best for your blog!">
0 comments
</a>
</p>
</div>
</div>
</div>
</div>
<div class="widget span3 widget_flickrRSS">
<h3>My Flickr</h3>
<a title="1P4B6832" href="http://www.flickr.com/photos/gordonkw41/8756237357/"><img alt="1P4B6832" src="http://farm9.staticflickr.com/8553/8756237357_32d559d451_s.jpg"></a>
<a title="DSC03253" href="http://www.flickr.com/photos/dovz/8756237387/"><img alt="DSC03253" src="http://farm8.staticflickr.com/7422/8756237387_1c3013358d_s.jpg"></a>
<a title="Tappas in Hondarribia" href="http://www.flickr.com/photos/francolupo/8756237389/"><img alt="Tappas in Hondarribia" src="http://farm3.staticflickr.com/2867/8756237389_faae5159f8_s.jpg"></a>
<a title="P1000624" href="http://www.flickr.com/photos/24690780@N02/8756237421/"><img alt="P1000624" src="http://farm9.staticflickr.com/8393/8756237421_43de542797_s.jpg"></a>
<a title="" href="http://www.flickr.com/photos/chioushibo/8756237483/"><img alt="" src="http://farm6.staticflickr.com/5454/8756237483_9a8805a3d4_s.jpg"></a>
<a title="P1010059" href="http://www.flickr.com/photos/uzagaku/8756237507/"><img alt="P1010059" src="http://farm4.staticflickr.com/3777/8756237507_e6e45db22a_s.jpg"></a>
<a title="Berlijn 2013" href="http://www.flickr.com/photos/carlawiddershoven/8756237559/"><img alt="Berlijn 2013" src="http://farm3.staticflickr.com/2809/8756237559_16964e44ea_s.jpg"></a>
<a title="20130518-_DSC9574" href="http://www.flickr.com/photos/fomalhaut/8757363666/"><img alt="20130518-_DSC9574" src="http://farm3.staticflickr.com/2857/8757363666_cce1ef7ea5_s.jpg"></a>
<a title="20130519_144623.jpg" href="http://www.flickr.com/photos/lewisdgriffin/8757363718/"><img alt="20130519_144623.jpg" src="http://farm4.staticflickr.com/3817/8757363718_64d870995a_s.jpg"></a>
<a title="baden-württenmberg und bayern 2013 1 284" href="http://www.flickr.com/photos/russianchild007/8757363726/"><img alt="baden-württenmberg und bayern 2013 1 284" src="http://farm4.staticflickr.com/3773/8757363726_e7c9ed61a7_s.jpg"></a>
</div>
<div class="widget span3 contact-info">
<h3>Get in touch</h3>
<div class="sidebar-nav">
<ul>
<li>
<i class="icon-map-marker" style="color:#000;font-size:12px;width:12px;height:12px"></i>
<span>Address:</span> Celestino, 115 Avenue - Italy
</li>
<li>
<i class="icon-phone" style="color:#000;font-size:12px;width:12px;height:12px"></i>
<span>Mobile:</span> +39 3471717174
</li>
<li>
<i class="icon-print" style="color:#000;font-size:12px;width:12px;height:12px"></i>
<span>Fax:</span> +39 0035 356 765
</li>
<li>
<i class="icon-envelope" style="color:#000;font-size:12px;width:12px;height:12px"></i>
<span>Email:</span> [email protected]
</li>
</ul>
</div>
</div>
<div id="last-tweets-2" class=" widget span3 last-tweets">
<h3>Last Tweets</h3>
<div class="list-tweets-2">
</div>
<script type="text/javascript">
jQuery(function($){
$('#last-tweets-2 .list-tweets-2').tweetable({
listClass: 'tweets-widget-2',
username: 'envato',
time: true,
limit: 2,
replies: true
});
});
</script>
</div>
</div>
</div>
</div>
</div>
<!-- END FOOTER -->
<!-- START COPYRIGHT -->
<div id="copyright">
<div class="container">
<div class="row">
<div class="left span6">
<p>Copyright © 2014<script>new Date().getFullYear()>2014&&document.write("-"+new Date().getFullYear());</script></p>
</div>
<div class="right span6">
<p>Powered by
<a href="https://samuelbetio.github.io/celestino/" title="Bloger in this website">
<strong>Samuel Rapana Betio</strong>
</a>
</p>
</div>
</div>
</div>
</div>
<!-- END COPYRIGHT -->
</div>
<!-- END WRAPPER -->
</div>
<!-- END BG SHADOW -->
<!-- START CUSTOM SCRIPT -->
<!-- END CUSTOM SCRIPT -->
<script type='text/javascript' src='js/jquery.colorbox-min.js'></script>
<script type='text/javascript' src='js/jquery.flexslider-min.js'></script>
<script type='text/javascript' src='js/jquery.tweetable.js'></script>
<script type='text/javascript' src='js/jquery.superfish.js'></script>
<script type='text/javascript' src='portfolios/filterable/js/jquery.filterable.js'></script>
<script type='text/javascript' src='js/jquery.tipsy.js'></script>
<script type='text/javascript' src='js/responsive.js'></script>
<script type='text/javascript' src='js/jquery.mobilemenu.js'></script>
<script type='text/javascript' src='js/shortcodes.js'></script>
<script type='text/javascript' src='js/jquery/jquery.masonry.min.js'></script>
<script type='text/javascript' src='js/jquery.custom.js'></script>
</body>
<!-- END BODY -->
</html>