-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaygroundcontent-v2.xml
2029 lines (1852 loc) · 150 KB
/
playgroundcontent-v2.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/6.6.2" created="2024-09-28 15:27" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>Theme Demo, v2</title>
<link>http://theme-demo-v2.local</link>
<description></description>
<pubDate>Sat, 28 Sep 2024 15:27:55 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://theme-demo-v2.local</wp:base_site_url>
<wp:base_blog_url>http://theme-demo-v2.local</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[birgit]]></wp:author_login><wp:author_email><![CDATA[[email protected]]]></wp:author_email><wp:author_display_name><![CDATA[Birgit Pauli-Haack]]></wp:author_display_name><wp:author_first_name><![CDATA[Birgit]]></wp:author_first_name><wp:author_last_name><![CDATA[Pauli-Haack]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>2</wp:term_id>
<wp:category_nicename><![CDATA[canada]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Canada]]></wp:cat_name>
<wp:category_description><![CDATA[Explore the vast wilderness and forests of the second-largest landmass on Earth.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>3</wp:term_id>
<wp:category_nicename><![CDATA[europe]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Europe]]></wp:cat_name>
<wp:category_description><![CDATA[Explore the place of history and modern lives in the land of our ancestors, going back to the antique times.]]></wp:category_description>
</wp:category>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:term>
<wp:term_id>2</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[canada]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Canada]]></wp:term_name>
<wp:term_description><![CDATA[Explore the vast wilderness and forests of the second-largest landmass on Earth.]]></wp:term_description>
</wp:term>
<wp:term>
<wp:term_id>3</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[europe]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Europe]]></wp:term_name>
<wp:term_description><![CDATA[Explore the place of history and modern lives in the land of our ancestors, going back to the antique times.]]></wp:term_description>
</wp:term>
<wp:term>
<wp:term_id>6</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_template_part_area]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[footer]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[footer]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>7</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_template_part_area]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[header]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[header]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>5</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[twentytwentyfive-trunk]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[twentytwentyfive-trunk]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>4</wp:term_id>
<wp:term_taxonomy><![CDATA[wp_theme]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[twentytwentyfour]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[twentytwentyfour]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>1</wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=6.6.2</generator>
<item>
<title><![CDATA[8]]></title>
<link>http://theme-demo-v2.local/8/</link>
<pubDate>Fri, 27 Sep 2024 14:07:29 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/8.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:29]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:29]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:29]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:29]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[8]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/8.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/8.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1200;s:6:"height";i:686;s:4:"file";s:13:"2024/09/8.jpg";s:8:"filesize";i:119010;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:13:"8-300x172.jpg";s:5:"width";i:300;s:6:"height";i:172;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:23291;}s:5:"large";a:5:{s:4:"file";s:14:"8-1024x585.jpg";s:5:"width";i:1024;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:154689;}s:9:"thumbnail";a:5:{s:4:"file";s:13:"8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:13177;}s:12:"medium_large";a:5:{s:4:"file";s:13:"8-768x439.jpg";s:5:"width";i:768;s:6:"height";i:439;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:97060;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[428075__bolkmar__river-flowing-binaural-nature-sound]]></title>
<link>http://theme-demo-v2.local/428075__bolkmar__river-flowing-binaural-nature-sound/</link>
<pubDate>Fri, 27 Sep 2024 14:07:30 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/428075__bolkmar__river-flowing-binaural-nature-sound.wav</guid>
<description></description>
<content:encoded><![CDATA["428075__bolkmar__river-flowing-binaural-nature-sound".]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>6</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:30]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:30]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 17:36:23]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 17:36:23]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[428075__bolkmar__river-flowing-binaural-nature-sound]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/428075__bolkmar__river-flowing-binaural-nature-sound.wav]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/428075__bolkmar__river-flowing-binaural-nature-sound.wav]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:18:{s:10:"dataformat";s:3:"wav";s:12:"bitrate_mode";s:3:"cbr";s:10:"wformattag";i:1;s:5:"codec";s:27:"Pulse Code Modulation (PCM)";s:8:"channels";i:2;s:11:"sample_rate";i:48000;s:7:"bitrate";i:2304000;s:15:"bits_per_sample";i:24;s:8:"lossless";b:1;s:11:"channelmode";s:6:"stereo";s:17:"compression_ratio";i:1;s:10:"fileformat";s:3:"wav";s:8:"filesize";i:1979658;s:9:"mime_type";s:9:"audio/wav";s:6:"length";i:7;s:16:"length_formatted";s:4:"0:07";s:6:"artist";s:0:"";s:5:"album";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-1]]></title>
<link>http://theme-demo-v2.local/image-1/</link>
<pubDate>Fri, 27 Sep 2024 14:07:30 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-1.jpeg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>7</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:30]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:30]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:30]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:30]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-1]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-1.jpeg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-1.jpeg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1000;s:6:"height";i:1333;s:4:"file";s:20:"2024/09/image-1.jpeg";s:8:"filesize";i:82899;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:20:"image-1-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:8302;}s:5:"large";a:5:{s:4:"file";s:21:"image-1-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:74860;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:2879;}s:12:"medium_large";a:5:{s:4:"file";s:21:"image-1-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:74860;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-1]]></title>
<link>http://theme-demo-v2.local/image-1-2/</link>
<pubDate>Fri, 27 Sep 2024 14:07:31 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-1.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>8</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:31]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:31]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:31]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:31]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-1-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-1.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-1.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:2243;s:6:"height";i:2243;s:4:"file";s:20:"2024/09/image-1.webp";s:8:"filesize";i:900702;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:20:"image-1-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16098;}s:5:"large";a:5:{s:4:"file";s:22:"image-1-1024x1024.webp";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:257460;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4928;}s:12:"medium_large";a:5:{s:4:"file";s:20:"image-1-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:128190;}s:9:"1536x1536";a:5:{s:4:"file";s:22:"image-1-1536x1536.webp";s:5:"width";i:1536;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:634520;}s:9:"2048x2048";a:5:{s:4:"file";s:22:"image-1-2048x2048.webp";s:5:"width";i:2048;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:1110034;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-2]]></title>
<link>http://theme-demo-v2.local/image-2/</link>
<pubDate>Fri, 27 Sep 2024 14:07:35 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-2.jpeg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>9</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:35]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:35]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:35]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:35]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-2.jpeg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-2.jpeg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1000;s:6:"height";i:1336;s:4:"file";s:20:"2024/09/image-2.jpeg";s:8:"filesize";i:164486;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:20:"image-2-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:14921;}s:5:"large";a:5:{s:4:"file";s:21:"image-2-766x1024.jpeg";s:5:"width";i:766;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:151815;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-2-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:5770;}s:12:"medium_large";a:5:{s:4:"file";s:21:"image-2-768x1026.jpeg";s:5:"width";i:768;s:6:"height";i:1026;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:152353;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-2]]></title>
<link>http://theme-demo-v2.local/image-2-2/</link>
<pubDate>Fri, 27 Sep 2024 14:07:36 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-2.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>10</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:36]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:36]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:36]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:36]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-2-2]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-2.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-2.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:2307;s:6:"height";i:2308;s:4:"file";s:20:"2024/09/image-2.webp";s:8:"filesize";i:1021532;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:20:"image-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:14370;}s:5:"large";a:5:{s:4:"file";s:22:"image-2-1024x1024.webp";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:249346;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4134;}s:12:"medium_large";a:5:{s:4:"file";s:20:"image-2-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:122280;}s:9:"1536x1536";a:5:{s:4:"file";s:22:"image-2-1536x1536.webp";s:5:"width";i:1536;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:645338;}s:9:"2048x2048";a:5:{s:4:"file";s:22:"image-2-2048x2048.webp";s:5:"width";i:2048;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:1151130;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-3]]></title>
<link>http://theme-demo-v2.local/image-3/</link>
<pubDate>Fri, 27 Sep 2024 14:07:42 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-3.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>11</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:42]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:42]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:42]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:42]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-3]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-3.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-3.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1240;s:6:"height";i:1225;s:4:"file";s:20:"2024/09/image-3.webp";s:8:"filesize";i:321934;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:20:"image-3-300x296.webp";s:5:"width";i:300;s:6:"height";i:296;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:13910;}s:5:"large";a:5:{s:4:"file";s:22:"image-3-1024x1012.webp";s:5:"width";i:1024;s:6:"height";i:1012;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:131182;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4140;}s:12:"medium_large";a:5:{s:4:"file";s:20:"image-3-768x759.webp";s:5:"width";i:768;s:6:"height";i:759;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:79956;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-4]]></title>
<link>http://theme-demo-v2.local/image-4/</link>
<pubDate>Fri, 27 Sep 2024 14:07:43 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-4.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>12</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:43]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:43]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:43]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:43]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-4]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-4.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-4.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1520;s:6:"height";i:808;s:4:"file";s:20:"2024/09/image-4.webp";s:8:"filesize";i:19654;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:20:"image-4-300x159.webp";s:5:"width";i:300;s:6:"height";i:159;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:3688;}s:5:"large";a:5:{s:4:"file";s:21:"image-4-1024x544.webp";s:5:"width";i:1024;s:6:"height";i:544;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16450;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-4-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:3030;}s:12:"medium_large";a:5:{s:4:"file";s:20:"image-4-768x408.webp";s:5:"width";i:768;s:6:"height";i:408;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:11628;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image-5]]></title>
<link>http://theme-demo-v2.local/image-5/</link>
<pubDate>Fri, 27 Sep 2024 14:07:43 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-5.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>13</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:43]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:43]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:43]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:43]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-5]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-5.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-5.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1058;s:6:"height";i:1500;s:4:"file";s:20:"2024/09/image-5.webp";s:8:"filesize";i:146928;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:20:"image-5-212x300.webp";s:5:"width";i:212;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8900;}s:5:"large";a:5:{s:4:"file";s:21:"image-5-722x1024.webp";s:5:"width";i:722;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:82120;}s:9:"thumbnail";a:5:{s:4:"file";s:20:"image-5-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4196;}s:12:"medium_large";a:5:{s:4:"file";s:21:"image-5-768x1089.webp";s:5:"width";i:768;s:6:"height";i:1089;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:91338;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Screenshot]]></title>
<link>http://theme-demo-v2.local/screenshot/</link>
<pubDate>Fri, 27 Sep 2024 14:07:44 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image-old-map.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Screenshot]]></excerpt:encoded>
<wp:post_id>14</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:44]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:44]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:44]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:44]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[screenshot]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-old-map.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image-old-map.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:716;s:6:"height";i:679;s:4:"file";s:25:"2024/09/image-old-map.jpg";s:8:"filesize";i:117353;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:25:"image-old-map-300x284.jpg";s:5:"width";i:300;s:6:"height";i:284;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:34784;}s:9:"thumbnail";a:5:{s:4:"file";s:25:"image-old-map-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:12372;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:10:"Screenshot";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:10:"Screenshot";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image]]></title>
<link>http://theme-demo-v2.local/image/</link>
<pubDate>Fri, 27 Sep 2024 14:07:44 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image.jpeg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>15</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:44]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:44]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:44]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:44]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image.jpeg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image.jpeg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:18:"2024/09/image.jpeg";s:8:"filesize";i:65566;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:18:"image-300x200.jpeg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:6919;}s:9:"thumbnail";a:5:{s:4:"file";s:18:"image-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:3212;}s:12:"medium_large";a:5:{s:4:"file";s:18:"image-768x512.jpeg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:33414;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[image]]></title>
<link>http://theme-demo-v2.local/image-6/</link>
<pubDate>Fri, 27 Sep 2024 14:07:45 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/image.webp</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>16</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:45]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:45]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:45]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:45]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[image-6]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image.webp]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/image.webp]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:2359;s:6:"height";i:2358;s:4:"file";s:18:"2024/09/image.webp";s:8:"filesize";i:485592;s:5:"sizes";a:6:{s:6:"medium";a:5:{s:4:"file";s:18:"image-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:11180;}s:5:"large";a:5:{s:4:"file";s:20:"image-1024x1024.webp";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:144208;}s:9:"thumbnail";a:5:{s:4:"file";s:18:"image-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4138;}s:12:"medium_large";a:5:{s:4:"file";s:18:"image-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:73616;}s:9:"1536x1536";a:5:{s:4:"file";s:20:"image-1536x1536.webp";s:5:"width";i:1536;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:349418;}s:9:"2048x2048";a:5:{s:4:"file";s:20:"image-2048x2048.webp";s:5:"width";i:2048;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:579618;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Munich-Marstall-web]]></title>
<link>http://theme-demo-v2.local/munich-marstall-web/</link>
<pubDate>Fri, 27 Sep 2024 14:07:50 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/Munich-Marstall-web.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>17</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:50]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:50]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:50]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[munich-marstall-web]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/Munich-Marstall-web.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/Munich-Marstall-web.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1200;s:6:"height";i:659;s:4:"file";s:31:"2024/09/Munich-Marstall-web.jpg";s:8:"filesize";i:108648;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:31:"Munich-Marstall-web-300x165.jpg";s:5:"width";i:300;s:6:"height";i:165;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:22156;}s:5:"large";a:5:{s:4:"file";s:32:"Munich-Marstall-web-1024x562.jpg";s:5:"width";i:1024;s:6:"height";i:562;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:132468;}s:9:"thumbnail";a:5:{s:4:"file";s:31:"Munich-Marstall-web-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:14365;}s:12:"medium_large";a:5:{s:4:"file";s:31:"Munich-Marstall-web-768x422.jpg";s:5:"width";i:768;s:6:"height";i:422;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:84214;}}s:10:"image_meta";a:12:{s:8:"aperture";s:4:"1.85";s:6:"credit";s:0:"";s:6:"camera";s:11:"Pixel 7 Pro";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1719254767";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"6.81";s:3:"iso";s:2:"44";s:13:"shutter_speed";s:8:"0.001237";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[random-headshot-1]]></title>
<link>http://theme-demo-v2.local/random-headshot-1/</link>
<pubDate>Fri, 27 Sep 2024 14:07:51 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/random-headshot-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>18</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:51]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:51]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:51]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:51]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[random-headshot-1]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/random-headshot-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/random-headshot-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:500;s:6:"height";i:495;s:4:"file";s:29:"2024/09/random-headshot-1.jpg";s:8:"filesize";i:27705;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:29:"random-headshot-1-300x297.jpg";s:5:"width";i:300;s:6:"height";i:297;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:21575;}s:9:"thumbnail";a:5:{s:4:"file";s:29:"random-headshot-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:10722;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Rooftop-Art-Torino-Italy]]></title>
<link>http://theme-demo-v2.local/rooftop-art-torino-italy/</link>
<pubDate>Fri, 27 Sep 2024 14:07:51 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/Rooftop-Art-Torino-Italy.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>19</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:51]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:51]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:10:14]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:10:14]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[rooftop-art-torino-italy]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/Rooftop-Art-Torino-Italy.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/Rooftop-Art-Torino-Italy.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1200;s:6:"height";i:675;s:4:"file";s:36:"2024/09/Rooftop-Art-Torino-Italy.jpg";s:8:"filesize";i:77199;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:36:"Rooftop-Art-Torino-Italy-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:17909;}s:5:"large";a:5:{s:4:"file";s:37:"Rooftop-Art-Torino-Italy-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:100895;}s:9:"thumbnail";a:5:{s:4:"file";s:36:"Rooftop-Art-Torino-Italy-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11688;}s:12:"medium_large";a:5:{s:4:"file";s:36:"Rooftop-Art-Torino-Italy-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:64645;}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.2";s:6:"credit";s:0:"";s:6:"camera";s:11:"Pixel 7 Pro";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1718137241";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"1.95";s:3:"iso";s:2:"44";s:13:"shutter_speed";s:8:"0.000543";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_image_alt]]></wp:meta_key>
<wp:meta_value><![CDATA[Rooftop Art in Torino, Italy]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[Tofino-BC02024-web]]></title>
<link>http://theme-demo-v2.local/tofino-bc02024-web/</link>
<pubDate>Fri, 27 Sep 2024 14:07:52 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/wp-content/uploads/2024/09/Tofino-BC02024-web.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>20</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:07:52]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:07:52]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:07:52]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:07:52]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[tofino-bc02024-web]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/Tofino-BC02024-web.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2024/09/Tofino-BC02024-web.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";i:1200;s:6:"height";i:675;s:4:"file";s:30:"2024/09/Tofino-BC02024-web.jpg";s:8:"filesize";i:101491;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:30:"Tofino-BC02024-web-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:19416;}s:5:"large";a:5:{s:4:"file";s:31:"Tofino-BC02024-web-1024x576.jpg";s:5:"width";i:1024;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:130724;}s:9:"thumbnail";a:5:{s:4:"file";s:30:"Tofino-BC02024-web-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:11456;}s:12:"medium_large";a:5:{s:4:"file";s:30:"Tofino-BC02024-web-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:80912;}}s:10:"image_meta";a:12:{s:8:"aperture";s:4:"1.85";s:6:"credit";s:0:"";s:6:"camera";s:11:"Pixel 7 Pro";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1723925972";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"6.81";s:3:"iso";s:2:"44";s:13:"shutter_speed";s:8:"0.003357";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://theme-demo-v2.local/</link>
<pubDate>Fri, 27 Sep 2024 14:18:21 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/?page_id=31</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:spacer {"height":"42px"} -->
<div style="height:42px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:columns {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":{"top":"0px","left":"0px"}}}} -->
<div class="wp-block-columns alignfull" style="padding-right:0;padding-left:0"><!-- wp:column {"backgroundColor":"accent-1"} -->
<div class="wp-block-column has-accent-1-background-color has-background"><!-- wp:cover {"overlayColor":"accent-1","isUserOverlayColor":true,"minHeight":66,"minHeightUnit":"vh","metadata":{"categories":["text"],"patternName":"core/offset-bold-paragraph-text-with-varying-opacity","name":"Offset bold paragraph text with varying opacity"},"align":"full","style":{"spacing":{"padding":{"top":"2vw","right":"4vw","bottom":"2vw","left":"4vw"},"margin":{"top":"0"}}},"textColor":"base"} -->
<div class="wp-block-cover alignfull has-base-color has-text-color" style="margin-top:0;padding-top:2vw;padding-right:4vw;padding-bottom:2vw;padding-left:4vw;min-height:66vh"><span aria-hidden="true" class="wp-block-cover__background has-accent-1-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained","wideSize":"700px","contentSize":"700px","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"left","className":"is-style-default","style":{"typography":{"fontSize":"120px","textTransform":"uppercase","letterSpacing":"-2px","lineHeight":"0.9","fontStyle":"normal","fontWeight":"700"},"layout":{"selfStretch":"fit","flexSize":null}},"textColor":"base","fontFamily":"manrope"} -->
<p class="has-text-align-left is-style-default has-base-color has-text-color has-manrope-font-family" style="font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase">Hiking trails in</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"120px","textTransform":"uppercase","letterSpacing":"-2px","lineHeight":"0.9","fontStyle":"normal","fontWeight":"700"}},"fontFamily":"manrope"} -->
<p class="has-text-align-left has-manrope-font-family" style="font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase"><a href="/category/canada">canada</a></p>
<!-- /wp:paragraph -->
<!-- wp:image {"lightbox":{"enabled":false},"id":20,"sizeSlug":"large","linkDestination":"custom"} -->
<figure class="wp-block-image size-large"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/Tofino-BC02024-web-1024x576.jpg" alt="" class="wp-image-20"/></figure>
<!-- /wp:image --></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:column -->
<!-- wp:column {"className":"is-style-default","backgroundColor":"accent-1"} -->
<div class="wp-block-column is-style-default has-accent-1-background-color has-background"><!-- wp:cover {"overlayColor":"accent-1","isUserOverlayColor":true,"minHeight":66,"minHeightUnit":"vh","metadata":{"categories":["text"],"patternName":"core/offset-bold-paragraph-text-with-varying-opacity","name":"Offset bold paragraph text with varying opacity"},"align":"full","style":{"spacing":{"padding":{"top":"2vw","right":"4vw","bottom":"2vw","left":"4vw"},"margin":{"top":"0"}}},"textColor":"base"} -->
<div class="wp-block-cover alignfull has-base-color has-text-color" style="margin-top:0;padding-top:2vw;padding-right:4vw;padding-bottom:2vw;padding-left:4vw;min-height:66vh"><span aria-hidden="true" class="wp-block-cover__background has-accent-1-background-color has-background-dim-100 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained","wideSize":"700px","contentSize":"700px","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"left","className":"is-style-default","style":{"typography":{"fontSize":"120px","textTransform":"uppercase","letterSpacing":"-2px","lineHeight":"0.9","fontStyle":"normal","fontWeight":"700"},"layout":{"selfStretch":"fit","flexSize":null}},"textColor":"base","fontFamily":"manrope"} -->
<p class="has-text-align-left is-style-default has-base-color has-text-color has-manrope-font-family" style="font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase">City Walks in</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"120px","textTransform":"uppercase","letterSpacing":"-2px","lineHeight":"0.9","fontStyle":"normal","fontWeight":"700"}},"fontFamily":"manrope"} -->
<p class="has-text-align-left has-manrope-font-family" style="font-size:120px;font-style:normal;font-weight:700;letter-spacing:-2px;line-height:0.9;text-transform:uppercase"><a href="/category/europe">Europe</a></p>
<!-- /wp:paragraph -->
<!-- wp:image {"lightbox":{"enabled":false},"id":19,"sizeSlug":"large","linkDestination":"custom"} -->
<figure class="wp-block-image size-large"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/Rooftop-Art-Torino-Italy-1024x576.jpg" alt="Rooftop Art in Torino, Italy" class="wp-image-19"/></figure>
<!-- /wp:image --></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- wp:group {"metadata":{"categories":["services"],"patternName":"twentytwentyfive/services-three-columns","name":"Services - Three Columns"},"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"},"blockGap":"var:preset|spacing|50"}},"layout":{"type":"constrained"}} -->
<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)"><!-- wp:heading {"align":"wide"} -->
<h2 class="wp-block-heading alignwide">Our services</h2>
<!-- /wp:heading -->
<!-- wp:columns {"align":"wide"} -->
<div class="wp-block-columns alignwide"><!-- wp:column -->
<div class="wp-block-column"><!-- wp:image {"id":10,"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","linkDestination":"none","style":{"color":{"duotone":["#FF7A5C","#FFFFFF"]}}} -->
<figure class="wp-block-image size-full"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/image-2.webp" alt="" class="wp-image-10" style="aspect-ratio:4/3;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:heading {"level":4} -->
<h4 class="wp-block-heading">Collect</h4>
<!-- /wp:heading -->
<!-- wp:paragraph {"fontSize":"medium"} -->
<p class="has-medium-font-size">Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column -->
<div class="wp-block-column"><!-- wp:image {"id":8,"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-default","style":{"color":{"duotone":["#252525","#4B52FF"]}}} -->
<figure class="wp-block-image size-full is-style-default"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/image-1.webp" alt="" class="wp-image-8" style="aspect-ratio:4/3;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:heading {"level":4} -->
<h4 class="wp-block-heading">Assemble</h4>
<!-- /wp:heading -->
<!-- wp:paragraph {"fontSize":"medium"} -->
<p class="has-medium-font-size">Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column -->
<div class="wp-block-column"><!-- wp:image {"id":16,"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","linkDestination":"none","style":{"color":{"duotone":["#4B52FF","#FFFFFF"]}}} -->
<figure class="wp-block-image size-full"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/image.webp" alt="" class="wp-image-16" style="aspect-ratio:4/3;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:heading {"level":4} -->
<h4 class="wp-block-heading">Deliver</h4>
<!-- /wp:heading -->
<!-- wp:paragraph {"fontSize":"medium"} -->
<p class="has-medium-font-size">Like flowers that bloom in unexpected places, every story unfolds with beauty and resilience</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- wp:group {"metadata":{"categories":["featured"],"patternName":"twentytwentyfive/contact-location-and-link","name":"Contact Location and Link"},"align":"full","className":"is-style-section-3","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
<div class="wp-block-group alignfull is-style-section-3" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"}}}} -->
<div class="wp-block-columns alignwide"><!-- wp:column {"verticalAlignment":"top","width":""} -->
<div class="wp-block-column is-vertically-aligned-top"><!-- wp:group {"style":{"dimensions":{"minHeight":"100%"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} -->
<div class="wp-block-group" style="min-height:100%"><!-- wp:heading {"level":3,"className":"wp-block-heading"} -->
<h3 class="wp-block-heading">Visit us at 123 Example St. Manhattan, NY 10300, United States</h3>
<!-- /wp:heading -->
<!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}},"fontSize":"medium"} -->
<p class="has-medium-font-size" style="text-transform:uppercase"><a href="#">Get directions</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"verticalAlignment":"top","width":"40%"} -->
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:40%"><!-- wp:image {"id":14,"sizeSlug":"full","linkDestination":"none","className":"wp-block-image size-large"} -->
<figure class="wp-block-image size-full size-large"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/image-old-map.jpg" alt="" class="wp-image-14"/><figcaption class="wp-element-caption">Screenshot</figcaption></figure>
<!-- /wp:image --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->
<!-- wp:group {"metadata":{"categories":["posts"],"patternName":"core/query-large-title-posts","name":"Large title"},"align":"full","style":{"spacing":{"padding":{"top":"100px","right":"100px","bottom":"100px","left":"100px"}},"color":{"text":"#ffffff","background":"#000000"}}} -->
<div class="wp-block-group alignfull has-text-color has-background" style="color:#ffffff;background-color:#000000;padding-top:100px;padding-right:100px;padding-bottom:100px;padding-left:100px"><!-- wp:query {"queryId":7,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false}} -->
<div class="wp-block-query"><!-- wp:post-template -->
<!-- wp:separator {"opacity":"css","className":"alignwide is-style-wide","style":{"color":{"background":"#ffffff"}}} -->
<hr class="wp-block-separator has-text-color has-css-opacity has-background alignwide is-style-wide" style="background-color:#ffffff;color:#ffffff"/>
<!-- /wp:separator -->
<!-- wp:columns {"verticalAlignment":"center","align":"wide"} -->
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"20%"} -->
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:20%"><!-- wp:post-date {"style":{"color":{"text":"#ffffff"}},"fontSize":"extra-small"} /--></div>
<!-- /wp:column -->
<!-- wp:column {"verticalAlignment":"center","width":"80%"} -->
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:80%"><!-- wp:post-title {"isLink":true,"style":{"typography":{"fontSize":"72px","lineHeight":"1.1"},"color":{"text":"#ffffff","link":"#ffffff"}}} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- /wp:post-template --></div>
<!-- /wp:query --></div>
<!-- /wp:group -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>31</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:18:21]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:18:21]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-28 14:49:58]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-28 14:49:58]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[31-2]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
<wp:meta_value><![CDATA[page-no-title]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[About us]]></title>
<link>http://theme-demo-v2.local/about-us/</link>
<pubDate>Fri, 27 Sep 2024 14:19:42 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/?page_id=34</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Let's not scrutinize this right now parking lot it let's not revolutionize this right now parking lot if you must be muted, nor let's follow up on that, yet get six alpha pups in here for a focus group the horse is out of the barn. Product launch baseline knowledge process outsourcing. Get in the driver's seat low engagement today shall be a cloudy day, thanks to blue sky thinking, we can now deploy our new UI to the cloud.</p>
<!-- /wp:paragraph -->
<!-- wp:group {"metadata":{"name":"Team members"},"align":"full","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
<div class="wp-block-group alignfull" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
<div class="wp-block-group"><!-- wp:heading {"textAlign":"center","fontSize":"xx-large"} -->
<h2 class="wp-block-heading has-text-align-center has-xx-large-font-size">Meet our team</h2>
<!-- /wp:heading -->
<!-- wp:paragraph {"align":"center"} -->
<p class="has-text-align-center">Our comprehensive array of professionals caters to a diverse team, ranging from seasoned architects to renowned engineers.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:spacer {"height":"var:preset|spacing|30"} -->
<div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:columns {"align":"wide","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|30"}}}} -->
<div class="wp-block-columns alignwide" style="padding-right:0;padding-left:0"><!-- wp:column {"layout":{"type":"default"}} -->
<div class="wp-block-column"><!-- wp:image {"id":18,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":["#FF7A5C","#FFFFFF33"]}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-18" style="aspect-ratio:1;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|0"}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap","justifyContent":"center"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">
<strong>Francesca Piovani</strong>
</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">Founder, CEO & Architect</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"layout":{"type":"default"}} -->
<div class="wp-block-column"><!-- wp:image {"id":18,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":["#4B52FF","#FFFFFF"]}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-18" style="aspect-ratio:1;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|0"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center","flexWrap":"nowrap"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">
<strong>Rhye Moore</strong>
</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">Engineering Manager</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"layout":{"type":"default"}} -->
<div class="wp-block-column"><!-- wp:image {"id":18,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":["#FF7A5C","#4B52FF"]}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-18" style="aspect-ratio:1;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|0"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center","flexWrap":"nowrap"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">
<strong>Helga Steiner</strong>
</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">Architect</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"layout":{"type":"default"}} -->
<div class="wp-block-column"><!-- wp:image {"id":18,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":["#FFFFFF","#FFFFFF33"]}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://theme-demo-v2.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-18" style="aspect-ratio:1;object-fit:cover"/></figure>
<!-- /wp:image -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|0"}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap","justifyContent":"center"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">
<strong>Ivan Lawrence</strong>
</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size">Project Manager</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- wp:paragraph -->
<p></p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>34</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:19:42]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:19:42]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-28 15:25:40]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-28 15:25:40]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[about-us]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title><![CDATA[News]]></title>
<link>http://theme-demo-v2.local/news/</link>
<pubDate>Fri, 27 Sep 2024 14:20:11 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/?page_id=36</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>36</wp:post_id>
<wp:post_date><![CDATA[2024-09-27 14:20:11]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-27 14:20:11]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-27 14:20:11]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-27 14:20:11]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[news]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[page]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
</item>
<item>
<title><![CDATA[Page no title template]]></title>
<link>http://theme-demo-v2.local/templates/page-no-title-template/</link>
<pubDate>Fri, 27 Sep 2024 14:21:56 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://theme-demo-v2.local/?page_id=38</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:group {"metadata":{"categories":["header"],"patternName":"core/fullwidth-header-with-hero-image","name":"Fullwidth header with hero image"},"align":"full","layout":{"type":"constrained"}} -->
<div class="wp-block-group alignfull"><!-- wp:cover {"url":"https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-2.jpeg","id":9,"hasParallax":true,"dimRatio":60,"overlayColor":"accent-2","isUserOverlayColor":true,"minHeight":40,"minHeightUnit":"vw","contentPosition":"center right","isDark":false,"align":"full","style":{"spacing":{"margin":{"top":"0"}},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontSize":"x-large"} -->
<div class="wp-block-cover alignfull is-light has-parallax has-custom-content-position is-position-center-right has-contrast-color has-text-color has-link-color has-x-large-font-size" style="margin-top:0;min-height:40vw"><span aria-hidden="true" class="wp-block-cover__background has-accent-2-background-color has-background-dim-60 has-background-dim"></span><div class="wp-block-cover__image-background wp-image-9 has-parallax" style="background-position:50% 50%;background-image:url(https://raw.githubusercontent.com/wptrainingteam/tt5-demo-blueprint/main/media/image-2.jpeg)"></div><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"className":"is-style-default","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast"} -->
<p class="is-style-default has-contrast-color has-text-color has-link-color">Using the page no title template <br>you can start with a hero image to set<br>the emotional stage for your content</p>
<!-- /wp:paragraph -->
<!-- wp:spacer {"height":"50px"} -->
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:heading {"level":1} -->
<h1 class="wp-block-heading">What is Nature?</h1>
<!-- /wp:heading --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:group -->
<!-- wp:paragraph -->
<p><strong>Nature</strong> is an inherent character or constitution,particularly of the ecosphere or the universe as a whole. In this general sense, nature refers to the laws, elements, and phenomena of the physical world, including life. Although humans are part of nature, human activity or humans as a whole are often described as at times at odds, or outright separate and even superior to nature.</p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>During the advent of modern scientific method in the last several centuries, nature became the passive reality, organized and moved by divine laws. With the Industrial Revolution, nature increasingly became considered the part of reality deprived of intentional intervention: it was hence considered as sacred by some traditions (Rousseau, American transcendentalism) or a mere decorum for <a href="https://en.wikipedia.org/wiki/Divine_providence">divine providence</a> or human history (Hegel, Marx). However, a <a href="https://en.wikipedia.org/wiki/Vitalist">vitalist</a> vision of nature, closer to the pre-Socratic one, got reborn at the same time, especially after Charles Darwin.</p>
<!-- /wp:paragraph -->
<!-- wp:heading -->
<h2 class="wp-block-heading">Geology and Wildlife</h2>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>Within the various uses of the word today, "nature" typically refers to geology and wildlife. Nature can refer to the general realm of <a href="https://en.wikipedia.org/wiki/Life">living beings</a>, and in some cases to the processes associated with inanimate objects—the way that particular types of things exist and change of their own accord, such as the weather and geology of the <a href="https://en.wikipedia.org/wiki/Earth">Earth</a>. It is often taken to mean the "natural environment" or wilderness—wild animals, rocks, forest, and in general, those things that have not been substantially altered by human intervention, or which persist despite human intervention. For example, manufactured objects and human interaction generally are not considered part of nature, unless qualified as, for example, "human nature" or "the whole of nature". </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p>This more traditional concept of natural things that can still be found today implies a distinction between the natural and the artificial, with the artificial being understood as that which has been brought into being by a human <a href="https://en.wikipedia.org/wiki/Consciousness">consciousness</a> or a human <a href="https://en.wikipedia.org/wiki/Mind">mind</a>. Depending on the particular context, the term "natural" might also be distinguished from the <a href="https://en.wiktionary.org/wiki/unnatural">unnatural</a> or the <a href="https://en.wikipedia.org/wiki/Supernatural">supernatural</a>.<sup><a href="https://en.wikipedia.org/wiki/Nature#cite_note-What_does_nature_mean-2">[2]</a></sup></p>
<!-- /wp:paragraph -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>