-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstpost.html
1547 lines (1547 loc) · 63.7 KB
/
firstpost.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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Roboto+Slab:wght@700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/swiper-bundle.min.css" />
<link rel="stylesheet" href="css/jquery.fancybox.min.css" />
<link rel="stylesheet" href="css/sweetalert2.min.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Universal - online magazine</title>
</head>
<body>
<header class="header">
<div class="header-top">
<div class="container">
<div class="header__top-row">
<div class="header__top-left">
<div class="header__burger burger">
<div class="burger__icon">
<span class="burger__line"></span>
<span class="burger__line"></span>
<span class="burger__line"></span>
</div>
<!-- /.burger__icon -->
<span class="burger__title">Sections</span>
</div>
<!-- /.burger -->
<div class="menu-desktop">
<div class="container">
<ul class="header__menu header-menu header__menu-desktop">
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">News</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Opinion</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Science</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Life</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Travel</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Moneys</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Art & Design</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Sports</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">People</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Health</a>
</li>
<li class="header-menu__item header-menu__item--desktop">
<a href="#" class="header-menu__link">Education</a>
</li>
</ul>
</div>
<!-- /.container -->
</div>
<!-- /.menu-desktop -->
<form action="#" class="header__search search">
<svg width="18" height="18" class="search__icon">
<use xlink:href="img/icons.svg#search-icon"></use>
</svg>
<input type="text" class="search__input" placeholder="Search" />
</form>
</div>
<!-- /.header__top-left -->
<div class="header__top-right">
<a href="#" class="header__offer offer">
<img
src="img/sub-now.jpg"
alt="offer image"
class="offer__img"
/>
<div class="offer__text">
<h4 class="offer__title">Subscribe Now</h4>
<span class="offer__subtitle">3 month for $19</span>
</div>
<!-- /.offer__text -->
</a>
<!-- /.header__offer -->
<a href="#" class="header-user header__user">
<svg width="16" height="18">
<use xlink:href="img/icons.svg#user-icon"></use>
</svg>
<span class="header-user__login">Sign In</span>
</a>
</div>
<!-- /.header__top-right -->
</div>
<!-- /.header__top-row -->
</div>
<!-- /.container -->
</div>
<!-- /.header-top -->
<div class="container">
<div class="header__main-row">
<img
src="img/sol.png"
alt="image: Statue of Liberty "
class="header__image"
/>
<span class="header__text header__text--left"
>Boston and New York Bear Brunt</span
>
<a href="index.html" class="header__logo logo">
<img src="img/logo.svg" alt="Logo: universal" class="logo__img" />
</a>
<span class="header__text header__date header__text--right"
>Monday, January 1, 2018</span
>
<svg width="18" height="18" class="header__weather">
<use xlink:href="img/icons.svg#weather-icon"></use>
</svg>
<span class="header__text header__text--right">- 23 °C</span>
</div>
<!-- /.header__main-row -->
</div>
<!-- /.container -->
<div class="menu-wrapper">
<div class="container">
<ul class="header__menu header-menu">
<li class="header-menu__item">
<a href="#" class="header-menu__link">News</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Opinion</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Science</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Life</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Travel</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Moneys</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Art & Design</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Sports</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">People</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Health</a>
</li>
<li class="header-menu__item">
<a href="#" class="header-menu__link">Education</a>
</li>
</ul>
</div>
<!-- /.container -->
</div>
<!-- /.menu-wrapper -->
</header>
<section class="hero-post">
<picture>
<source
media="(min-width: 768px)"
sizes="100vw"
class="hero-post__image lazyload"
type="image/webp"
data-srcset="img/personal/main.webp"
srcset="img/personal/main.webp 1366w"
/>
<source
media="(min-width: 320px)"
sizes="100vw"
class="hero-post__image lazyload"
type="image/webp"
data-srcset="img/personal/main-500.webp"
srcset="img/personal/main-500.webp 1158w"
/>
<source
media="(min-width: 768px)"
sizes="100vw"
class="hero-post__image lazyload"
type="image/png"
data-srcset="img/personal/main.png"
srcset="img/personal/main.png 1366w"
/>
<source
media="(min-width: 320px)"
sizes="100vw"
class="hero-post__image lazyload"
type="image/png"
data-srcset="img/personal/main-500.png"
srcset="img/personal/main-500.png 1158w"
/>
<img
loading="lazy"
sizes="(min-width: 320px) 100vw"
class="hero-post__image lazyload"
data-src="img/personal/main.png"
data-srcset="img/personal/main-500.png"
src="img/personal/main.png"
srcset="img/personal/main-500.png 1158w"
alt="bg-image"
/>
</picture>
<div class="hero-post__gradient"></div>
<!-- /.hero-post__gradient -->
<div class="post-container">
<div class="hero-post__wrapper">
<label class="hero-post__bookmark">
<input type="checkbox" class="hero-post__checkbox" />
<svg width="22" height="28" class="hero-post__bookmark-icon">
<use xlink:href="img/icons.svg#post-bookmark"></use>
</svg>
</label>
<div class="hero-post__row">
<span class="hero-post__tag tag tag--blue">Destinations</span>
<div class="hero-post__navigation">
<a
href="index.html"
class="hero-post__link hero-post__link--home"
>
<svg width="18" height="17" class="hero-post__icon">
<use xlink:href="img/icons.svg#home"></use>
</svg>
<span class="hero-post__text">Back to main</span>
</a>
<a href="#" class="hero-post__link">
<svg width="15" height="7" class="hero-post__icon">
<use xlink:href="img/icons.svg#arrow-prev"></use>
</svg>
<span class="hero-post__text">Prev</span>
</a>
<a href="secondpost.html" class="hero-post__link">
<span class="hero-post__text">Next</span>
<svg
width="15"
height="7"
class="hero-post__icon hero-post__icon--last"
>
<use xlink:href="img/icons.svg#arrow-next"></use>
</svg>
</a>
</div>
<!-- /.hero-post__navigation -->
</div>
<!-- /.hero-post__row -->
<h1 class="hero-post__title">
Five Travel Stories From 2017 to Help You Escape Into the World
</h1>
<h3 class="hero-post__subtitle">
From the coastlines of Europe to remote Kodiak Island, Alaska, here
are five of our favorite stories to help you explore the world
</h3>
<div class="hero-post__footer">
<svg
width="15"
height="15"
class="hero-post__icon hero-post__icon--clock"
>
<use xlink:href="img/icons.svg#clock"></use>
</svg>
<span class="hero-post__subtext">Aug 6, 10:23 pm</span>
<a href="#" class="hero-post__link like like--active">
<svg
width="13"
height="13"
class="hero-post__icon hero-post__icon--white like__icon"
>
<use xlink:href="img/icons.svg#likes-icon"></use>
</svg>
<span
class="hero-post__subtext hero-post__subtext--last like__count"
>830</span
>
</a>
<a href="#comments" class="smoothlink hero-post__link">
<svg
width="15"
height="14"
class="hero-post__icon hero-post__icon--comments hero-post__icon--white"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="hero-post__subtext hero-post__subtext--last"
>19</span
>
</a>
<a href="#" class="hero-post__button">
<svg
width="18"
height="12"
class="hero-post__icon hero-post__icon--share"
>
<use xlink:href="img/icons.svg#share"></use>
</svg>
<span class="hero-post__text">142 shares</span>
</a>
</div>
<!-- /.hero-post__footer -->
</div>
<!-- /.hero-post__wrapper -->
</div>
<!-- /.post-container -->
</section>
<section class="article">
<div class="post-container">
<div class="article__wrapper">
<div class="article__author-card author-card">
<img
src="img/personal/author.png"
alt="Mira Anderson"
class="author-card__avatar"
/>
<h3 class="author-card__name">Mira Anderson</h3>
<span class="author-card__status">Traveler & Photographer</span>
<span class="author-card__count">82 articles</span>
<div class="author-card__social">
<a
href="https://www.facebook.com/"
class="author-card__link"
target="_blank"
>
<svg width="10" height="18" class="author-card__icon">
<use xlink:href="img/icons.svg#facebook"></use>
</svg>
</a>
<a
href="https://twitter.com/"
class="author-card__link"
target="_blank"
>
<svg width="18" height="16" class="author-card__icon">
<use xlink:href="img/icons.svg#twitter"></use>
</svg>
</a>
<a
href="https://www.instagram.com/"
class="author-card__link"
target="_blank"
>
<svg width="18" height="18" class="author-card__icon">
<use xlink:href="img/icons.svg#instagram"></use>
</svg>
</a>
</div>
<!-- /.author-card__social -->
<a href="#" class="author-card__footer">Follow on Universal</a>
</div>
<!-- /.author-card -->
<div class="article__wrapper-text">
<span class="article__letter">M</span>
<p class="article__text article__text--last">
any geographers are trained in toponymy and cartology, this
is not their main preoccupation. Geographers study the space
and the temporal database distribution of phenomena, processes,
and features as well as the interaction of humans and their
environment. Because space and place affect a variety of topics,
such as economics, health, climate, plants and animals, geography
is highly interdisciplinary. The interdisciplinary nature of the
geographical approach depends on an attentiveness
to the relationship between physical and human phenomena and its
spatial patterns.
</p>
</div>
<!-- /.article__wrapper-text -->
<h2 class="article__title-text">Integrated Geography</h2>
<p class="article__text">
Geography as a discipline can be split broadly into two main
subsidiary fields: human geography and physical geography. The
former largely focuses on the built environment and how humans
create, view, manage, and influence space. The latter examines the
natural environment, and how organisms, climate, soil, water, and
landforms produce and interact.
</p>
<p class="article__text">
The difference between these approaches led to a third field,
environmental geography, which combines physical and human geography
and concerns the interactions between the environment and humans.
</p>
<p class="article__text">
The accompanying text mentions seven outer regions beyond the
encircling ocean. The descriptions of five of them have survived. In
contrast to the Imago Mundi, an earlier Babylonian world map dating
back to the 9th century BC depicted Babylon as being further north
from the center of the world, though it is not certain what that
center was supposed to represent.
</p>
</div>
<!-- /.article__wrapper -->
</div>
<!-- /.post-container -->
<div class="container">
<div class="article-swiper">
<div class="article-swiper__container swiper-container">
<div class="article-swiper__wrapper swiper-wrapper">
<div class="article-swiper__slide swiper-slide">
<picture>
<source
class="article-swiper__image lazyload"
type="image/webp"
data-srcset="img/personal/slide-1.webp"
srcset="img/personal/slide-1.webp"
/>
<source
class="article-swiper__image lazyload"
type="image/jpeg"
data-srcset="img/personal/slide-1.png"
srcset="img/personal/slide-1.png"
/>
<img
loading="lazy"
class="article-swiper__image lazyload"
data-src="img/personal/slide-1.png"
src="img/personal/slide-1.png"
alt="slide-1"
/>
</picture>
</div>
<!-- /.article-swiper__slide -->
<div class="article-swiper__slide swiper-slide">
<picture>
<source
class="article-swiper__image lazyload"
type="image/webp"
data-srcset="img/personal/slide-2.webp"
srcset="img/personal/slide-2.webp"
/>
<source
class="article-swiper__image lazyload"
type="image/jpeg"
data-srcset="img/personal/slide-2.jpg"
srcset="img/personal/slide-2.jpg"
/>
<img
loading="lazy"
class="article-swiper__image lazyload"
data-src="img/personal/slide-2.jpg"
src="img/personal/slide-2.jpg"
alt="slide-2"
/>
</picture>
</div>
<!-- /.article-swiper__slide -->
<div class="article-swiper__slide swiper-slide">
<picture>
<source
class="article-swiper__image lazyload"
type="image/webp"
data-srcset="img/personal/slide-3.webp"
srcset="img/personal/slide-3.webp"
/>
<source
class="article-swiper__image lazyload"
type="image/jpeg"
data-srcset="img/personal/slide-3.jpg"
srcset="img/personal/slide-3.jpg"
/>
<img
loading="lazy"
class="article-swiper__image lazyload"
data-src="img/personal/slide-3.jpg"
src="img/personal/slide-3.jpg"
alt="slide-3"
/>
</picture>
</div>
<!-- /.article-swiper__slide -->
</div>
<!-- /.article-swiper__container -->
<button class="article-swiper__button article-swiper__button--prev">
<svg width="60" height="60" class="article-swiper__icon">
<use xlink:href="img/icons.svg#button-prev"></use>
</svg>
</button>
<button class="article-swiper__button article-swiper__button--next">
<svg width="60" height="60" class="article-swiper__icon">
<use xlink:href="img/icons.svg#button-next"></use>
</svg>
</button>
</div>
<!-- /.article-swiper__wrapper -->
<div class="article-swiper__row">
<span class="article-swiper__text"
>Geostatistics deal with quantitative data analysis, specifically
the application of statistical methodology</span
>
<a href="#" class="article-swiper__user">
<img
src="img/personal/slide-author-1.png"
alt="avatar: Benjamin Turner"
class="article-swiper__avatar"
/>
<div class="article-swiper__info">
<span class="article-swiper__author">Andrew Washington</span>
<span class="article-swiper__status">Photographer</span>
</div>
<!-- /.article-swiper__info -->
</a>
</div>
<!-- /.article-swiper__row -->
</div>
<!-- /.article__swiper -->
</div>
<!-- /.container -->
<div class="post-container">
<div class="article__wrapper">
<p class="article__text">
The oldest known world maps date back to ancient Babylon from the
9th century BC. The best known Babylonian world map, however, is the
Imago Mundi of 600 BC. The map as reconstructed by Eckhard Unger
shows Babylon on the Euphrates, surrounded by a circular landmass
showing Assyria, Urartu and several cities, in turn surrounded by a
"bitter river" (Oceanus), with seven islands arranged around it so
as to form a seven-pointed star.
</p>
<div class="article__material material">
<h3 class="material__title">Material on Theme</h3>
<picture>
<source
class="material__image lazyload"
type="image/webp"
data-srcset="img/personal/material-theme.webp"
srcset="img/personal/material-theme.webp"
/>
<source
class="material__image lazyload"
type="image/jpeg"
data-srcset="img/personal/material-theme.png"
srcset="img/personal/material-theme.png"
/>
<img
loading="lazy"
class="material__image lazyload"
data-src="img/personal/material-theme.png"
src="img/personal/material-theme.png"
alt="material on Theme"
/>
</picture>
<span class="material__subtitle"
>Application of Postcolonial Theory in the Middle East</span
>
<p class="material__text">
In the essays "Overstating the Arab State", by Nazih Ayubi, and
"Is Jordan Palestine?", by Raphael Israel, the authors deal with
the psychologically fragmented postcolonial identity.
</p>
<div class="material__info">
<svg width="15" height="11" class="material__icon">
<use xlink:href="img/icons.svg#eye"></use>
</svg>
<span class="material__subtext subtext">1,623</span>
<svg width="15" height="14" class="material__icon">
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="subtext">102</span>
</div>
<!-- /.material__info -->
</div>
<!-- /.article__material material -->
<p class="article__text">
The accompanying text mentions seven outer regions beyond the
encircling ocean. The descriptions of five of them have survived. In
contrast to the Imago Mundi, an earlier Babylonian world map dating
back to the 9th century BC depicted Babylon as being further north
from the center of the world, though it is not certain what that
center was supposed to represent.
</p>
<p class="article__text">
The ideas of Anaximander: considered by later Greek writers to be
the true founder of geography, come to us through fragments quoted
by his successors. Anaximander is credited with the invention of the
gnomon, the simple, yet efficient Greek instrument that allowed the
early measurement of latitude. Thales is also credited with the
prediction of eclipses. The foundations of geography can be traced
to the ancient cultures, such as the ancient, medieval, and early
modern Chinese.
</p>
</div>
<!-- /.article__wrapper -->
<div class="article-quote">
<h2 class="article-quote__title">
Names of places... are not geography... know by heart a whole
gazetteer full of them would not, in itself, constitute anyone
a geographer. Geography has higher aims than this: it seeks to
classify phenomena.
</h2>
<a href="#" class="article-quote__user">
<img
src="img/personal/quote-author.png"
alt="avatar: William Peterson"
class="article-quote__avatar"
/>
<div class="article-quote__info">
<span class="article-quote__author">William Peterson</span>
<span class="article-quote__status">Travel Agent</span>
</div>
<!-- /.article-quote__info -->
</a>
</div>
<!-- /.article-quote -->
<div class="article__wrapper">
<p class="article__text">
The Greeks, who were the first to explore geography as both art and
science, achieved this through Cartography, Philosophy, and
Literature, or through Mathematics. There is some debate about who
was the first person to assert that the Earth is spherical in shape,
with the credit going either to Parmenides or Pythagoras. Anaxagoras
was able to demonstrate that the profile of the Earth was circular
by explaining eclipses. However, he still believed that the Earth
was a flat disk, as did many of his contemporaries.
</p>
<p class="article__text">
The first rigorous system of latitude and longitude lines is
credited to Hipparchus. He employed a sexagesimal system that was
derived from Babylonian mathematics.
</p>
<div class="article__tags">
<a href="#" class="article__tag">Travel</a>
<a href="#" class="article__tag">Destinations</a>
<a href="#" class="article__tag">Nature</a>
<a href="#" class="article__tag">World</a>
<a href="#" class="article__tag">Alaska</a>
</div>
<!-- /.article__tags -->
<div class="article__share article-share">
<h3 class="article-share__title">Show Your Support</h3>
<a href="#" class="article-share__item article-share__item--red">
<div class="article-share__icon-container">
<svg width="18" height="16" class="article-share__icon">
<use xlink:href="img/icons.svg#heart"></use>
</svg>
</div>
<!-- /.article-share__icon-container -->
<span class="article-share__text">Like it</span>
<span class="article-share__count article-share__count--red"
>42</span
>
</a>
<a href="#" class="article-share__item article-share__item--violet">
<div class="article-share__icon-container">
<svg
width="10"
height="18"
class="article-share__icon article-share__icon--white"
>
<use xlink:href="img/icons.svg#facebook"></use>
</svg>
</div>
<!-- /.article-share__icon-container -->
<span class="article-share__text">Share</span>
<span class="article-share__count article-share__count--violet"
>80</span
>
</a>
<a href="#" class="article-share__item article-share__item--blue">
<div class="article-share__icon-container">
<svg
width="18"
height="16"
class="article-share__icon article-share__icon--white"
>
<use xlink:href="img/icons.svg#twitter"></use>
</svg>
</div>
<!-- /.article-share__icon-container -->
<span class="article-share__text">Tweet</span>
<span class="article-share__count article-share__count--blue"
>33</span
>
</a>
<a href="#" class="article-share__item article-share__item--dots">
<div class="article-share__icon-container">
<svg width="20" height="4" class="article-share__icon">
<use xlink:href="img/icons.svg#dots"></use>
</svg>
</div>
<!-- /.article-share__icon-container -->
</a>
</div>
<!-- /.article__share -->
</div>
<!-- /.article__wrapper -->
</div>
<!-- /.post-container -->
</section>
<section class="other-post">
<div class="container">
<div class="other-post__wrapper">
<div class="other-post__card">
<a href="secondpost.html" class="other-post__link">
<picture>
<source
class="other-post__image lazyload"
type="image/webp"
data-srcset="img/personal/other-post-1.webp"
srcset="img/personal/other-post-1.webp"
/>
<source
class="other-post__image lazyload"
type="image/jpeg"
data-srcset="img/personal/other-post-1.png"
srcset="img/personal/other-post-1.png"
/>
<img
loading="lazy"
class="other-post__image lazyload"
data-src="img/personal/other-post-1.png"
src="img/personal/other-post-1.png"
alt="other post image"
/>
</picture>
</a>
<h3 class="other-post__title">
<a href="secondpost.html" class="other-post__link">
An Evangelist of Singaporean Food Has a New Pulpit
</a>
</h3>
<div class="other-post__info">
<svg width="15" height="11" class="other-post__icon">
<use xlink:href="img/icons.svg#eye"></use>
</svg>
<span class="other-post__subtext subtext">1,904</span>
<svg
width="15"
height="14"
class="other-post__icon other-post__icon--comment"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="subtext">82</span>
</div>
<!-- /.other-post__info -->
</div>
<!-- /.other-post__card -->
<div class="other-post__card">
<a href="secondpost.html" class="other-post__link">
<picture>
<source
class="other-post__image lazyload"
type="image/webp"
data-srcset="img/personal/other-post-2.webp"
srcset="img/personal/other-post-2.webp"
/>
<source
class="other-post__image lazyload"
type="image/jpeg"
data-srcset="img/personal/other-post-2.png"
srcset="img/personal/other-post-2.png"
/>
<img
loading="lazy"
class="other-post__image lazyload"
data-src="img/personal/other-post-2.png"
src="img/personal/other-post-2.png"
alt="other post image"
/>
</picture>
</a>
<h3 class="other-post__title">
<a href="secondpost.html" class="other-post__link">
At the Mouth of the Mississippi, a Weird and Fragile Beauty
</a>
</h3>
<div class="other-post__info">
<svg width="15" height="11" class="other-post__icon">
<use xlink:href="img/icons.svg#eye"></use>
</svg>
<span class="other-post__subtext subtext">2,873</span>
<svg
width="15"
height="14"
class="other-post__icon other-post__icon--comment"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="subtext">982</span>
</div>
<!-- /.other-post__info -->
</div>
<!-- /.other-post__card -->
<div class="other-post__card">
<a href="secondpost.html" class="other-post__link">
<picture>
<source
class="other-post__image lazyload"
type="image/webp"
data-srcset="img/personal/other-post-3.webp"
srcset="img/personal/other-post-3.webp"
/>
<source
class="other-post__image lazyload"
type="image/jpeg"
data-srcset="img/personal/other-post-3.png"
srcset="img/personal/other-post-3.png"
/>
<img
loading="lazy"
class="other-post__image lazyload"
data-src="img/personal/other-post-3.png"
src="img/personal/other-post-3.png"
alt="other post image"
/>
</picture>
</a>
<h3 class="other-post__title">
<a href="secondpost.html" class="other-post__link">
Chattanooga Is Changing. But Its Charms Remain.
</a>
</h3>
<div class="other-post__info">
<svg width="15" height="11" class="other-post__icon">
<use xlink:href="img/icons.svg#eye"></use>
</svg>
<span class="other-post__subtext subtext">821</span>
<svg
width="15"
height="14"
class="other-post__icon other-post__icon--comment"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="subtext">30</span>
</div>
<!-- /.other-post__info -->
</div>
<!-- /.other-post__card -->
<div class="other-post__card">
<a href="secondpost.html" class="other-post__link">
<picture>
<source
class="other-post__image lazyload"
type="image/webp"
data-srcset="img/personal/other-post-4.webp"
srcset="img/personal/other-post-4.webp"
/>
<source
class="other-post__image lazyload"
type="image/jpeg"
data-srcset="img/personal/other-post-4.png"
srcset="img/personal/other-post-4.png"
/>
<img
loading="lazy"
class="other-post__image lazyload"
data-src="img/personal/other-post-4.png"
src="img/personal/other-post-4.png"
alt="other post image"
/>
</picture>
</a>
<h3 class="other-post__title">
<a href="secondpost.html" class="other-post__link">
How to Get by in a Country if You Don’t Know the Language
</a>
</h3>
<div class="other-post__info">
<svg width="15" height="11" class="other-post__icon">
<use xlink:href="img/icons.svg#eye"></use>
</svg>
<span class="other-post__subtext subtext">5,030</span>
<svg
width="15"
height="14"
class="other-post__icon other-post__icon--comment"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="subtext">495</span>
</div>
<!-- /.other-post__info -->
</div>
<!-- /.other-post__card -->
</div>
<!-- /.other-post__wrapper -->
</div>
<!-- /.container -->
</section>
<section class="comments" id="comments">
<div class="post-container">
<div class="comments__wrapper">
<div class="comments-header">
<h3 class="comments-header__title">Comments</h3>
<span class="comments-header__count">19</span>
<a href="#add-comment" class="smoothlink comments-header__link">
<svg width="18" height="18" class="comments-header__icon">
<use xlink:href="img/icons.svg#pencil"></use>
</svg>
<span class="comments-header__text">Add comment</span>
</a>
</div>
<!-- /.comments__header -->
<div class="comments-body">
<div class="comments-body__item comment">
<img
src="img/comments/avatar-1.png"
alt="avatar: Ryan Hall"
class="comment__avatar"
/>
<div class="comment__info">
<div class="comment__user-info">
<h4 class="comment__name">Ryan Hall</h4>
<span class="comment__date">July 17, 6:38 pm</span>
</div>
<!-- /.comment__user-info -->
<p class="comment__text">
In the event, "in places like Iraq and Jordan, leaders of the
new sovereign states were brought in from the outside,
tailored to suit colonial interests and commitments
</p>
<div class="comment__footer comment-footer">
<a
href="#add-comment"
class="smoothlink comment-footer__comment"
>
<svg
width="15"
height="14"
class="comment-footer__icon comments-icon"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="comment-footer__reply">Reply</span>
</a>
<a href="#" class="comment-footer__like">
<svg
width="15"
height="13"
class="thumb thumb--active thumb-up"
>
<use xlink:href="img/icons.svg#thumb-up"></use>
</svg>
</a>
<span
class="comment-footer__counter comment-footer__counter--green"
>+10</span
>
<a href="#" class="comment-footer__dislike">
<svg width="15" height="13" class="thumb thumb-down">
<use xlink:href="img/icons.svg#thumb-down"></use>
</svg>
</a>
</div>
<!-- /.comment__footer -->
</div>
<!-- /.comment__info -->
</div>
<!-- /.comments-body__item -->
<div class="comments-body__item comment comment--reply">
<img
src="img/comments/avatar-2.png"
alt="avatar: Lora Morrow"
class="comment__avatar"
/>
<div class="comment__info">
<div class="comment__user-info">
<h4 class="comment__name">Lora Morrow</h4>
<span class="comment__date">July 17, 6:41 pm</span>
</div>
<!-- /.comment__user-info -->
<p class="comment__text">
Likewise, most states in the Persian Gulf were handed over to
those who could protect and safeguard imperial interests in
the post-withdrawal phase
</p>
<div class="comment__footer comment-footer">
<a
href="#add-comment"
class="smoothlink comment-footer__comment"
>
<svg
width="15"
height="14"
class="comment-footer__icon comments-icon"
>
<use xlink:href="img/icons.svg#comments-icon"></use>
</svg>
<span class="comment-footer__reply">Reply</span>
</a>
<a href="#" class="comment-footer__like">
<svg width="15" height="13" class="thumb thumb-up">
<use xlink:href="img/icons.svg#thumb-up"></use>
</svg>
</a>