-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog-single.html
1041 lines (735 loc) · 74.1 KB
/
blog-single.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js "><!-- InstanceBegin template="/Templates/layout.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="uCard - Responsive HTML5 vCard Template">
<meta name="keywords" content="vcard, html5, portfolio">
<meta name="author" content="Pixelwars">
<title>uCard</title>
<!-- FAV and TOUCH ICONS -->
<link rel="shortcut icon" href="images/ico/favicon.ico" tppabs="http://themes.pixelwars.org/ucard-html/images/ico/favicon.ico">
<link rel="apple-touch-icon" href="images/ico/apple-touch-icon.png" tppabs="http://themes.pixelwars.org/ucard-html/images/ico/apple-touch-icon.png">
<!-- FONTS -->
<link href="../../fonts.googleapis.com/css-family=Roboto-100,100italic,300,300italic,400,400italic,700,700italic.css" tppabs="https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic,700,700italic" rel='stylesheet' type='text/css'>
<!-- STYLES -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" tppabs="http://themes.pixelwars.org/ucard-html/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css" tppabs="http://themes.pixelwars.org/ucard-html/css/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css">
<link rel="stylesheet" type="text/css" href="css/fonts/fontello/css/fontello.css" tppabs="http://themes.pixelwars.org/ucard-html/css/fonts/fontello/css/fontello.css">
<link rel="stylesheet" type="text/css" href="js/nprogress/nprogress.css" tppabs="http://themes.pixelwars.org/ucard-html/js/nprogress/nprogress.css">
<link rel="stylesheet" type="text/css" href="js/jquery.magnific-popup/magnific-popup.css" tppabs="http://themes.pixelwars.org/ucard-html/js/jquery.magnific-popup/magnific-popup.css">
<link rel="stylesheet" type="text/css" href="css/align.css" tppabs="http://themes.pixelwars.org/ucard-html/css/align.css">
<link rel="stylesheet" type="text/css" href="css/layout.css" tppabs="http://themes.pixelwars.org/ucard-html/css/layout.css">
<link rel="stylesheet" type="text/css" href="css/shortcodes.css" tppabs="http://themes.pixelwars.org/ucard-html/css/shortcodes.css">
<link rel="stylesheet" type="text/css" href="css/main.css" tppabs="http://themes.pixelwars.org/ucard-html/css/main.css">
<link rel="stylesheet" type="text/css" href="css/768.css" tppabs="http://themes.pixelwars.org/ucard-html/css/768.css">
<!-- INITIAL SCRIPTS -->
<script src="js/jquery-1.11.3.min.js" tppabs="http://themes.pixelwars.org/ucard-html/js/jquery-1.11.3.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js" tppabs="http://themes.pixelwars.org/ucard-html/js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/modernizr.min.js" tppabs="http://themes.pixelwars.org/ucard-html/js/modernizr.min.js"></script>
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<!-- InstanceParam name="OnePageLayout" type="boolean" value="false" -->
<!-- InstanceParam name="Sidebar" type="boolean" value="true" -->
<!-- InstanceParam name="PageDefault" type="boolean" value="false" -->
<!-- InstanceParam name="PageFixed" type="boolean" value="false" -->
<!-- InstanceParam name="PageFull" type="boolean" value="false" -->
<!-- InstanceParam name="PagePlain" type="boolean" value="false" -->
<!-- InstanceParam name="ClassicMenu" type="boolean" value="false" -->
</head>
<body>
<!-- PAGE -->
<div id="page" class="hfeed site">
<!-- .site-main -->
<main id="main" class="site-main cd-main">
<!-- HEADER -->
<header id="masthead" class="header" role="banner">
<!-- header-wrap -->
<div class="header-wrap layout-full">
<img src="images/home/home.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/home/home.jpg" alt="profile-image">
<!-- image-logo -->
<!--<a class="header-title-link" href="index.html"><img src="../images/site/avatar.jpg" alt="avatar"></a>-->
<h1 class="site-title">Alex Zeis</h1>
<p class="site-description">I am <strong id="typist-element" data-typist="a blogger., a wordpress lover., an adventurer.">a writer.</strong></p>
<!-- header-social -->
<div class="header-bottom">
<!-- SOCIAL -->
<p>
<a class="social-link facebook" href="#"></a>
<a class="social-link twitter" href="#"></a>
<a class="social-link linkedin" href="#"></a>
<a class="social-link instagram" href="#"></a>
</p>
<!-- SOCIAL -->
</div>
<!-- header-social -->
<!-- NAV MENU -->
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<div class="nav-menu menu-with-icons">
<ul>
<!-- InstanceBeginEditable name="Menu-Content" -->
<li><a href="index.html" tppabs="http://themes.pixelwars.org/ucard-html/index.html"><i class="pe-7s-home"></i>Home</a></li>
<li><a href="blog.html" tppabs="http://themes.pixelwars.org/ucard-html/blog.html"><i class="pe-7s-back"></i>Back To Blog</a></li>
<li><a class="search-toggle"><i class="pe-7s-search"></i>Search</a></li>
<!-- InstanceEndEditable -->
</ul>
</div>
</nav>
<!-- NAV MENU -->
<!-- SEARCH -->
<div class="header-search">
<form role="search" method="get" id="search-form" action="#">
<input type="text" value="" name="s" id="search" placeholder="type and hit enter">
<input type="submit" id="search-submit" title="Search" value="→">
</form>
</div>
<!-- SEARCH -->
</div>
<!-- header-wrap -->
<a class="mouse-scroll" href="#">
<span class="mouse">
<span class="mouse-movement">
</span>
</span>
</a>
</header>
<!-- HEADER -->
<!-- site-middle -->
<div class="site-middle">
<div class="layout-medium">
<div id="primary" class="content-area with-sidebar">
<!-- site-content -->
<div id="content" class="site-content" role="main">
<!-- InstanceBeginEditable name="Page-Content" -->
<!-- .blog-single -->
<div class="blog-single page-layout">
<!-- .hentry -->
<article class="post type-post hentry">
<!-- .entry-header -->
<header class="entry-header">
<h1 class="entry-title">Runaway A Road Adventure</h1>
<!-- .entry-meta -->
<div class="entry-meta">
<span class="entry-date">
<time class="entry-date" datetime="2014-07-13T04:34:10+00:00">April 13, 2015</time>
</span>
<span class="comment-link">
<a href="blog-single.html#comments" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html#comments">7 Comments</a>
</span>
<span class="cat-links">
<a href="#" title="View all posts in Travel" rel="category tag">Travel</a>
</span>
<!--<span class="edit-link">
<a class="post-edit-link" href="#">Edit</a>
</span>-->
</div>
<!-- .entry-meta -->
</header>
<!-- .entry-header -->
<!-- .featured-image -->
<div class="featured-image">
<img src="images/blog/03.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/03.jpg" alt="blog-image">
</div>
<!-- .featured-image -->
<!-- .entry-content -->
<div class="entry-content">
<p>Good news, everyone! There's a report on TV with some very bad news! Then we'll go with that data file! Daylight and everything. If rubbin' frozen dirt in your crotch is wrong, hey I don't wanna be right.</p>
<p>Just once I'd like to eat dinner with a <a href="#" title="test link">celebrity</a> who isn't bound and gagged. I am Singing Wind, Chief of the Martians. No, she'll probably make me do it.</p>
<p>Say what? Who are you, my warranty?! Yes, except the Dave Matthews Band doesn't rock. Or a guy who burns down a bar for the insurance money! Leela's gonna kill me. Son, as your lawyer, I declare y'all are in a 12-piece bucket o' trouble. But I done struck you a deal: Five hours of community service cleanin' up that ol' mess you caused.</p>
<h2>Introduction</h2>
<p class="drop-cap">But, like most politicians, he promised more than he could deliver. Why not indeed! Daylight and everything. And then the battle's not so bad? Hello, little man. I will destroy you! No, I'm Santa Claus! Kif might! Man, I'm sore all over. I feel like I just went ten rounds with mighty Thor. I found what I need. And it's not friends, it's things. Then we'll go with that data file!</p>
<p>Calculon is gonna <em>kill</em> us and it's all everybody else's fault! We'll need to have a look inside you with this camera. I'm just glad my fat, ugly mama isn't alive to see this day. Now, now. Perfectly symmetrical violence never solved anything. Morbo can't understand his teleprompter because he forgot how you say that letter that's shaped like a man wearing a hat. You've killed me! Oh, you've killed me!</p>
<!-- blockquote -->
<blockquote>Don't watch the clock; do what it does. Keep Going.
<cite>Sam Levenson</cite>
</blockquote>
<!-- blockquote -->
<h3>Small Stuff</h3>
<p>So I really am important? How I feel when I'm drunk is correct? Then we'll go with that data file! Good news, everyone! There's a report on TV with some very bad news! And yet you haven't said what I told you to say! How can any of us trust you?</p>
<p>I had more, but you go ahead. But I know you in the future. I cleaned your poop. There's one way and only one way to determine if an animal is intelligent. Dissect its brain! Kif might! Hey, whatcha watching? Five hours? Aw, man! Couldn't you just get me the death penalty?</p>
<h4>UI DESIGN</h4>
<p>Lorem ipsum dolor sit amet, <a href="#" title="test link">test link</a> adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p>Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<h6>MUCH SMALLER STUFF</h6>
<p>Lorem ipsum dolor sit amet, <a href="#" title="test link">test link</a> adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p><img src="images/blog/01.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/01.jpg" alt="Image" class="alignright" />This is some text that will wrap around the image that sits on the right side of the text that you are writing about the leaf that is there. That is, if you are writing about leaves in the first place and you want to write about this specific leaf. Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<!-- image alignleft -->
<div class="wp-caption alignleft">
<img src="images/blog/01.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/01.jpg" alt="Image" />
<p class="wp-caption-text">just an image</p>
</div>
<!-- image alignleft -->
<p>This is some text that will wrap around the image that sits on the right side of the text that you are writing about the leaf that is there. That is, if you are writing about leaves in the first place and you want to write about this specific leaf. Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p><img src="images/blog/01.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/01.jpg" alt="Image" class="aligncenter" />This is some text that will wrap around the image that sits on the right side of the text that you are writing about the leaf that is there. That is, if you are writing about leaves in the first place and you want to write about this specific leaf. Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<h6>MUCH SMALLER STUFF</h6>
<p>Lorem ipsum dolor sit amet, <a href="#" title="test link">test link</a> adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<p>Lorem ipsum dolor sit amet, <em>emphasis</em> consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.</p>
<!-- .entry-meta -->
<footer class="entry-meta tags">
<a href="#" rel="tag">design</a> <a href="#" rel="tag">responsive</a> <a href="#" rel="tag">think</a>
</footer>
<!-- .entry-meta -->
</div>
<!-- .entry-content -->
<!-- .related-posts -->
<div class="related-posts">
<!-- section-title -->
<div class="section-title center">
<h2>
<i>Related Posts</i>
</h2>
</div>
<!-- section-title -->
<!-- LATEST POSTS -->
<div class="latest-posts media-grid">
<!-- post -->
<article class="media-cell">
<div class="media-box">
<img src="images/blog/02.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/02.jpg" alt="post-image">
<div class="mask"></div>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html"></a>
</div>
<header class="media-cell-desc">
<h3>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html">Inspirational Magazine Designs That You Should See</a>
</h3>
</header>
</article>
<!-- post -->
<!-- post -->
<article class="media-cell">
<div class="media-box">
<img src="images/blog/03.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/03.jpg" alt="post-image">
<div class="mask"></div>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html"></a>
</div>
<header class="media-cell-desc">
<h3>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html">Creating a New Typeface For Your Next Project</a>
</h3>
</header>
</article>
<!-- post -->
<!-- post -->
<article class="media-cell">
<div class="media-box">
<img src="images/blog/04.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/04.jpg" alt="post-image">
<div class="mask"></div>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html"></a>
</div>
<header class="media-cell-desc">
<h3>
<a href="blog-single.html" tppabs="http://themes.pixelwars.org/ucard-html/blog-single.html">Sketching a Monster Made by Stone From Scratch</a>
</h3>
</header>
</article>
<!-- post -->
</div>
<!-- LATEST POSTS -->
</div>
<!-- .related-posts -->
</article>
<!-- .hentry -->
<!-- .nav-single -->
<nav class="nav-single row">
<div class="nav-previous col-sm-6">
<h6>PREVIOUS POST</h6>
<h5><a href="#" rel="prev"><span class="meta-nav">←</span> Adding A Personal Touch To Your Web Design</a></h5>
</div>
<div class="nav-next col-sm-6">
<h6>NEXT POST</h6>
<h5><a href="#" rel="next">How To Build Long-Term Client Relationships <span class="meta-nav">→</span></a></h5>
</div>
</nav>
<!-- .nav-single -->
<!-- #comments -->
<div id="comments" class="comments-area">
<h3 class="comments-title">5 Comments</h3>
<!-- .commentlist -->
<ol class="commentlist">
<li class="comment even thread-even depth-1">
<!-- #comment-## -->
<article class="comment">
<!-- .comment-meta -->
<header class="comment-meta comment-author vcard">
<img alt="" src="images/site/testo-01.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/site/testo-01.jpg" class="avatar" height="75" width="75">
<cite class="fn"><a href="#" rel="external nofollow" class="url">Phillip Austin</a></cite>
<span class="comment-date">October 17, 2013 at 2:16 PM</span>
</header>
<!-- .comment-meta -->
<!-- .comment-content -->
<section class="comment-content comment">
<p>Hi, this is a very useful article. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</section>
<!-- .comment-content -->
<!-- .reply -->
<div class="reply">
<a class="comment-reply-link" href="#">Reply</a>
</div>
<!-- .reply -->
</article>
<!-- #comment-## -->
<!-- .comment depth-2 -->
<ol class="children">
<li class="comment odd alt depth-2 bypostauthor">
<!-- #comment-## -->
<article class="comment">
<!-- .comment-meta -->
<header class="comment-meta comment-author vcard">
<img alt="" src="images/site/author-1.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/site/author-1.jpg" class="avatar photo" height="75" width="75">
<cite class="fn"><a href="#" rel="external nofollow" class="url">Johnny Doe</a></cite>
<span class="comment-date">October 17, 2013 at 2:16 PM</span>
</header>
<!-- .comment-meta -->
<!-- .comment-content -->
<section class="comment-content comment">
<p>Thanks Phillip, glad you liked it. Nice to see you around.</p>
</section>
<!-- .comment-content -->
<!-- .reply -->
<div class="reply">
<a class="comment-reply-link" href="#">Reply</a>
</div>
<!-- .reply -->
</article>
<!-- #comment-## -->
<!-- .comment depth-3 -->
<ol class="children">
<li class="comment even depth-3">
<article class="comment">
<!-- .comment-meta -->
<header class="comment-meta comment-author vcard">
<img alt="" src="images/site/testo-02.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/site/testo-02.jpg" class="avatar photo" height="75" width="75">
<cite class="fn"><a href="#" rel="external nofollow" class="url">Gary Morgan</a></cite>
<span class="comment-date">October 17, 2013 at 2:16 PM</span>
</header>
<!-- .comment-meta -->
<!-- .comment-content -->
<section class="comment-content comment">
<p>Hey guys, c'mon this is old stuff!</p>
</section>
<!-- .comment-content -->
<!-- .reply -->
<div class="reply">
<a class="comment-reply-link" href="#">Reply</a>
</div>
<!-- .reply -->
</article>
<!-- #comment-## -->
</li>
</ol>
<!-- .comment depth-3 -->
</li>
</ol>
<!-- .comment depth-2 -->
</li>
<!-- .comment depth-1 -->
<!-- .comment depth-1 -->
<li class="comment odd alt thread-odd thread-alt depth-1">
<article id="comment-5" class="comment">
<!-- .comment-meta -->
<header class="comment-meta comment-author vcard">
<img alt="" src="images/site/testo-02.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/site/testo-02.jpg" class="avatar avatar-44 photo" height="75" width="75">
<cite class="fn"><a href="#" rel="external nofollow" class="url">Gary Morgan</a></cite>
<span class="comment-date">October 17, 2013 at 2:16 PM</span>
</header>
<!-- .comment-meta -->
<!-- .comment-content -->
<section class="comment-content comment">
<p>Hi, this is cool but i know something cooler than this, new iPad!</p>
</section>
<!-- .comment-content -->
<!-- .reply -->
<div class="reply">
<a class="comment-reply-link" href="#">Reply</a>
</div>
<!-- .reply -->
</article>
<!-- #comment-## -->
</li>
<!-- .comment depth-1 -->
</ol>
<!-- .commentlist -->
<!-- #respond -->
<div id="respond">
<h3 id="reply-title">Leave a comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="#" style="display:none;">Cancel reply</a></small></h3>
<!-- .commentform -->
<form action="#" method="post" id="commentform">
<p class="comment-notes">Your email address will not be published. Required fields are marked <span class="required">*</span></p>
<p class="comment-form-comment">
<label for="comment">Comment</label>
<textarea id="comment" name="comment" rows="8" aria-required="true"></textarea>
</p>
<p class="comment-form-author">
<label for="author">Name <span class="required">*</span></label>
<input id="author" name="author" type="text" size="30" aria-required="true">
</p>
<p class="comment-form-email">
<label for="email">Email <span class="required">*</span></label>
<input id="email" name="email" type="text" size="30" aria-required="true">
</p>
<p class="comment-form-url">
<label for="url">Website</label>
<input id="url" name="url" type="text" size="30">
</p>
<p class="form-allowed-tags">You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <code><a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> </code></p>
<p class="form-submit">
<input type="submit" class="button primary" value="Post Comment">
</p>
</form>
<!-- .commentform -->
</div>
<!-- #respond -->
</div>
<!-- #comments -->
</div>
<!-- .blog-single -->
<!-- InstanceEndEditable -->
</div>
<!-- site-content -->
</div>
<!-- primary -->
<!-- #secondary -->
<div id="secondary" class="widget-area sidebar" role="complementary">
<!-- widget : categories -->
<aside class="widget widget_categories">
<h3 class="widget-title">Categories</h3>
<ul>
<li class="cat-item"><a href="#" title="View all posts filed under Nature">Nature</a></li>
<li class="cat-item"><a href="#" title="View all posts filed under Life">Life</a></li>
<li class="cat-item"><a href="#" title="View all posts filed under Adventure">Adventure</a></li>
<li class="cat-item"><a href="#" title="View all posts filed under Freebies">Travel</a></li>
</ul>
</aside>
<!-- widget : categories -->
<!-- widget : MailChimp for WordPress Plugin -->
<aside class="widget widget_mc4wp_widget">
<h3 class="widget-title">Subscribe To Newsletter</h3>
<!-- .mc4wp-form -->
<div class="form mc4wp-form">
<form method="post">
<p>
<label>Subscribe your e-mail address and get to know about fresh stuff!</label>
</p>
<p>
<input type="email" name="EMAIL" placeholder="Your email address" required="required">
</p>
<p>
<input type="submit" value="Sign up">
</p>
</form>
</div>
<!-- .mc4wp-form -->
</aside>
<!-- widget : MailChimp for WordPress Plugin -->
<!-- widget : popular-posts -->
<!-- styles for plugin : https://wordpress.org/plugins/top-10 -->
<aside class="widget widget_widget_tptn_pop">
<h3 class="widget-title">Trending Posts</h3>
<div class="tptn_posts tptn_posts_widget">
<ul>
<li>
<a href="#" class="tptn_link">
<img src="images/blog/p2.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/p2.jpg" alt="post-image" class="tptn_thumb">
</a>
<span class="tptn_after_thumb">
<a href="#" class="tptn_link"><span class="tptn_title">Summer Vibes Flowing</span></a>
<!--<span class="tptn_author"> by <a href="#">Johnny Doe</a></span>-->
<span class="tptn_date"> September 3, 2014</span>
</span>
</li>
<li>
<a href="#" class="tptn_link">
<img src="images/blog/p1.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/p1.jpg" alt="post-image" class="tptn_thumb">
</a>
<span class="tptn_after_thumb">
<a href="#" class="tptn_link"><span class="tptn_title">Autmun 2015 Lookbook</span></a>
<!--<span class="tptn_author"> by <a href="#">Johnny Doe</a></span>-->
<span class="tptn_date"> September 3, 2014</span>
</span>
</li>
<li>
<a href="#" class="tptn_link">
<img src="images/blog/p3.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/p3.jpg" alt="post-image" class="tptn_thumb">
</a>
<span class="tptn_after_thumb">
<!--<span class="tptn_author"> by <a href="#">Johnny Doe</a></span>-->
<a href="#" class="tptn_link"><span class="tptn_title">Good Vibes Everywhere</span></a>
<span class="tptn_date"> September 3, 2014</span>
</span>
</li>
<li>
<a href="#" class="tptn_link">
<img src="images/blog/p4.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/p4.jpg" alt="post-image" class="tptn_thumb">
</a>
<span class="tptn_after_thumb">
<a href="#" class="tptn_link"><span class="tptn_title">Dive Into The Sea Life</span></a>
<!--<span class="tptn_author"> by <a href="#">Johnny Doe</a></span>-->
<span class="tptn_date"> September 3, 2014</span>
</span>
</li>
<!--<li>
<span class="tptn_after_thumb">
<a href="#" class="tptn_link"><span class="tptn_title">Keep it Simple Dummy!</span></a>
<span class="tptn_author"> by <a href="#">Johnny Doe</a></span>
<span class="tptn_date"> September 3, 2014</span>
</span>
</li>-->
</ul>
</div>
</aside>
<!-- widget : popular-posts -->
<!-- widget : text -->
<aside class="widget widget_text">
<!--<h3 class="widget-title">Advertisement</h3>-->
<div class="textwidget">
<a href="#"><img src="images/blog/banner.jpg" tppabs="http://themes.pixelwars.org/ucard-html/images/blog/banner.jpg" alt="banner"></a>
</div>
</aside>
<!-- widget : text -->
<!-- widget : recent-posts -->
<aside class="widget widget_recent_entries">
<h3 class="widget-title">Recent Posts</h3>
<ul>
<li><a href="#">Summer Vibes Flowing</a></li>
<li><a href="#">Autmn 2015 Lookbook</a></li>
<li><a href="#">Good Vibes</a></li>
<li><a href="#">Self Employed Lifestyle</a></li>
</ul>
</aside>
<!-- widget : recent-posts -->
<!-- widget : text -->
<!--<aside class="widget widget_text">
<h3 class="widget-title">Twitter</h3>
<a class="twitter-timeline" href="https://twitter.com/ahmetsali" data-widget-id="535243602809856001">Tweets by @ahmetsali</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</aside>-->
<!-- widget : text -->
<!-- widget : text -->
<aside class="widget widget_text">
<h3 class="widget-title">Facebook</h3>
<!-- below code generated by : https://developers.facebook.com/docs/plugins/page-plugin -->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "../../connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5"/*tpa=http://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5*/;
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-page" data-href="javascript:if(confirm(%27https://www.facebook.com/vsco \n\nThis file was not retrieved by Teleport Pro, because it is addressed using an unsupported protocol (e.g., gopher). \n\nDo you want to open it from the server?%27))window.location=%27https://www.facebook.com/vsco%27" tppabs="https://www.facebook.com/vsco" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/vsco"><a href="javascript:if(confirm(%27https://www.facebook.com/vsco \n\nThis file was not retrieved by Teleport Pro, because it is addressed using an unsupported protocol (e.g., gopher). \n\nDo you want to open it from the server?%27))window.location=%27https://www.facebook.com/vsco%27" tppabs="https://www.facebook.com/vsco">VSCO</a></blockquote></div></div>
</aside>
<!-- widget : text -->
<!-- widget : search -->
<!--<aside class="widget widget_search">
<h3 class="widget-title">Search</h3>
<form role="search" method="get" class="search-form" action="#">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" title="Enter Keyword">
</label>
<input type="submit" class="search-submit" value="Search">
</form>
</aside>-->
<!-- widget : search -->
<!-- widget : tag_cloud -->
<!--<aside class="widget widget_tag_cloud">
<h3 class="widget-title">Tags</h3>
<div class="tagcloud"> <a href="#" title="1 topic">adaptive</a> <a href="#" title="2 topics">design</a> <a href="#" title="1 topic">html</a> <a href="#" title="2 topics">responsive</a> <a href="#" title="2 topics">think</a> <a href="#" title="1 topic">web design</a> <a href="#" title="1 topic">css</a> <a href="#" title="2 topics">animations</a> <a href="#" title="1 topic">layout</a> <a href="#" title="2 topics">mobile</a> <a href="#" title="2 topics">think</a> <a href="#" title="1 topic">typography</a> </div>
</aside>-->
<!-- widget : tag_cloud -->
<!-- widget : recent_comments -->
<!--<aside class="widget widget_recent_comments">
<h3 class="widget-title">Recent Comments</h3>
<ul id="recentcomments">
<li class="recentcomments"><a href="#" rel="external nofollow" class="url">Albert Einstein</a> on <a href="#">Adaptive Layouts</a></li>
<li class="recentcomments"><a href="#" rel="external nofollow" class="url">Thomas Edison</a> on <a href="#">I invented the bulb!</a></li>
<li class="recentcomments"><a href="#" rel="external nofollow" class="url">Isaac Newton</a> on <a href="#">Gravity Theory</a></li>
</ul>
</aside>-->
<!-- widget : recent_comments -->
<!-- widget : archive -->
<!--<aside class="widget widget_archive">
<h3 class="widget-title">Archives</h3>
<ul>
<li><a href="#" title="July 2012">July 2014</a></li>
<li><a href="#" title="June 2012">June 2014</a></li>
<li><a href="#" title="May 2012">May 2014</a></li>
<li><a href="#" title="April 2012">April 2014</a></li>
</ul>
</aside>-->
<!-- widget : archive -->
<!-- widget : meta -->
<!--<aside class="widget widget_meta">
<h3 class="widget-title">Meta</h3>
<ul>
<li><a href="#">Site Admin</a></li>
<li><a href="#">Log out</a></li>
<li><a href="#" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="#" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
</ul>
</aside>-->
<!-- widget : meta -->
<!-- widget : calendar -->
<!--<aside class="widget widget_calendar">
<h3 class="widget-title">Calendar</h3>
<div id="calendar_wrap">
<table id="wp-calendar">
<caption>
July 2014
</caption>
<thead>
<tr>
<th scope="col" title="Monday">M</th>
<th scope="col" title="Tuesday">T</th>
<th scope="col" title="Wednesday">W</th>
<th scope="col" title="Thursday">T</th>
<th scope="col" title="Friday">F</th>
<th scope="col" title="Saturday">S</th>
<th scope="col" title="Sunday">S</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="3" id="prev"><a href="#" title="View posts for June 2015">« Jun</a></td>
<td class="pad"> </td>
<td colspan="3" id="next" class="pad"> </td>
</tr>
</tfoot>
<tbody>
<tr>
<td colspan="1" class="pad"> </td>
<td>1</td>
<td><a href="#" title="test">2</a></td>
<td>3</td>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td>13</td>
</tr>
<tr>
<td>14</td>
<td id="today">15</td>
<td>16</td>
<td>17</td>
<td>18</td>
<td>19</td>
<td>20</td>
</tr>
<tr>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
<td>27</td>
</tr>
<tr>
<td>28</td>
<td>29</td>
<td>30</td>
<td>31</td>
<td class="pad" colspan="3"> </td>
</tr>
</tbody>
</table>
</div>
</aside>-->
<!-- widget : calendar -->
<!-- widget : pages -->
<!--<aside class="widget widget_pages">
<h3 class="widget-title">Pages</h3>
<ul>
<li class="page_item page_item_has_children"><a href="#">About Me</a>
<ul class="children">
<li class="page_item"><a href="#">Clearing Floats</a></li>
<li class="page_item"><a href="#">Page Image Alignment</a></li>
<li class="page_item"><a href="#">Page Markup And Formatting</a></li>
<li class="page_item"><a href="#">Page with comments</a></li>
<li class="page_item"><a href="#">Page with comments disabled</a></li>
</ul>
</li>
<li class="page_item"><a href="#">About Me</a></li>
<li class="page_item current_page_item"><a href="#">Gallery</a></li>
<li class="page_item"><a href="#">Contact</a></li>
</ul>
</aside>-->
<!-- widget : pages -->
<!-- widget : rss -->
<!--<aside class="widget widget_rss">
<h3 class="widget-title"><a class="rsswidget" href="#">RSS Feed</a></h3>
<ul>
<li><a class="rsswidget" href="#">Thinking About Good Design</a> <span class="rss-date">May 2, 2012</span>
<div class="rssSummary">Vivamus et aliquet ipsum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam erat volutpat. Curabitur vitae ornare erat. Fusce mollis dolor sed justo iaculis feugiat. Suspendisse potenti. Aenean rutrum ligula nec eros gravida et cursus sapien mollis. In laoreet tempus purus sed dictum. Cras pellentesque interdum u […]</div>
<cite>Albert Einstein</cite> </li>
<li><a class="rsswidget" href="#">A Deep Brief on Character Design</a> <span class="rss-date">May 2, 2012</span>
<div class="rssSummary">Vivamus et aliquet ipsum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam erat volutpat. Curabitur vitae ornare erat. Fusce mollis dolor sed justo iaculis feugiat. Suspendisse potenti. Aenean rutrum ligula nec eros gravida et cursus sapien mollis. In laoreet tempus purus sed dictum. Cras pellentesque interdum u […]</div>
<cite>Albert Einstein</cite> </li>
</ul>
</aside>-->
<!-- widget : rss -->
</div>
<!-- #secondary -->
</div>
<!-- layout -->
</div>
<!-- site-middle -->
<!-- .site-footer -->
<footer id="colophon" class="site-footer" role="contentinfo">
<!-- .site-info -->
<div class="site-info">
<div class="textwidget">
<a href="javascript:if(confirm(%27https://wordpress.org/ \n\nThis file was not retrieved by Teleport Pro, because it is addressed using an unsupported protocol (e.g., gopher). \n\nDo you want to open it from the server?%27))window.location=%27https://wordpress.org/%27" tppabs="https://wordpress.org/">Copyright © 2016 by Pixelwars</a>
</div>
</div>
<!-- .site-info -->
</footer>
<!-- .site-footer -->
</main>
<!-- .site-main -->
<!-- .cd-folding-panel -->
<div class="cd-folding-panel">
<div class="fold-left"></div>
<div class="fold-right"></div>
<div class="cd-fold-content">
<!-- content will be loaded using javascript -->
</div>
<a class="cd-close" href="#"></a>
</div>
<!-- .cd-folding-panel -->
<!-- ALERT : used for contact form mail delivery alert -->
<div class="site-alert animated"></div>