-
Notifications
You must be signed in to change notification settings - Fork 0
/
playgroundcontent.xml
2509 lines (2297 loc) · 174 KB
/
playgroundcontent.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.7-alpha-59070" created="2024-09-20 08:57" -->
<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>WordPress 6.7</title>
<link>http://wordpress-67.local</link>
<description></description>
<pubDate>Fri, 20 Sep 2024 08:57:25 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://wordpress-67.local</wp:base_site_url>
<wp:base_blog_url>http://wordpress-67.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>3</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>4</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:tag>
<wp:term_id>5</wp:term_id>
<wp:tag_slug><![CDATA[art]]></wp:tag_slug>
<wp:tag_name><![CDATA[Art]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>6</wp:term_id>
<wp:tag_slug><![CDATA[italy]]></wp:tag_slug>
<wp:tag_name><![CDATA[Italy]]></wp:tag_name>
</wp:tag>
<wp:term>
<wp:term_id>5</wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[art]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Art]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>3</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>4</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>8</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>6</wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[italy]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Italy]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id>2</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>9</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.7-alpha-59070</generator>
<item>
<title><![CDATA[Rooftop-Art-Torino-Italy]]></title>
<link>http://wordpress-67.local/rooftop-art-in-torino-italy/rooftop-art-torino-italy/</link>
<pubDate>Mon, 16 Sep 2024 13:52:17 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>23</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 13:52:17]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 13:52:17]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 13:52:36]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 13:52: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[rooftop-art-torino-italy]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>22</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[News]]></title>
<link>http://wordpress-67.local/news/</link>
<pubDate>Mon, 16 Sep 2024 13:54:53 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/?page_id=26</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>26</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 13:54:53]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 13:54:53]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 13:54:53]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 13:54:53]]></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[About Us]]></title>
<link>http://wordpress-67.local/about-us/</link>
<pubDate>Mon, 16 Sep 2024 14:19:15 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/?page_id=28</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":30,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":"var:preset|duotone|dark-grayscale"}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-30" 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":30,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":"var:preset|duotone|purple-yellow"}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-30" 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":30,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":"var:preset|duotone|midnight"}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-30" 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":30,"aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","className":"is-style-rounded","style":{"color":{"duotone":"var:preset|duotone|purple-green"}}} -->
<figure class="wp-block-image size-full is-style-rounded"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/random-headshot-1.jpg" alt="" class="wp-image-30" 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>28</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:19:15]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:19:15]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-18 08:51:25]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-18 08:51:25]]></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[random-headshot-1]]></title>
<link>http://wordpress-67.local/random-headshot-1/</link>
<pubDate>Mon, 16 Sep 2024 14:20:10 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>30</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:20:10]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:20:10]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 14:20:10]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 14:20:10]]></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[Patterns]]></title>
<link>http://wordpress-67.local/patterns/</link>
<pubDate>Mon, 16 Sep 2024 14:23:11 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/?page_id=32</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Patterns are pre-design section you can use to assemble your pages quickly. This page shows four different patterns out of 30 that come with your theme</p>
<!-- /wp:paragraph -->
<!-- wp:group {"metadata":{"categories":["featured"],"patternName":"core/three-columns-with-images-and-text","name":"Three columns with images and text"},"align":"full","style":{"color":{"background":"#f5eac1"},"spacing":{"padding":{"top":"6vw","bottom":"6vw","left":"6vw","right":"6vw"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-background" style="background-color:#f5eac1;padding-top:6vw;padding-right:6vw;padding-bottom:6vw;padding-left:6vw"><!-- wp:group {"style":{"spacing":{"blockGap":"16px","padding":{"right":"0","left":"0"}}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap"}} -->
<div class="wp-block-group" style="padding-right:0;padding-left:0"><!-- wp:heading {"level":6,"style":{"color":{"text":"#000000"},"typography":{"fontSize":"16px"}}} -->
<h6 class="wp-block-heading has-text-color" id="ecosystem" style="color:#000000;font-size:16px">ECOSYSTEM</h6>
<!-- /wp:heading -->
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.9","fontSize":"6vw","fontStyle":"normal","fontWeight":"700","textTransform":"none","textDecoration":"none","letterSpacing":"0px"},"color":{"text":"#000000"}}} -->
<p class="has-text-color" style="color:#000000;font-size:6vw;font-style:normal;font-weight:700;letter-spacing:0px;line-height:0.9;text-decoration:none;text-transform:none">Positive growth.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:spacer {"height":"1vw"} -->
<div style="height:1vw" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"3vw","padding":{"top":"0","bottom":"0","left":"0","right":"0"}}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap"}} -->
<div class="wp-block-group alignwide" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"3vw","left":"3vw"}}}} -->
<div class="wp-block-columns alignwide"><!-- wp:column {"width":"33.38%"} -->
<div class="wp-block-column" style="flex-basis:33.38%"><!-- wp:paragraph {"style":{"color":{"text":"#000000"},"typography":{"fontSize":"17px"}}} -->
<p class="has-text-color" style="color:#000000;font-size:17px"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf. <em>Art</em> is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. </p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"style":{"color":{"text":"#000000"},"typography":{"fontSize":"17px"}}} -->
<p class="has-text-color" style="color:#000000;font-size:17px">But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"33%"} -->
<div class="wp-block-column" style="flex-basis:33%"><!-- wp:spacer {"height":"2vw"} -->
<div style="height:2vw" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:image {"id":36,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/image-2.jpeg" alt="The sun setting through a dense forest." class="wp-image-36"/></figure>
<!-- /wp:image --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"33.62%"} -->
<div class="wp-block-column" style="flex-basis:33.62%"><!-- wp:image {"id":35,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/image-1.jpeg" alt="Wind turbines standing on a grassy plain, against a blue sky." class="wp-image-35"/></figure>
<!-- /wp:image --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"left":"3vw"}}}} -->
<div class="wp-block-columns alignwide"><!-- wp:column {"width":"69%"} -->
<div class="wp-block-column" style="flex-basis:69%"><!-- wp:image {"id":34,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/image.jpeg" alt="The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road." class="wp-image-34"/></figure>
<!-- /wp:image --></div>
<!-- /wp:column -->
<!-- wp:column {"verticalAlignment":"center","width":"33%"} -->
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:33%"><!-- wp:spacer {"height":"2vw"} -->
<div style="height:2vw" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph {"style":{"color":{"text":"#000000"},"typography":{"fontSize":"17px"}}} -->
<p class="has-text-color" style="color:#000000;font-size:17px">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man's condition is a solution in hieroglyphic to those inquiries he would put.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:group {"metadata":{"categories":["call-to-action"],"patternName":"simple-call-to-action","name":"Simple call to action"},"align":"full","style":{"color":{"text":"#000000","background":"#ffffff"}}} -->
<div class="wp-block-group alignfull has-text-color has-background" style="color:#000000;background-color:#ffffff"><!-- wp:spacer {"height":"64px"} -->
<div style="height:64px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph {"align":"center","style":{"typography":{"lineHeight":".9"}},"fontSize":"small"} -->
<p class="has-text-align-center has-small-font-size" style="line-height:.9"><strong>GET IN TOUCH</strong></p>
<!-- /wp:paragraph -->
<!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":59,"lineHeight":"1.15"}}} -->
<h2 class="wp-block-heading has-text-align-center" id="schedule-a-visit" style="font-size:59px;line-height:1.15"><strong>Schedule a Visit</strong></h2>
<!-- /wp:heading -->
<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center","orientation":"horizontal"}} -->
<div class="wp-block-buttons"><!-- wp:button {"width":50,"style":{"color":{"background":"#000000","text":"#ffffff"},"border":{"radius":"50px"}}} -->
<div class="wp-block-button has-custom-width wp-block-button__width-50"><a class="wp-block-button__link has-text-color has-background wp-element-button" style="border-radius:50px;color:#ffffff;background-color:#000000">Contact us</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->
<!-- wp:spacer {"height":"64px"} -->
<div style="height:64px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer --></div>
<!-- /wp:group -->
<!-- wp:media-text {"align":"wide","mediaPosition":"right","mediaId":5263,"mediaLink":"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/","mediaType":"image","verticalAlignment":"center","style":{"color":{"background":"#f1f5c7"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
<div class="wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-primary-color has-text-color has-background has-link-color" style="background-color:#f1f5c7"><div class="wp-block-media-text__content"><!-- wp:group {"style":{"spacing":{"padding":{"top":"2em","right":"2em","bottom":"2em","left":"2em"}}}} -->
<div class="wp-block-group" style="padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.2","fontSize":"36px"}}} -->
<p style="font-size:36px;line-height:1.2"><strong>Even the bitterest fruit has sugar in it.</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"extra-small"} -->
<p class="has-extra-small-font-size">– Terry a O'Neal</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div><figure class="wp-block-media-text__media"><img src="https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png" alt="" class="wp-image-5263 size-full"/></figure></div>
<!-- /wp:media-text -->
<!-- wp:media-text {"align":"wide","mediaId":673,"mediaLink":"https://wordpress.org/patterns/pear-half/","mediaType":"image","verticalAlignment":"center","style":{"color":{"background":"#fffdea"}}} -->
<div class="wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background" style="background-color:#fffdea"><figure class="wp-block-media-text__media"><img src="https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png" alt="" class="wp-image-673 size-full"/></figure><div class="wp-block-media-text__content"><!-- wp:group {"style":{"spacing":{"padding":{"top":"2em","right":"2em","bottom":"2em","left":"2em"}}}} -->
<div class="wp-block-group" style="padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em"><!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.2","fontSize":"36px"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
<p class="has-primary-color has-text-color has-link-color" style="font-size:36px;line-height:1.2"><strong>The trees that are slow to grow bear the best fruit.</strong></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph {"fontSize":"extra-small"} -->
<p class="has-extra-small-font-size">– Molière</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div></div>
<!-- /wp:media-text -->
<!-- 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"><p class="has-small-font-size" style="text-transform:uppercase"><a href="#">Get directions</a></p></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":136,"sizeSlug":"full","linkDestination":"none","className":"wp-block-image size-large is-style-default"} -->
<figure class="wp-block-image size-full size-large is-style-default"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/image-old-map.jpg" alt="" class="wp-image-136"/><figcaption class="wp-element-caption">Screenshot</figcaption></figure>
<!-- /wp:image --></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- wp:group {"metadata":{"categories":["contact"],"patternName":"twentytwentyfive/contact-centered-social-link","name":"Centered link and social links"},"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"},"blockGap":"var:preset|spacing|50"}},"layout":{"type":"constrained"}} -->
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80)"><!-- wp:paragraph {"align":"center","fontSize":"xx-large"} -->
<p class="has-text-align-center has-xx-large-font-size">Got questions? <br><a href="#" rel="nofollow">Feel free to reach out.</a></p>
<!-- /wp:paragraph -->
<!-- wp:social-links {"iconColor":"contrast","className":"has-icon-color is-style-logos-only","layout":{"type":"flex","justifyContent":"center"}} -->
<ul class="wp-block-social-links has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"twitter"} /-->
<!-- wp:social-link {"url":"#","service":"facebook"} /-->
<!-- wp:social-link {"url":"#","service":"instagram"} /-->
<!-- wp:social-link {"url":"#","service":"pinterest"} /--></ul>
<!-- /wp:social-links --></div>
<!-- /wp:group -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>32</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:23:11]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:23:11]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-18 10:54:05]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-18 10:54:05]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[patterns]]></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[image]]></title>
<link>http://wordpress-67.local/patterns/image-2/</link>
<pubDate>Mon, 16 Sep 2024 14:23:05 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/wp-content/uploads/2024/09/image.jpeg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>34</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:23:05]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:23:05]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 14:23:05]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 14:23:05]]></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>32</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://wordpress-67.local/patterns/image-3/</link>
<pubDate>Mon, 16 Sep 2024 14:23:05 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>35</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:23:05]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:23:05]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 14:23:05]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 14:23:05]]></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>32</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]]></title>
<link>http://wordpress-67.local/patterns/image-4/</link>
<pubDate>Mon, 16 Sep 2024 14:23:07 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>36</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 14:23:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 14:23:07]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-16 14:23:07]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-16 14:23:07]]></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>32</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[Blocks]]></title>
<link>http://wordpress-67.local/patterns/blocks/</link>
<pubDate>Mon, 16 Sep 2024 15:48:34 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/?page_id=52</guid>
<description></description>
<content:encoded><![CDATA[<!-- wp:paragraph -->
<p>Quote</p>
<!-- /wp:paragraph -->
<!-- wp:quote -->
<blockquote class="wp-block-quote"><!-- wp:paragraph -->
<p>The only wealth which you will keep forever is the wealth you have given away.</p>
<!-- /wp:paragraph --><cite>Marcus Aurelius</cite></blockquote>
<!-- /wp:quote -->
<!-- wp:paragraph -->
<p>Pullquote</p>
<!-- /wp:paragraph -->
<!-- wp:pullquote {"fontFamily":"vollkorn"} -->
<figure class="wp-block-pullquote has-vollkorn-font-family"><blockquote><p>Think of what you have rather than <br>of what you lack. <br><br>Of the things you have, select the best and then reflect how eagerly you would have sought them if you did not have them. </p><cite>Marcus Aurelius</cite></blockquote></figure>
<!-- /wp:pullquote -->
<!-- wp:paragraph -->
<p>Images & Gallery</p>
<!-- /wp:paragraph -->
<!-- wp:image {"id":138,"sizeSlug":"large","linkDestination":"none","className":"is-style-default"} -->
<figure class="wp-block-image size-large is-style-default"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/Munich-Marstall-web-1024x562.jpg" alt="" class="wp-image-138"/><figcaption class="wp-element-caption">Image block, default</figcaption></figure>
<!-- /wp:image -->
<!-- wp:image {"id":134,"sizeSlug":"large","linkDestination":"none","className":"is-style-rounded"} -->
<figure class="wp-block-image size-large is-style-rounded"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/8-1024x585.jpg" alt="" class="wp-image-134"/><figcaption class="wp-element-caption">IImage Block, rounded</figcaption></figure>
<!-- /wp:image -->
<!-- wp:gallery {"linkTo":"none","style":{"border":{"style":"solid","width":"1px"}},"borderColor":"accent-3"} -->
<figure class="wp-block-gallery has-nested-images columns-default is-cropped has-border-color has-accent-3-border-color" style="border-style:solid;border-width:1px"><!-- wp:image {"id":138,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/Munich-Marstall-web-1024x562.jpg" alt="" class="wp-image-138"/><figcaption class="wp-element-caption">Munic Marstall</figcaption></figure>
<!-- /wp:image -->
<!-- wp:image {"id":134,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/8-1024x585.jpg" alt="" class="wp-image-134"/><figcaption class="wp-element-caption">Phantasie Town</figcaption></figure>
<!-- /wp:image -->
<!-- wp:image {"id":137,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/Tofino-BC02024-web-1024x576.jpg" alt="" class="wp-image-137"/><figcaption class="wp-element-caption">Tofino</figcaption></figure>
<!-- /wp:image -->
<!-- wp:image {"id":23,"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/Rooftop-Art-Torino-Italy-1024x576.jpg" alt="Rooftop art in Torino, Italy" class="wp-image-23"/><figcaption class="wp-element-caption">Rooftop Art</figcaption></figure>
<!-- /wp:image --><figcaption class="blocks-gallery-caption wp-element-caption">Gallery block caption</figcaption></figure>
<!-- /wp:gallery -->
<!-- wp:paragraph -->
<p>Buttons (default and outline) </p>
<!-- /wp:paragraph -->
<!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button {"backgroundColor":"accent-3","style":{"border":{"radius":"15px"}}} -->
<div class="wp-block-button"><a class="wp-block-button__link has-accent-3-background-color has-background wp-element-button" style="border-radius:15px">Action Button</a></div>
<!-- /wp:button -->
<!-- wp:button {"backgroundColor":"accent-2","textColor":"contrast","style":{"border":{"radius":"15px"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}}} -->
<div class="wp-block-button"><a class="wp-block-button__link has-contrast-color has-accent-2-background-color has-text-color has-background has-link-color wp-element-button" style="border-radius:15px">Buy Now</a></div>
<!-- /wp:button -->
<!-- wp:button {"backgroundColor":"contrast","textColor":"base","style":{"border":{"radius":"15px"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}}} -->
<div class="wp-block-button"><a class="wp-block-button__link has-base-color has-contrast-background-color has-text-color has-background has-link-color wp-element-button" style="border-radius:15px">Connect</a></div>
<!-- /wp:button -->
<!-- wp:button {"backgroundColor":"primary","textColor":"contrast","style":{"border":{"radius":"15px"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}}} -->
<div class="wp-block-button"><a class="wp-block-button__link has-contrast-color has-primary-background-color has-text-color has-background has-link-color wp-element-button" style="border-radius:15px">Submit</a></div>
<!-- /wp:button -->
<!-- wp:button {"width":50,"className":"is-style-outline","style":{"border":{"radius":"15px"}},"borderColor":"accent-3"} -->
<div class="wp-block-button has-custom-width wp-block-button__width-50 is-style-outline"><a class="wp-block-button__link has-border-color has-accent-3-border-color wp-element-button" style="border-radius:15px">Cancel </a></div>
<!-- /wp:button -->
<!-- wp:button {"backgroundColor":"secondary","width":50,"className":"is-style-outline","style":{"border":{"radius":"15px"}},"borderColor":"accent-1"} -->
<div class="wp-block-button has-custom-width wp-block-button__width-50 is-style-outline"><a class="wp-block-button__link has-secondary-background-color has-background has-border-color has-accent-1-border-color wp-element-button" style="border-radius:15px">Raise your hand</a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons -->
<!-- wp:paragraph -->
<p>Cover Block</p>
<!-- /wp:paragraph -->
<!-- wp:cover {"url":"http://wordpress-67.local/wp-content/uploads/2024/09/Rooftop-Art-Torino-Italy.jpg","id":23,"alt":"Rooftop art in Torino, Italy","dimRatio":50,"customOverlayColor":"#8593a2","isUserOverlayColor":true,"minHeight":430,"minHeightUnit":"px","contentPosition":"center center","isDark":false,"align":"wide","layout":{"type":"constrained"}} -->
<div class="wp-block-cover alignwide is-light" style="min-height:430px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim" style="background-color:#8593a2"></span><img class="wp-block-cover__image-background wp-image-23" alt="Rooftop art in Torino, Italy" src="http://wordpress-67.local/wp-content/uploads/2024/09/Rooftop-Art-Torino-Italy.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"right","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:paragraph {"align":"right","placeholder":"Write title…","style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","fontSize":"x-large"} -->
<p class="has-text-align-right has-base-color has-text-color has-link-color has-x-large-font-size"><strong>We write on the right <br>side of the sculpture</strong></p>
<!-- /wp:paragraph -->
<!-- wp:buttons -->
<div class="wp-block-buttons"><!-- wp:button {"textAlign":"right","backgroundColor":"accent-1","textColor":"contrast","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"fontSize":"medium"} -->
<div class="wp-block-button has-custom-font-size has-medium-font-size"><a class="wp-block-button__link has-contrast-color has-accent-1-background-color has-text-color has-background has-link-color has-text-align-right wp-element-button"><strong>Buy me</strong></a></div>
<!-- /wp:button --></div>
<!-- /wp:buttons --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover -->
<!-- wp:paragraph -->
<p>Media + Text Block</p>
<!-- /wp:paragraph -->
<!-- wp:media-text {"align":"wide","mediaId":35,"mediaLink":"http://wordpress-67.local/patterns/image-3/","mediaType":"image","imageFill":true,"focalPoint":{"x":0.99,"y":0.49},"backgroundColor":"secondary"} -->
<div class="wp-block-media-text alignwide is-stacked-on-mobile is-image-fill-element has-secondary-background-color has-background"><figure class="wp-block-media-text__media"><img src="http://wordpress-67.local/wp-content/uploads/2024/09/image-1-768x1024.jpeg" alt="" class="wp-image-35 size-full" style="object-position:99% 49%"/></figure><div class="wp-block-media-text__content"><!-- wp:paragraph {"placeholder":"Content…"} -->
<p>Actualize the plan and markets. Going forward, we should harness the asset. Leverage skill sets to achieve maximum market share. Actualize the key action and markets. Going forward, we should leverage the asset. Harness the plan and vertical markets. Going forward, we should leverage the asset. Harness the key action and skill sets. Going forward, we should actualize the asset. Harness vertical markets to achieve the best targets. Going forward, we should leverage the plan. Harness the asset and skill sets.</p>
<!-- /wp:paragraph --></div></div>
<!-- /wp:media-text -->
<!-- wp:spacer {"height":"50px"} -->
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph -->
<p>Table of the population of cities starting with "M"</p>
<!-- /wp:paragraph -->
<!-- wp:table {"className":"is-style-regular"} -->
<figure class="wp-block-table is-style-regular"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-left" data-align="left">City</th><th class="has-text-align-center" data-align="center">Population in Mio</th></tr></thead><tbody><tr><td class="has-text-align-left" data-align="left">Mexico City</td><td class="has-text-align-center" data-align="center">8.855 </td></tr><tr><td class="has-text-align-left" data-align="left">Munich</td><td class="has-text-align-center" data-align="center">1.472</td></tr><tr><td class="has-text-align-left" data-align="left">Manila</td><td class="has-text-align-center" data-align="center">14.942</td></tr><tr><td class="has-text-align-left" data-align="left">Moscow</td><td class="has-text-align-center" data-align="center">10.381</td></tr><tr><td class="has-text-align-left" data-align="left">Melbourne</td><td class="has-text-align-center" data-align="center">4.246</td></tr></tbody></table></figure>
<!-- /wp:table -->
<!-- wp:spacer {"height":"60px"} -->
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph -->
<p><strong>Columns</strong></p>
<!-- /wp:paragraph -->
<!-- wp:columns -->
<div class="wp-block-columns"><!-- wp:column {"width":"33.33%"} -->
<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:paragraph -->
<p>What is Enlightenment? </p>
<!-- /wp:paragraph --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"66.66%"} -->
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:paragraph -->
<p>“Enlightenment is man's release from his self-incurred tutelage. Tutelage is man's inability to make use of his understanding without direction from another. Self-incurred is this tutelage when its cause lies not in lack of reason but in lack of resolution and courage to use it without direction from another. Sapere aude! 'Have courage to use your own reason!'- that is the motto of enlightenment.”<br>― <strong>Immanuel Kant</strong></p>
<!-- /wp:paragraph --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->
<!-- wp:spacer {"height":"47px"} -->
<div style="height:47px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph -->
<p>Audio </p>
<!-- /wp:paragraph -->
<!-- wp:audio {"id":171} -->
<figure class="wp-block-audio"><audio controls src="http://wordpress-67.local/wp-content/uploads/2024/09/428075__bolkmar__river-flowing-binaural-nature-sound.wav"></audio></figure>
<!-- /wp:audio -->
<!-- wp:paragraph {"fontSize":"small"} -->
<p class="has-small-font-size">River flowing - Binaural nature sound by bolkmar -- https://freesound.org/s/428075/ <br>-- License: Attribution 3.0</p>
<!-- /wp:paragraph -->
<!-- wp:spacer {"height":"36px"} -->
<div style="height:36px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:paragraph -->
<p>Video (Embed)</p>
<!-- /wp:paragraph -->
<!-- wp:embed {"url":"https://www.youtube.com/watch?v=Auo6xQpG-rU","type":"video","providerNameSlug":"youtube","responsive":true,"className":"wp-embed-aspect-4-3 wp-has-aspect-ratio"} -->
<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
https://www.youtube.com/watch?v=Auo6xQpG-rU
</div></figure>
<!-- /wp:embed -->
<!-- wp:spacer {"height":"30px"} -->
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>52</wp:post_id>
<wp:post_date><![CDATA[2024-09-16 15:48:34]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-16 15:48:34]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-19 16:21:56]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-19 16:21:56]]></wp:post_modified_gmt>
<wp:comment_status><![CDATA[closed]]></wp:comment_status>
<wp:ping_status><![CDATA[closed]]></wp:ping_status>
<wp:post_name><![CDATA[blocks]]></wp:post_name>
<wp:status><![CDATA[publish]]></wp:status>
<wp:post_parent>32</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[_oembed_0c8e1b4aebd9a39f9031af32df336da5]]></wp:meta_key>
<wp:meta_value><![CDATA[<iframe title="Tour the New Learn WordPress Experience" width="500" height="375" src="https://www.youtube.com/embed/Auo6xQpG-rU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_oembed_time_0c8e1b4aebd9a39f9031af32df336da5]]></wp:meta_key>
<wp:meta_value><![CDATA[1726656819]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title><![CDATA[8]]></title>
<link>http://wordpress-67.local/8/</link>
<pubDate>Tue, 17 Sep 2024 17:12:18 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.local/wp-content/uploads/2024/09/8.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>134</wp:post_id>
<wp:post_date><![CDATA[2024-09-17 17:12:18]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-17 17:12:18]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-17 17:12:18]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-17 17:12:18]]></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[Screenshot]]></title>
<link>http://wordpress-67.local/screenshot-2/</link>
<pubDate>Tue, 17 Sep 2024 17:13:16 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>136</wp:post_id>
<wp:post_date><![CDATA[2024-09-17 17:13:16]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-17 17:13:16]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-17 17:13:16]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-17 17:13:16]]></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-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-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[Tofino-BC02024-web]]></title>
<link>http://wordpress-67.local/tofino-bc02024-web/</link>
<pubDate>Tue, 17 Sep 2024 17:13:23 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>137</wp:post_id>
<wp:post_date><![CDATA[2024-09-17 17:13:23]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-17 17:13:23]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-17 17:13:23]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-17 17:13: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[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[Munich-Marstall-web]]></title>
<link>http://wordpress-67.local/munich-marstall-web/</link>
<pubDate>Tue, 17 Sep 2024 17:13:27 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>138</wp:post_id>
<wp:post_date><![CDATA[2024-09-17 17:13:27]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-17 17:13:27]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-17 17:13:27]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-17 17:13:27]]></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[428075__bolkmar__river-flowing-binaural-nature-sound]]></title>
<link>http://wordpress-67.local/patterns/blocks/428075__bolkmar__river-flowing-binaural-nature-sound/</link>
<pubDate>Wed, 18 Sep 2024 08:28:01 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>
<guid isPermaLink="false">http://wordpress-67.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>171</wp:post_id>
<wp:post_date><![CDATA[2024-09-18 08:28:01]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2024-09-18 08:28:01]]></wp:post_date_gmt>
<wp:post_modified><![CDATA[2024-09-18 08:28:29]]></wp:post_modified>
<wp:post_modified_gmt><![CDATA[2024-09-18 08:28: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[428075__bolkmar__river-flowing-binaural-nature-sound]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>52</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]]></title>
<link>http://wordpress-67.local/front-page/image/</link>
<pubDate>Wed, 18 Sep 2024 09:59:45 +0000</pubDate>
<dc:creator><![CDATA[birgit]]></dc:creator>