forked from gud0/Wave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wave.sql
1960 lines (1841 loc) · 507 KB
/
wave.sql
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
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 02, 2020 at 11:53 AM
-- Server version: 10.3.22-MariaDB-cll-lve
-- PHP Version: 7.3.17
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `gudone_wave`
--
-- --------------------------------------------------------
--
-- Table structure for table `textpattern`
--
CREATE TABLE `textpattern` (
`ID` int(11) NOT NULL,
`Posted` datetime NOT NULL,
`Expires` datetime DEFAULT NULL,
`AuthorID` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`LastMod` datetime NOT NULL,
`LastModID` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Title_html` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Body` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`Body_html` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`Excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
`Excerpt_html` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`Image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Category1` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Category2` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Annotate` int(11) NOT NULL DEFAULT 0,
`AnnotateInvite` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comments_count` int(11) NOT NULL DEFAULT 0,
`Status` int(11) NOT NULL DEFAULT 4,
`textile_body` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`textile_excerpt` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`Section` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`override_form` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Keywords` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`url_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_3` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_4` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_5` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_6` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_7` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_8` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_9` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom_10` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`uid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`feed_time` date NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `textpattern`
--
INSERT INTO `textpattern` (`ID`, `Posted`, `Expires`, `AuthorID`, `LastMod`, `LastModID`, `Title`, `Title_html`, `Body`, `Body_html`, `Excerpt`, `Excerpt_html`, `Image`, `Category1`, `Category2`, `Annotate`, `AnnotateInvite`, `comments_count`, `Status`, `textile_body`, `textile_excerpt`, `Section`, `override_form`, `Keywords`, `description`, `url_title`, `custom_1`, `custom_2`, `custom_3`, `custom_4`, `custom_5`, `custom_6`, `custom_7`, `custom_8`, `custom_9`, `custom_10`, `uid`, `feed_time`) VALUES
(1, '2020-07-20 12:44:06', NULL, 'peter', '2020-07-26 20:22:44', 'peter', 'Custom waves for surfers and nerds', '', '<figure class=\"headline-image\" itemscope itemtype=\"https://schema.org/ImageObject\">\r\n <img itemprop=\"primaryImageOfPage\" src=\"<txp:site_url />images/transparent.png\" alt=\"huge stunning wave\" title=\"huge stunning image to wow them\" width=\"20\" height=\"20\" />\r\n</figure>\r\n\r\n<p id=\"contact\" class=\"h-card vcard\">\r\n <span class=\"p-locality locality\">YOUR-TOWN YOUR-AREA \r\n </span> \r\n <a class=\"p-tel tel\" href=\"tel:01234567890\">01234 567890 </a> YOUR FREE OFFER\r\n </p>\r\n', '<figure class=\"headline-image\" itemscope itemtype=\"https://schema.org/ImageObject\">\r\n <img itemprop=\"primaryImageOfPage\" src=\"<txp:site_url />images/transparent.png\" alt=\"huge stunning wave\" title=\"huge stunning image to wow them\" width=\"20\" height=\"20\" />\r\n</figure>\r\n\r\n<p id=\"contact\" class=\"h-card vcard\">\r\n <span class=\"p-locality locality\">YOUR-TOWN YOUR-AREA \r\n </span> \r\n <a class=\"p-tel tel\" href=\"tel:01234567890\">01234 567890 </a> YOUR FREE OFFER\r\n </p>', 'We have an endless supply of sea waves, sine waves and energy waves to deliver to your door', 'We have an endless supply of sea waves, sine waves and energy waves to deliver to your door', '', '', '', 0, '', 1, 4, '0', '0', 'articles', '', '', '', 'custom-waves', 'Featured message: a brochure site theme', '', '', '', '', '', '', '', '', '', 'bb5d04561c780473fef14f9c9eb43f4a', '2020-07-20'),
(3, '2020-07-20 13:42:22', NULL, 'peter', '2020-07-27 12:13:47', 'peter', 'Why use Wave?', '', '_*Also read_ \"how 1\":#how : \"how 2\":#how2 : \"bonus\":#seo\r\n\r\nh4. Reasons to be cheerful\r\n\r\n* Brochure site for small business or non-profit\r\n* Responsive, accessible and friendly to search engines\r\n* One-page sites are great for seo\r\n* Wave can be converted to static html (faster)\r\n* Designed for a strong clear message to...\r\n\r\nh4. Keep people reading\r\n\r\n* (from the top)\r\n* The headline states what you do and who you do it for\r\n* The subheading backs it up and has the unique selling point\r\n* The large image must be stunning to draw people to read more\r\n* Important contact details near top, full details in the footer \r\n* There\'s space for a free offer or other feature\r\n* Space for a promo video (hidden in this demo)\r\n\r\nh4. Attract and engage\r\n\r\n* Headings for clarity, navigation and seo\r\n* _What_ you do/make and/or _what_ you sell\r\n* The intro titles, images and bullet points at this point: \r\n** Give vital reasons to keep reading\r\n** Invite them to take action\r\n* Hopefully you\'ve kept their interest...\r\n\r\nh4. Now win their trust\r\n\r\n* _Who_ are you?\r\n* Why should someone choose what you offer?\r\n* Testimonials are important for credibility and trust\r\n* Important notes might be your stand-out qualifications or experience\r\n* Important notes - don\'t hide anything or you may disappoint them later\r\n\r\nh4. Now completely convince your audience\r\n\r\n* _Why_ you, your product, your service is what they want\r\n* Go into depth here\r\n* Give as much detail as they may need\r\n* Answer frequently asked questions\r\n\r\n_*Also read_ \"how 1\":#how : \"how 2\":#how2 : \"bonus\":#seo\r\n\r\n\r\nLorem zat alright plasterscene enim, wanna innit discolated consequat exercitation aliqua fornbree oozee ut tempor. Cheers drive luvver kinave it, safternun me luvver glider ut. In jammer almunsbree gurt lush mint in it nulla stension lead. Quicken in praps pacifically eiusmod, jammer ungray tight aliqua incididunt oo done it est he dos it. Tight yer lectric incididunt qui tiz. Eu dinnum safternun gurt big dolore aarsh jammer ceptible ut duis cupidatat he dos it dollop esse. Quis nisi me eds erting stension lead.', '<p><em>*Also read</em> <a href=\"#how\">how 1</a> : <a href=\"#how2\">how 2</a> : <a href=\"#seo\">bonus</a></p>\n\n<h4>Reasons to be cheerful</h4>\n\n<ul>\n <li>Brochure site for small business or non-profit</li>\n <li>Responsive, accessible and friendly to search engines</li>\n <li>One-page sites are great for seo</li>\n <li>Wave can be converted to static html (faster)</li>\n <li>Designed for a strong clear message to…</li>\n</ul>\n\n<h4>Keep people reading</h4>\n\n<ul>\n <li>(from the top)</li>\n <li>The headline states what you do and who you do it for</li>\n <li>The subheading backs it up and has the unique selling point</li>\n <li>The large image must be stunning to draw people to read more</li>\n <li>Important contact details near top, full details in the footer</li>\n <li>There’s space for a free offer or other feature</li>\n <li>Space for a promo video (hidden in this demo)</li>\n</ul>\n\n<h4>Attract and engage</h4>\n\n<ul>\n <li>Headings for clarity, navigation and seo</li>\n <li><em>What</em> you do/make and/or <em>what</em> you sell</li>\n <li>The intro titles, images and bullet points at this point:\n <ul>\n <li>Give vital reasons to keep reading</li>\n <li>Invite them to take action</li>\n </ul></li>\n <li>Hopefully you’ve kept their interest…</li>\n</ul>\n\n<h4>Now win their trust</h4>\n\n<ul>\n <li><em>Who</em> are you?</li>\n <li>Why should someone choose what you offer?</li>\n <li>Testimonials are important for credibility and trust</li>\n <li>Important notes might be your stand-out qualifications or experience</li>\n <li>Important notes – don’t hide anything or you may disappoint them later</li>\n</ul>\n\n<h4>Now completely convince your audience</h4>\n\n<ul>\n <li><em>Why</em> you, your product, your service is what they want</li>\n <li>Go into depth here</li>\n <li>Give as much detail as they may need</li>\n <li>Answer frequently asked questions</li>\n</ul>\n\n<p><em>*Also read</em> <a href=\"#how\">how 1</a> : <a href=\"#how2\">how 2</a> : <a href=\"#seo\">bonus</a></p>\n\n\n<p>Lorem zat alright plasterscene enim, wanna innit discolated consequat exercitation aliqua fornbree oozee ut tempor. Cheers drive luvver kinave it, safternun me luvver glider ut. In jammer almunsbree gurt lush mint in it nulla stension lead. Quicken in praps pacifically eiusmod, jammer ungray tight aliqua incididunt oo done it est he dos it. Tight yer lectric incididunt qui tiz. Eu dinnum safternun gurt big dolore aarsh jammer ceptible ut duis cupidatat he dos it dollop esse. Quis nisi me eds erting stension lead.</p>', '* Intro of title, image and bullet points\r\n* They act as summaries and teasers\r\n* To make audience want to read more\r\n*(download) Good place for a == <a href=\"#footer\"><span class=\"button\">Call to action</span></a> == \r\n* Or link to \"in-depth article below\":#why', '<ul>\n <li>Intro of title, image and bullet points</li>\n <li>They act as summaries and teasers</li>\n <li>To make audience want to read more</li>\n <li class=\"download\">Good place for a <a href=\"#footer\"><span class=\"button\">Call to action</span></a> </li>\n <li>Or link to <a href=\"#why\">in-depth article below</a></li>\n</ul>', '4,5', '', '', 0, '', 0, 4, '1', '1', 'articles', '', '', '', 'why-use-wave', 'Some reasons why', 'Wave Textpattern Theme', '', '', '', '', '', '', '', '', 'd871b341379c4d59d41b8c8ea3055319', '2020-07-20'),
(4, '2020-07-20 13:46:41', NULL, 'peter', '2020-07-27 09:11:34', 'peter', 'Wave what and how', '', '_*Also read_ \"how 2\":#how2 : \"bonus\":#seo : \"why\":#why\r\n\r\nApart from the header, all content is in 9 articles. Briefly: 1 \"big intro\" article, 1 article just for what, who and why headings, 1 testimonial, 1 notes, 1 footer, and 4 articles with a dual purpose for short intro and long in-depth texts.\r\n\r\nh4. The Default Page template\r\n\r\nHere you will see the articles listed in order of presentation. You can delete unnecessary ones or add new articles here bearing in mind they use the _big-intro_, _what_, _who_, _why_, _footer_ and _default_ forms which have slight differences. Note carefully the form each article uses. Ones with no form assigned automatically use the _default_ article form.\r\n\r\nI\'ve hidden the @body_aside@ form but you could unhide it if you wish. You will find a contact form and some links. You will also need to visit Admin | Plugins and make @com_connect@ active.\r\n\r\nh4(#articles-panel). The Articles panel\r\n\r\n* Article#1 - Big Intro - is for the Headline title, Headline text, Headline image and short contact details. There are also options for featured text and a promo video.. You enable the feature with the Subhead custom field (insert your message in it), and the video by unhiding the code in Article#1. Change the details accordingly. \r\n* Article#2 - Special Article - read carefully - used only for Section Headings. Each main section heading has a Title, Subheading and optional paragraph. To get these:\r\n** _What_ section uses Title, Subhead and Body + _intro-what_ form. \r\n** _Who_ section uses Category 1, Subhead2 and Excerpt + _intro-who_ form. \r\n** _Why_ section uses Category 2, Subhead3 and Description + _intro-why_ form.\r\n* Article#3 - 1st Intro to the What section - uses Intro-Title, Excerpt and Article image 1st ID\r\n* Article#3 - 1st In-Depth article in the Why section - uses Title, Body, Subhead and Article image 2nd ID\r\n* Article#4 - 2nd Intro and 2nd In-depth - follows Article#3 in usage\r\n* Article#5 - 3rd Intro and 3rd In-depth - follows Article#3 in usage\r\n* Article#6 - Intro to Who section and In-depth Bonus article - follows Article#3 in usage\r\n* Article#7 - Testimonials - uses Title, Body, Subhead and Article image 2nd ID\r\n* Article#8 - Important Notes - uses Title, Body, Subhead and Article image 2nd ID\r\n* Article#9 - Footer - just uses the Body\r\n* NB. 7 & 8 use the Article image 2nd ID. If you don\'t have 2 images, just insert _1_ into the field\r\n\r\nDon\'t forget to use the Sections Meta Description field for SEO\r\n\r\n_*Also read_ \"how 2\":#how2 : \"bonus\":#seo : \"why\":#why\r\n\r\nLifeguard four six, cleared direct Albuquerque, climb and maintain 17,000. Juliet Mike two one, turn left heading 115. Wayfarer 515, traffic 3 o\'clock, King Air, turn left heading 085. Sierra alpha alpha contact Albuquerque Center 134.6. Contact Albuquerque Center 134.6. Wayfarer 515, descend to 10,000. Juliet Mike two one do you have that traffic at your 9 o\' clock. Wayfarer 515, do you have that traffic... ', '<p><em>*Also read</em> <a href=\"#how2\">how 2</a> : <a href=\"#seo\">bonus</a> : <a href=\"#why\">why</a></p>\n\n<p>Apart from the header, all content is in 9 articles. Briefly: 1 “big intro” article, 1 article just for what, who and why headings, 1 testimonial, 1 notes, 1 footer, and 4 articles with a dual purpose for short intro and long in-depth texts.</p>\n\n<h4>The Default Page template</h4>\n\n<p>Here you will see the articles listed in order of presentation. You can delete unnecessary ones or add new articles here bearing in mind they use the <em>big-intro</em>, <em>what</em>, <em>who</em>, <em>why</em>, <em>footer</em> and <em>default</em> forms which have slight differences. Note carefully the form each article uses. Ones with no form assigned automatically use the <em>default</em> article form.</p>\n\n<p>I’ve hidden the <code>body_aside</code> form but you could unhide it if you wish. You will find a contact form and some links. You will also need to visit Admin | Plugins and make <code>com_connect</code> active.</p>\n\n<h4 id=\"articles-panel\">The Articles panel</h4>\n\n<ul>\n <li>Article#1 – Big Intro – is for the Headline title, Headline text, Headline image and short contact details. There are also options for featured text and a promo video.. You enable the feature with the Subhead custom field (insert your message in it), and the video by unhiding the code in Article#1. Change the details accordingly.</li>\n <li>Article#2 – Special Article – read carefully – used only for Section Headings. Each main section heading has a Title, Subheading and optional paragraph. To get these:\n <ul>\n <li><em>What</em> section uses Title, Subhead and Body + <em>intro-what</em> form.</li>\n <li><em>Who</em> section uses Category 1, Subhead2 and Excerpt + <em>intro-who</em> form.</li>\n <li><em>Why</em> section uses Category 2, Subhead3 and Description + <em>intro-why</em> form.</li>\n </ul></li>\n <li>Article#3 – 1st Intro to the What section – uses Intro-Title, Excerpt and Article image 1st ID</li>\n <li>Article#3 – 1st In-Depth article in the Why section – uses Title, Body, Subhead and Article image 2nd ID</li>\n <li>Article#4 – 2nd Intro and 2nd In-depth – follows Article#3 in usage</li>\n <li>Article#5 – 3rd Intro and 3rd In-depth – follows Article#3 in usage</li>\n <li>Article#6 – Intro to Who section and In-depth Bonus article – follows Article#3 in usage</li>\n <li>Article#7 – Testimonials – uses Title, Body, Subhead and Article image 2nd ID</li>\n <li>Article#8 – Important Notes – uses Title, Body, Subhead and Article image 2nd ID</li>\n <li>Article#9 – Footer – just uses the Body</li>\n <li>NB. 7 & 8 use the Article image 2nd ID. If you don’t have 2 images, just insert <em>1</em> into the field</li>\n</ul>\n\n<p>Don’t forget to use the Sections Meta Description field for <span class=\"caps\">SEO</span></p>\n\n<p><em>*Also read</em> <a href=\"#how2\">how 2</a> : <a href=\"#seo\">bonus</a> : <a href=\"#why\">why</a></p>\n\n<p>Lifeguard four six, cleared direct Albuquerque, climb and maintain 17,000. Juliet Mike two one, turn left heading 115. Wayfarer 515, traffic 3 o’clock, King Air, turn left heading 085. Sierra alpha alpha contact Albuquerque Center 134.6. Contact Albuquerque Center 134.6. Wayfarer 515, descend to 10,000. Juliet Mike two one do you have that traffic at your 9 o’ clock. Wayfarer 515, do you have that traffic… </p>', '* All content is in articles 1 to 9\r\n* Listed in the default page template\r\n* Explained via the link below\r\n* Easy to replace content and colours\r\n* \"Read the Wave how-to part 1\":#how ', '<ul>\n <li>All content is in articles 1 to 9</li>\n <li>Listed in the default page template</li>\n <li>Explained via the link below</li>\n <li>Easy to replace content and colours</li>\n <li><a href=\"#how\">Read the Wave how-to part 1</a></li>\n</ul>', '6,7', '', '', 0, '', 0, 4, '1', '1', 'articles', '', '', '', 'wavy-waves', 'How it works', 'Waves made to order', 'y', '', '', '', '', '', '', '', '7245e73d7760cf72a5d82d8c2c6f117f', '2020-07-20'),
(2, '2020-07-20 13:38:45', NULL, 'peter', '2020-07-25 17:11:12', 'peter', 'What', '', 'Introductory blurb might go here (optional)\r\n', '<p>Introductory blurb might go here (optional)</p>', 'Option to show extra info here', '<p>Option to show extra info here</p>', '', 'who', 'why', 0, 'Comment', 0, 4, '1', '1', 'articles', '', '', 'Intro paragraph might go here', 'wave', 'Products & Services Intro', '', '', 'Who we are, testimonials, important notes', 'Why choose and how to use our products', '', '', '', '', '', 'fe04706ef87d6de0df1435dfbbe5e477', '2020-07-20'),
(5, '2020-07-20 13:48:07', NULL, 'peter', '2020-07-27 09:04:09', 'peter', 'Wave what and how 2', '', '_*Also read_ \"why\":#why : \"bonus\":#seo : \"how 1\":#how\r\n\r\nh4. In the Write panel\r\n\r\n* @Title@ and @Body@ are used for in-depth articles (like the one you are reading)\r\n* @Excerpt@ is used mainly for bullet points in What intro section\r\n* @Article image 1st ID@ is used for What intro section image\r\n* @Article image 2nd ID@ is used for Who and Why in-depth section image\r\n* @Subhead@ custom field is for subheadings \r\n* @Intro-Title@ custom field is used for the title in the What intro section\r\n* @Zebra@ custom field with a *y* becomes a class for the background colour\r\n* @Zebra@ custom field with a *y* also determines bullet types in the Intro section\r\n* @Category 1@, @Category 2@, @Subhead2@, @Subhead3@ and @Description@ are only used by Article#2 for section headings. Please read about Article#2 \"here.\":#articles-panel\r\n\r\nh4. Forms\r\n\r\nBesides _big-intro_, _what_, _who_, _why_, _intro-what_, _intro-who_, _intro-why_, _footer_ and _default_ forms described previously, the _body_aside_ and _body_header_ forms should be self-explanatory. Please note that in the _search_display_, _footer_ and _body_header_ forms I have hidden the @Search@ function because who needs to search a one-page site? However, you can unhide search if you wish (unhide all three if doing so). You will also have to uncomment two sections of the stylesheet too (they are both clearly labelled). Also go to Admin | Plugins and make @wet_haystack@ active.\r\n\r\nh4. Stylesheet\r\n\r\n@font-face declarations are included at the top so you don\'t have to rely on any external source. The fonts and the wave.css should be in the CSS folder.\r\n\r\nYou may well want to change the colour scheme so I\'ve grouped all colours together at the very end of the stylesheet. You can quickly see what applies to what and easily search and replace.\r\n\r\n_*Also read_ \"why\":#why : \"bonus\":#seo : \"how 1\":#how\r\n\r\nAgenbite of Inwit fortyfoot burgundy mellow yellow soft Dedalus contransmagnific and jewbangtantiality moody brooding. Oxen of the sun O rocks the snotgreen sea song nighttown like a shot off a shovel stately omphalos Sinbad the Sailor ineluctable modality of the visible Blazes Boylan Sandymount strand. Gerty MacDowell omphalos faintly scented urine gorgonzola la ci darem la mano letter Sinbad the Sailor oxen of the sun the scrotumtightening sea navel. Cyclops omphalos rhododendrons seedcake Sandymount strand metempsychosis. Smellow ineluctable modality of the visible nighttown kidneys Dedalus Circe Blazes Boylan song letter Bloom love laughs at locksmiths Ithaca met him pike hoses contransmagnificandjewbangtantiality. 7 Eccles Street the citizen contransmagnifica-jewbangtantiality plump yes I said yes I will Yes omphalos the scrotumtightening sea soft. Proteus sweets of sin the snotgreen sea metempsychosis sixteen Stephen ineluctable modality of the visible. Bloom plump O rocks stately the snotgreen sea Circe melons yes I said yes I will Yes love fortyfoot soft burgundy Sirens seedcake. ', '<p><em>*Also read</em> <a href=\"#why\">why</a> : <a href=\"#seo\">bonus</a> : <a href=\"#how\">how 1</a></p>\n\n<h4>In the Write panel</h4>\n\n<ul>\n <li><code>Title</code> and <code>Body</code> are used for in-depth articles (like the one you are reading)</li>\n <li><code>Excerpt</code> is used mainly for bullet points in What intro section</li>\n <li><code>Article image 1st ID</code> is used for What intro section image</li>\n <li><code>Article image 2nd ID</code> is used for Who and Why in-depth section image</li>\n <li><code>Subhead</code> custom field is for subheadings</li>\n <li><code>Intro-Title</code> custom field is used for the title in the What intro section</li>\n <li><code>Zebra</code> custom field with a <strong>y</strong> becomes a class for the background colour</li>\n <li><code>Zebra</code> custom field with a <strong>y</strong> also determines bullet types in the Intro section</li>\n <li><code>Category 1</code>, <code>Category 2</code>, <code>Subhead2</code>, <code>Subhead3</code> and <code>Description</code> are only used by Article#2 for section headings. Please read about Article#2 <a href=\"#articles-panel\">here.</a></li>\n</ul>\n\n<h4>Forms</h4>\n\n<p>Besides <em>big-intro</em>, <em>what</em>, <em>who</em>, <em>why</em>, <em>intro-what</em>, <em>intro-who</em>, <em>intro-why</em>, <em>footer</em> and <em>default</em> forms described previously, the <em>body_aside</em> and <em>body_header</em> forms should be self-explanatory. Please note that in the <em>search_display</em>, <em>footer</em> and <em>body_header</em> forms I have hidden the <code>Search</code> function because who needs to search a one-page site? However, you can unhide search if you wish (unhide all three if doing so). You will also have to uncomment two sections of the stylesheet too (they are both clearly labelled). Also go to Admin | Plugins and make <code>wet_haystack</code> active.</p>\n\n<h4>Stylesheet</h4>\n\n<p>@font-face declarations are included at the top so you don’t have to rely on any external source. The fonts and the wave.css should be in the <span class=\"caps\">CSS</span> folder.</p>\n\n<p>You may well want to change the colour scheme so I’ve grouped all colours together at the very end of the stylesheet. You can quickly see what applies to what and easily search and replace.</p>\n\n<p><em>*Also read</em> <a href=\"#why\">why</a> : <a href=\"#seo\">bonus</a> : <a href=\"#how\">how 1</a></p>\n\n<p>Agenbite of Inwit fortyfoot burgundy mellow yellow soft Dedalus contransmagnific and jewbangtantiality moody brooding. Oxen of the sun O rocks the snotgreen sea song nighttown like a shot off a shovel stately omphalos Sinbad the Sailor ineluctable modality of the visible Blazes Boylan Sandymount strand. Gerty MacDowell omphalos faintly scented urine gorgonzola la ci darem la mano letter Sinbad the Sailor oxen of the sun the scrotumtightening sea navel. Cyclops omphalos rhododendrons seedcake Sandymount strand metempsychosis. Smellow ineluctable modality of the visible nighttown kidneys Dedalus Circe Blazes Boylan song letter Bloom love laughs at locksmiths Ithaca met him pike hoses contransmagnificandjewbangtantiality. 7 Eccles Street the citizen contransmagnifica-jewbangtantiality plump yes I said yes I will Yes omphalos the scrotumtightening sea soft. Proteus sweets of sin the snotgreen sea metempsychosis sixteen Stephen ineluctable modality of the visible. Bloom plump O rocks stately the snotgreen sea Circe melons yes I said yes I will Yes love fortyfoot soft burgundy Sirens seedcake. </p>', '* In the link below\r\n* Please read about Write panel fields\r\n* Forms and stylesheet\r\n* Explained simply in the\r\n* \"Read the Wave how-to part 2\":#how2 ', '<ul>\n <li>In the link below</li>\n <li>Please read about Write panel fields</li>\n <li>Forms and stylesheet</li>\n <li>Explained simply in the</li>\n <li><a href=\"#how2\">Read the Wave how-to part 2</a></li>\n</ul>', '8,9', '', '', 0, '', 0, 4, '1', '1', 'articles', '', '', '', 'wave-what-and-how-2', 'How to Wave 2', 'Even more waves', '', '', '', '', '', '', '', '', 'a40f0c75e7355ce8ecb85c386774335d', '2020-07-20'),
(6, '2020-07-20 13:49:43', NULL, 'peter', '2020-07-25 17:25:38', 'peter', 'Bonus article', '', '_*Also read_ \"why\":#why : \"how 1\":#how : \"how 2\":#how2\r\n\r\nSearch Engine Optimisation is a must for websites that want to be found in search results. Getting links from high ranking sites with related content is generally acknowledged as most important but if a site is poor in its structural design and its content presentation, then search engines will downgrade it. \r\n\r\nGood web design should be made to suit all devices; a site should be easy to read at all sizes; mobile phone users should not have long waits for pages or images to load; it should be accessible to everyone, especially the target audience; beneath the surface, data should be semantically correct so that search engines can make sense of it and present it correctly in the search engine results pages (serps); and content should be interesting enough to keep people reading -- yes, search engines have some way of rating this too.\r\n\r\nThe default \"Textpattern\":textpattern.com/ theme does all these things and I hope the changes I\'ve made to create this theme also satisfy those _shoulds._ Below I\'ve added some notes gleaned over the years that I think are generally thought to be good practice for selling yourself or your services. They may also help you think about key words you might include for SEO in headings or strong or emphasised text. \r\n\r\nh4. Headline and Subheading\r\n\r\n* (They work best if...)\r\n* Main headline says what you do and who you do it for (your niche audience)\r\n* Subheadline says how it benefits the audience in some way and if possible...\r\n* Something unique, valuable or essential that the audience can relate to\r\n* (Otherwise, why should they read on?)\r\n\r\nh4. Intro section \r\n\r\n* (Headings, images or bullet points are best if they present...)\r\n* Vital, interesting info first\r\n* Succinct key points\r\n* Why your offering is so good\r\n* What they need to know\r\n* Essential info and just enough info\r\n\r\nh4. Things to consider\r\n\r\n* Who exactly is your audience?\r\n* Niche audience is very good\r\n* What exactly are they looking for?\r\n* Can you offer what they want?\r\n* What exact search terms might your audience use?\r\n* Why should they choose your services?\r\n* What makes you unique?\r\n* What experience do you have that\'s most relevant?\r\n* What can you show so that a stranger will trust you?\r\n\r\n_*Also read_ \"why\":#why : \"how 1\":#how : \"how 2\":#how2\r\n\r\nAstral plane paleo diet om, lingham positive affirmation gestalt. The dali lama my brothers and sisters fire tending, Hafiz promoting positive change. Rainbow vipassana incense, Dr. Bronner\'s midwifery taurus kundalini new moon. Psilocybin beltane acid tincture past life open-minded soul-level contract, reproductive system mala beads gifting circle. Talking stick channeling life coach goddess peace folk remedy, macrobiotic coconut water synchronicity soothing vibrations. Stevia kirlian photography gluten-free kefir compostable toilet, biomat saturn return. Enlightenment ecofriendly popcorn with brewers yeast massage therapist, infinite blessings on the playa. Namaste.\r\n', '<p><em>*Also read</em> <a href=\"#why\">why</a> : <a href=\"#how\">how 1</a> : <a href=\"#how2\">how 2</a></p>\n\n<p>Search Engine Optimisation is a must for websites that want to be found in search results. Getting links from high ranking sites with related content is generally acknowledged as most important but if a site is poor in its structural design and its content presentation, then search engines will downgrade it. </p>\n\n<p>Good web design should be made to suit all devices; a site should be easy to read at all sizes; mobile phone users should not have long waits for pages or images to load; it should be accessible to everyone, especially the target audience; beneath the surface, data should be semantically correct so that search engines can make sense of it and present it correctly in the search engine results pages (serps); and content should be interesting enough to keep people reading — yes, search engines have some way of rating this too.</p>\n\n<p>The default <a href=\"https://wave.gud.one/textpattern.com/\">Textpattern</a> theme does all these things and I hope the changes I’ve made to create this theme also satisfy those <em>shoulds.</em> Below I’ve added some notes gleaned over the years that I think are generally thought to be good practice for selling yourself or your services. They may also help you think about key words you might include for <span class=\"caps\">SEO</span> in headings or strong or emphasised text. </p>\n\n<h4>Headline and Subheading</h4>\n\n<ul>\n <li>(They work best if…)</li>\n <li>Main headline says what you do and who you do it for (your niche audience)</li>\n <li>Subheadline says how it benefits the audience in some way and if possible…</li>\n <li>Something unique, valuable or essential that the audience can relate to</li>\n <li>(Otherwise, why should they read on?)</li>\n</ul>\n\n<h4>Intro section </h4>\n\n<ul>\n <li>(Headings, images or bullet points are best if they present…)</li>\n <li>Vital, interesting info first</li>\n <li>Succinct key points</li>\n <li>Why your offering is so good</li>\n <li>What they need to know</li>\n <li>Essential info and just enough info</li>\n</ul>\n\n<h4>Things to consider</h4>\n\n<ul>\n <li>Who exactly is your audience?</li>\n <li>Niche audience is very good</li>\n <li>What exactly are they looking for?</li>\n <li>Can you offer what they want?</li>\n <li>What exact search terms might your audience use?</li>\n <li>Why should they choose your services?</li>\n <li>What makes you unique?</li>\n <li>What experience do you have that’s most relevant?</li>\n <li>What can you show so that a stranger will trust you?</li>\n</ul>\n\n<p><em>*Also read</em> <a href=\"#why\">why</a> : <a href=\"#how\">how 1</a> : <a href=\"#how2\">how 2</a></p>\n\n<p>Astral plane paleo diet om, lingham positive affirmation gestalt. The dali lama my brothers and sisters fire tending, Hafiz promoting positive change. Rainbow vipassana incense, Dr. Bronner’s midwifery taurus kundalini new moon. Psilocybin beltane acid tincture past life open-minded soul-level contract, reproductive system mala beads gifting circle. Talking stick channeling life coach goddess peace folk remedy, macrobiotic coconut water synchronicity soothing vibrations. Stevia kirlian photography gluten-free kefir compostable toilet, biomat saturn return. Enlightenment ecofriendly popcorn with brewers yeast massage therapist, infinite blessings on the playa. Namaste.</p>', '* Wave Is Search Engine Optimised\r\n* We are from Uranus\r\n* That\'s a really cool place and we are really really cool\r\n* We\'ve been controlling the waves for billions of years (it wasn\'t Neptune -- that\'s a myth)\r\n* \"Bonus article about selling yourself\":#seo', '<ul>\n <li>Wave Is Search Engine Optimised</li>\n <li>We are from Uranus</li>\n <li>That’s a really cool place and we are really really cool</li>\n <li>We’ve been controlling the waves for billions of years (it wasn’t Neptune — that’s a myth)</li>\n <li><a href=\"#seo\">Bonus article about selling yourself</a></li>\n</ul>', '10,11', '', '', 0, 'Comment', 0, 4, '1', '1', 'articles', '', '', '', 'optimised-waves', 'SEO and marketing', 'Why choose us?', 'y', 'Experience and awards', '', '', '', '', '', '', 'a09920b11dc56a42f3f59c9bed515f07', '2020-07-20'),
(7, '2020-07-20 13:50:45', NULL, 'peter', '2020-07-27 09:18:08', 'peter', 'Our customers say...', '', 'Wonderful! I ordered a full Hawaiian, it was delivered to my door instantly and I really enjoyed surfing it. My neighbours didn\'t even get wet. I don\'t know how they do it! ~ <span>Iris G, Blackburn</span>\r\n\r\nWiggly waves! Aquaboogie baby! You can dance underwater and not get wet! Psychoalphadiscobetabioaquadooloop, psychoalphadiscobetabiohumanyouloop ~ <span>Parliament, 1978</span>\r\n\r\nI do not believe it! I swear I do not believe it! ~ <span>John McEnroe</span>\r\n\r\nThey have hair waves to rival my own! ~ <span>Donald Trump</span>', '<p>Wonderful! I ordered a full Hawaiian, it was delivered to my door instantly and I really enjoyed surfing it. My neighbours didn’t even get wet. I don’t know how they do it! ~ <span>Iris G, Blackburn</span></p>\n\n<p>Wiggly waves! Aquaboogie baby! You can dance underwater and not get wet! Psychoalphadiscobetabioaquadooloop, psychoalphadiscobetabiohumanyouloop ~ <span>Parliament, 1978</span></p>\n\n<p>I do not believe it! I swear I do not believe it! ~ <span>John McEnroe</span></p>\n\n<p>They have hair waves to rival my own! ~ <span>Donald Trump</span></p>', '', '', '1,12', '', '', 0, '', 0, 4, '1', '1', 'articles', '', '', '', 'our-customers-say', 'Thank-you!', '', '', '', '', '', '', '', '', '', '8ec9a65652ffe8d0dc4aa613979b3471', '2020-07-20'),
(8, '2020-07-20 13:51:49', NULL, 'peter', '2020-07-25 17:27:25', 'peter', 'Important notes', '', '# We deliver instantly. Be prepared!\r\n# We have every kind of wave. Just ask!\r\n# We do not do Mexican waves. Don\'t ask.\r\n# Sunday is our day of rest. Do not disturb!\r\n\r\nWe recommend: \r\n\r\n# Surf waves - stand at your front door in your swimwear\r\n# Energy waves - lie down at your front door, ready to be energized\r\n# Hair waves - not available for bald men. Bald women please enquire\r\n\r\nJammer cheers drive dolore ut keener wassat. Dint anim gurt big sed commodo innum theys, oozee est voluptate. Ut dont do that, mind alright me babber, consequat wheres attoo labore bemmie. Ut gas ed adipisicing, commodo excepteur id inchew exercitation reprehenderit oozee ut. Bemmie jammy cheers drive thee yer. Laboris largurr do alright me babber, quis eiusmod warter.', '<ol>\n <li>We deliver instantly. Be prepared!</li>\n <li>We have every kind of wave. Just ask!</li>\n <li>We do not do Mexican waves. Don’t ask.</li>\n <li>Sunday is our day of rest. Do not disturb!</li>\n</ol>\n\n<p>We recommend: </p>\n\n<ol>\n <li>Surf waves – stand at your front door in your swimwear</li>\n <li>Energy waves – lie down at your front door, ready to be energized</li>\n <li>Hair waves – not available for bald men. Bald women please enquire</li>\n</ol>\n\n<p>Jammer cheers drive dolore ut keener wassat. Dint anim gurt big sed commodo innum theys, oozee est voluptate. Ut dont do that, mind alright me babber, consequat wheres attoo labore bemmie. Ut gas ed adipisicing, commodo excepteur id inchew exercitation reprehenderit oozee ut. Bemmie jammy cheers drive thee yer. Laboris largurr do alright me babber, quis eiusmod warter.</p>', '', '', '1,13', '', '', 0, 'Comment', 0, 4, '1', '1', 'articles', '', '', '', 'important-notes', '', '', 'y', '', '', '', '', '', '', '', '3d8fb7301468747202b4fab8b5af2d98', '2020-07-20'),
(9, '2020-07-20 14:07:57', NULL, 'peter', '2020-07-25 17:28:20', 'peter', 'Footer', '', '<address class=\"h-card vcard touch\">\r\n <p class=\"touch\">\r\n <a href=\"http://wave/\">© WAVE.WAVE 2020 - 2200\r\n </a> \r\n <a class=\"p-tel tel\" href=\"tel:01234567890\">01234 567890\r\n </a> \r\n <a class=\"u-email email\" href=\"mailto:wavydavy(AT)wave.wave\">WAVYDAVY@WAVE.WAVE\r\n </a><br />\r\n <span class=\"p-street-address street-address\">High Street</span>, \r\n <span class=\"p-locality locality\">Big Town, Big City</span>, \r\n <span class=\"p-region region\">Middleshire</span>, \r\n <span class=\"p-postal-code postal-code\">BS1 BSTOO</span> \r\n </p>\r\n</address>\r\n\r\n<p>\r\n<strong>Disclaimer</strong>: Our Uranian waves cannot be held responsible for climate change, world-wide flooding, loss of power, loss of energy, magnetic anomolies or other such global catastrophes — humans have already caused these themselves. Furthermore, please carefully read the standard Uranus small print: \r\n<small><br />Haxx0r ipsum if class frack baz pragma hello world injection win salt highjack ctl-c machine code cat ip wabbit for segfault. Void printf gnu packet sql do January 1, 1970 bar double cd Dennis Ritchie snarf sudo. Void script kiddies null piggyback mountain dew hexadecimal protected ascii strlen false xss d00dz boolean fork char semaphore. Sql mainframe *.* fopen new eaten by a grue injection tera bang foo machine code ack L0phtCrack fork over clock Donald Knuth man pages. Private fatal brute force race condition client gobble float ip boolean it\'s a feature. Sudo firewall tcp suitably small values packet sniffer kilo bytes chown gnu concurrently. Css ctl-c baz for stdio.h false wabbit cache ack endif default rm -rf hexadecimal nak infinite loop. Cd L0phtCrack finally hash overflow fatal gcc ifdef Donald Knuth linux warez do alloc mailbomb foad lib public float Starcraft var. Loop break pwned concurrently grep char big-endian I\'m sorry peeps, I\'m afraid I can\'t do that.\r\n</small>\r\n\r\n</p>', '<address class=\"h-card vcard touch\">\r\n <p class=\"touch\">\r\n <a href=\"http://wave/\">© WAVE.WAVE 2020 - 2200\r\n </a> \r\n <a class=\"p-tel tel\" href=\"tel:01234567890\">01234 567890\r\n </a> \r\n <a class=\"u-email email\" href=\"mailto:wavydavy(AT)wave.wave\">WAVYDAVY@WAVE.WAVE\r\n </a><br />\r\n <span class=\"p-street-address street-address\">High Street</span>, \r\n <span class=\"p-locality locality\">Big Town, Big City</span>, \r\n <span class=\"p-region region\">Middleshire</span>, \r\n <span class=\"p-postal-code postal-code\">BS1 BSTOO</span> \r\n </p>\r\n</address>\r\n\r\n<p>\r\n<strong>Disclaimer</strong>: Our Uranian waves cannot be held responsible for climate change, world-wide flooding, loss of power, loss of energy, magnetic anomolies or other such global catastrophes — humans have already caused these themselves. Furthermore, please carefully read the standard Uranus small print: \r\n<small><br />Haxx0r ipsum if class frack baz pragma hello world injection win salt highjack ctl-c machine code cat ip wabbit for segfault. Void printf gnu packet sql do January 1, 1970 bar double cd Dennis Ritchie snarf sudo. Void script kiddies null piggyback mountain dew hexadecimal protected ascii strlen false xss d00dz boolean fork char semaphore. Sql mainframe *.* fopen new eaten by a grue injection tera bang foo machine code ack L0phtCrack fork over clock Donald Knuth man pages. Private fatal brute force race condition client gobble float ip boolean it\'s a feature. Sudo firewall tcp suitably small values packet sniffer kilo bytes chown gnu concurrently. Css ctl-c baz for stdio.h false wabbit cache ack endif default rm -rf hexadecimal nak infinite loop. Cd L0phtCrack finally hash overflow fatal gcc ifdef Donald Knuth linux warez do alloc mailbomb foad lib public float Starcraft var. Loop break pwned concurrently grep char big-endian I\'m sorry peeps, I\'m afraid I can\'t do that.\r\n</small>\r\n\r\n</p>', '', '', '', '', '', 0, 'Comment', 0, 4, '0', '1', 'articles', '', '', '', 'footer', '', '', '', '', '', '', '', '', '', '', '89dd68686962d7ca9772670fed755b7c', '2020-07-20');
-- --------------------------------------------------------
--
-- Table structure for table `txp_category`
--
CREATE TABLE `txp_category` (
`id` int(11) NOT NULL,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`parent` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`lft` int(11) NOT NULL DEFAULT 0,
`rgt` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_category`
--
INSERT INTO `txp_category` (`id`, `name`, `type`, `parent`, `lft`, `rgt`, `title`, `description`) VALUES
(1, 'root', 'article', '', 1, 8, 'root', ''),
(2, 'root', 'link', '', 1, 4, 'root', ''),
(3, 'root', 'image', '', 1, 4, 'root', ''),
(4, 'root', 'file', '', 1, 2, 'root', ''),
(5, 'what', 'article', 'root', 2, 3, 'What', ''),
(6, 'who', 'article', 'root', 4, 5, 'Who', ''),
(7, 'why', 'article', 'root', 6, 7, 'Why', ''),
(8, 'textpattern', 'link', 'root', 2, 3, 'Textpattern', ''),
(9, 'site-design', 'image', 'root', 2, 3, 'site-design', '');
-- --------------------------------------------------------
--
-- Table structure for table `txp_css`
--
CREATE TABLE `txp_css` (
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`css` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`skin` varchar(63) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
`lastmod` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_css`
--
INSERT INTO `txp_css` (`name`, `css`, `skin`, `lastmod`) VALUES
('default', '@charset \"UTF-8\";\n/* ==========================================================================\n Styling and layout for all media\n ========================================================================== */\n/* Reset\n ========================================================================== */\n/**\n * Add the correct display in Edge, IE 11, and Firefox.\n */\ndetails,\nmain {\n display: block;\n}\n\n/**\n * Add the correct vertical alignment in Chrome, Firefox, and Opera.\n */\nprogress {\n vertical-align: baseline;\n}\n\n/**\n * Add the correct display in all browsers.\n */\nsummary {\n display: list-item;\n}\n\n/**\n * Add the correct display in IE 11.\n */\ntemplate {\n display: none;\n}\n\n/**\n * Remove tap delay in modern browsers.\n */\na,\ninput,\nbutton {\n touch-action: manipulation;\n}\n\n/* Clearfix\n ========================================================================== */\nheader::after,\nfooter::after,\nnav ul::after,\nnav ol::after,\n.container::after,\n.paginator::after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n/* ==========================================================================\n Styling and layout for screen media (mobile first)\n ========================================================================== */\n@media screen {\n /* Layout\n ========================================================================== */\n /**\n * 1. Prevent adjustments of font size after orientation changes in\n * IE on Windows Phone and in iOS.\n */\n html {\n /* 1 */\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n text-size-adjust: 100%;\n }\n\n /**\n * 1. Set `body` to `relative` to allow positioning of absolute elements.\n * 2. Remove default margin.\n */\n body {\n /* 1 */\n position: relative;\n /* 2 */\n margin: 0;\n background: #f7f7f7;\n }\n\n /**\n * Outer wrapper for main layouts.\n *\n * Example HTML:\n *\n * <div class=\"wrapper\">\n * <div class=\"container\">\n * Content\n * </div>\n * </div>\n */\n .wrapper {\n padding: 1px 0;\n border-bottom: 1px solid #cccccc;\n background: #ffffff;\n }\n\n /**\n * Wrapper for layouts, and for site header/footer.\n *\n * Example HTML:\n *\n * <div class=\"wrapper\">\n * <div class=\"container\">\n * Content\n * </div>\n * </div>\n */\n .site-header,\n.site-footer,\n.container {\n width: 88%;\n max-width: 54em;\n margin: 0 auto;\n }\n\n /**\n * Additional styling for child content within site header.\n */\n .site-header {\n padding: 1em 0;\n }\n .site-header h2 {\n margin: 0;\n }\n .site-header h3 {\n margin: 0.5em 0 0;\n font-family: \"PT Serif\", Constantia, \"Lucida Bright\", Lucidabright, \"Lucida Serif\", Lucida, \"DejaVu Serif\", \"Bitstream Vera Serif\", \"Liberation Serif\", Georgia, serif;\n font-size: 1.25rem;\n font-style: italic;\n font-weight: normal;\n line-height: 1.4;\n }\n\n /**\n * Additional styling for child content within site footer.\n */\n .site-footer {\n padding: 0.5em 0;\n }\n\n /**\n * Styling for articles.\n *\n * 1. Prevent really, really long words in article from breaking layout.\n */\n .article {\n margin-bottom: 2em;\n /* 1 */\n word-wrap: break-word;\n }\n\n /**\n * Styling for complementary content.\n *\n * Initially the sidebar appears under main content, it is then repositioned\n * with media queries at 2nd breakpoint.\n *\n * 1. Prevent really, really long words in article from breaking layout.\n */\n .complementary-content {\n margin: 2em -6% 0;\n padding: 0 6%;\n border-top: 2px dashed #cccccc;\n /* 1 */\n word-wrap: break-word;\n }\n\n /**\n * Hide text but still allow screen reader access.\n *\n * Example HTML:\n *\n * <p class=\"accessibility\">\n */\n .accessibility {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0 0 0 0);\n border: 0;\n white-space: nowrap;\n }\n\n /* Navigation\n ========================================================================== */\n /**\n * Style mobile first version of the navigation menu. Desktop version will\n * override some rules with extra styling at 1st breakpoint.\n *\n * Example HTML:\n *\n * <nav class=\"site-navigation\">\n * <div>\n * <ul>\n * <li class=\"active\"><a></li>\n * <li><a></li>\n * <li><a></li>\n * </ul>\n * <div class=\"search\">\n * <form>\n * <input type=\"search\">\n * </form>\n * </div>\n * </div>\n * </nav>\n */\n .site-navigation {\n background-color: #dddddd;\n }\n .site-navigation > div {\n position: relative;\n max-width: 54em;\n margin: 0 auto;\n }\n .site-navigation ul {\n margin: 0;\n padding: 0;\n border: solid #cccccc;\n border-width: 1px 0;\n list-style: none;\n }\n .site-navigation li {\n border: solid #cccccc;\n border-width: 1px 0;\n background-color: #eeeeee;\n }\n .site-navigation li:hover {\n background-color: #f8f8f8;\n }\n .site-navigation li:active {\n background-color: lightgray;\n box-shadow: inset 0 0.2em 0.25em rgba(0, 0, 0, 0.15);\n }\n .site-navigation li.active {\n background-color: white;\n box-shadow: none;\n }\n .site-navigation a {\n display: block;\n padding: 0.5em 6%;\n color: #333333;\n }\n .site-navigation a:hover, .site-navigation a:visited {\n color: #333333;\n text-decoration: none;\n }\n .site-navigation a:active {\n color: #1a1a1a;\n text-decoration: none;\n }\n\n /**\n * Search field in navigation.\n */\n .search {\n padding: 1em 6% 0.5em;\n background: #ffffff;\n }\n .search input[type=search] {\n width: 16em;\n height: 2.125em;\n padding-right: 0.1875em;\n padding-left: 2em;\n border-radius: 0.5em;\n background: url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'32\' height=\'32\' viewBox=\'0 0 32 32\'%3E%3Cg fill=\'%23333\'%3E%3Cpath d=\'M4,13c0-5,4-9,9-9c5,0,9,4,9,9c0,5-4,9-9,9C8,22,4,18,4,13z M13,19c3.3,0,6-2.7,6-6s-2.7-6-6-6s-6,2.7-6,6S9.7,19,13,19z\'/%3E%3Cpath d=\'M17.5,19l1.5-1.5l4.5,3L28,25c0,0,0,1.5-0.75,2.25S25,28,25,28l-4.5-4.5L17.5,19z\'/%3E%3C/g%3E%3C/svg%3E\") no-repeat left center;\n background-size: 2em 2em;\n }\n\n /* Links\n ========================================================================== */\n /**\n * 1. Specify link colour.\n * 2. Remove default underline style from non-hover state links.\n * 3. Interrupt the decoration line to let the shape of the text show through\n * in supported browsers.\n */\n a {\n /* 1 */\n color: #004cbf;\n /* 2 */\n text-decoration: none;\n /* 3 */\n -webkit-text-decoration-skip: ink;\n text-decoration-skip-ink: auto;\n }\n a:hover, a:active {\n outline: 0;\n color: #0066ff;\n text-decoration: underline;\n }\n a:focus {\n outline: 1px solid #0066ff;\n }\n\n /**\n * Additional styling for `h1`-`h3` heading links.\n *\n * 1. Expanded CSS level 3 `text-decoration-color` property in supported\n * browsers, older browsers ignore this addition.\n */\n h1 a,\nh2 a,\nh3 a,\nh4 a,\nh5 a,\nh6 a {\n color: #000000;\n }\n h1 a:hover, h1 a:active,\nh2 a:hover,\nh2 a:active,\nh3 a:hover,\nh3 a:active,\nh4 a:hover,\nh4 a:active,\nh5 a:hover,\nh5 a:active,\nh6 a:hover,\nh6 a:active {\n color: #000000;\n /* 1 */\n -webkit-text-decoration-color: rgba(51, 51, 51, 0.5);\n text-decoration-color: rgba(51, 51, 51, 0.5);\n }\n\n /**\n * Paginator (prev/next) navigation links on articles/article lists.\n *\n * Example HTML:\n *\n * <nav class=\"paginator\">\n * <a rel=\"prev\">\n * <a rel=\"next\">\n */\n .paginator {\n clear: both;\n }\n .paginator [rel=prev] {\n float: left;\n }\n .paginator [rel=next] {\n float: right;\n }\n\n /**\n * Visually hide unfocussed/inactive ‘skip links’.\n *\n * Example HTML:\n *\n * <a class=\"skip-link\">\n */\n .skip-link {\n position: absolute;\n z-index: 2;\n top: 1px;\n left: 1px;\n padding: 0.25em 0.5em;\n transform: translateY(-5em);\n transition: transform 0.25s ease-in-out;\n background-color: white;\n color: #333333;\n font-family: system-ui, -apple-system, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n }\n .skip-link:focus, .skip-link:active {\n transform: translateY(0);\n }\n\n /* Typography\n ========================================================================== */\n /**\n * Establish baseline.\n */\n html {\n font-size: 16px;\n line-height: 1.5;\n }\n\n /**\n * Global font and text colour.\n */\n body {\n color: #333333;\n font-family: \"PT Serif\", Constantia, \"Lucida Bright\", Lucidabright, \"Lucida Serif\", Lucida, \"DejaVu Serif\", \"Bitstream Vera Serif\", \"Liberation Serif\", Georgia, serif;\n }\n\n /**\n * Sans-serif font for main navigation menu.\n */\n .site-navigation {\n font-family: system-ui, -apple-system, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-weight: bold;\n }\n\n /**\n * Harmonize size, style and vertical margin of headings.\n */\n h1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n clear: both;\n color: #000000;\n font-family: system-ui, -apple-system, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n }\n\n h1 {\n margin: 0.6315789em 0;\n font-size: 2.375rem;\n letter-spacing: -0.25px;\n line-height: 1.1842105;\n }\n\n h2 {\n margin: 0.75em 0;\n font-size: 2rem;\n letter-spacing: -0.25px;\n line-height: 1.25;\n }\n\n h3 {\n margin: 1em 0;\n font-size: 1.5rem;\n letter-spacing: -0.25px;\n line-height: 1.3333333;\n }\n\n h4 {\n margin: 1em 0;\n font-size: 1.25rem;\n line-height: 1.4;\n }\n\n h5 {\n margin: 1em 0;\n font-size: 1.125rem;\n line-height: 1.4444444;\n }\n\n h6 {\n margin: 1em 0;\n font-size: 1rem;\n line-height: 1.5;\n }\n\n /**\n * Add the correct font weight in Chrome, Edge, and Safari.\n */\n b,\nstrong {\n font-weight: bolder;\n }\n\n /**\n * Add vertical margin to addresses.\n */\n address {\n margin: 1em 0;\n }\n\n /**\n * Additional styling for blockquotes.\n */\n blockquote {\n margin: 0.8em 0;\n font-size: 1.25rem;\n font-style: italic;\n line-height: 1.4;\n text-align: center;\n }\n\n /**\n * 1. Remove the bottom border in Chrome 57+.\n * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n */\n abbr[title] {\n /* 1 */\n border-bottom: 0;\n /* 2 */\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n }\n\n /**\n * Consistent styling for `mark` and `var` tags.\n */\n mark,\nvar {\n padding: 0 0.25em;\n border-radius: 0.25em;\n background: #fff9e1;\n color: #333333;\n }\n\n /**\n * Harmonize size and style of computer text.\n */\n pre,\ncode,\nkbd,\nsamp {\n border: 1px solid #e3e3e3;\n border-radius: 0.2857143em;\n background-color: #f7f7f7;\n color: #333333;\n font-family: Menlo, Consolas, Monaco, monospace;\n font-size: 0.875rem;\n line-height: 1.5;\n }\n\n code,\nkbd,\nsamp {\n padding: 1px 0.21429em;\n }\n\n /**\n * Additional stylng for preformatted text/code.\n *\n * 1. Contain overflow in all browsers.\n * 2. Don\'t wrap long words.\n * 3. Set tab size to 4 spaces.\n */\n pre {\n padding: 0.5714286em 1.1428571em;\n /* 1 */\n overflow-x: auto;\n /* 2 */\n word-wrap: normal;\n /* 3 */\n -moz-tab-size: 4;\n -o-tab-size: 4;\n tab-size: 4;\n }\n pre code {\n padding: 0;\n border: 0;\n background-color: transparent;\n direction: ltr;\n font-size: 1em;\n -webkit-hyphens: none;\n -ms-hyphens: none;\n hyphens: none;\n text-align: left;\n word-wrap: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: pre;\n }\n\n /**\n * Prevent `sub` and `sup` elements from affecting the line height in all\n * browsers.\n */\n sub,\nsup.footnote,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n }\n\n sup {\n top: -0.5em;\n }\n\n sub {\n bottom: -0.25em;\n }\n\n /**\n * Harmonize size and style of small text.\n */\n small,\nfigcaption,\ntfoot,\n.footnote {\n font-size: 0.8125rem;\n line-height: 1.5;\n }\n\n figcaption,\ntfoot,\n.footnote {\n color: #585858;\n }\n\n figcaption {\n margin-top: 0.5em;\n font-style: italic;\n }\n\n /**\n * 1. Add the correct box sizing in Firefox.\n * 2. Show the overflow in Edge and IE.\n */\n hr {\n /* 1 */\n box-sizing: content-box;\n height: 24px;\n margin: 1em 0;\n /* 2 */\n overflow: visible;\n border: 0;\n background: url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 240 24\'%3E%3Cpath fill=\'%23333\' d=\'M0,0c1.742,13.61,54.74,20.912,119.995,15.279C184.922,9.679,238.594,13.024,240,24c-1.744-13.613-54.742-20.913-120.005-15.284C55.078,14.32,1.405,10.973,0,0z\'/%3E%3C/svg%3E\") 50% 50% no-repeat;\n background-size: 240px 24px;\n }\n\n /* Support for non-latin languages (can be removed if not required)\n ========================================================================== */\n /**\n * Bidirectional (bidi) text support.\n * See: https://www.w3.org/International/articles/inline-bidi-markup/#cssshim\n */\n [dir=ltr],\n[dir=rtl] {\n unicode-bidi: -webkit-isolate;\n unicode-bidi: isolate;\n }\n\n bdo[dir=ltr],\nbdo[dir=rtl] {\n unicode-bidi: isolate-override;\n }\n\n /**\n * Preferred font for Japanese language.\n */\n :lang(ja) {\n font-family: \"Hiragino Sans\", \"Hiragino Kaku Gothic Pro\", \"Meiryo UI\", sans-serif;\n font-weight: 300;\n }\n\n /**\n * Preferred font for Korean language.\n */\n :lang(ko) {\n font-family: GulimChe, Gulim, sans-serif;\n }\n\n /**\n * Preferred font for simplified Chinese (PRC) language.\n */\n :lang(zh-cn) {\n font-family: \"PingFang SC\", SimHei, sans-serif;\n }\n\n /**\n * Preferred font for traditional Chinese (Taiwan, Hong Kong) language.\n */\n :lang(zh-tw) {\n font-family: \"PingFang TC\", PMingLiU, sans-serif;\n }\n\n /**\n * Suppress `text-decoration` in some RTL languages for better legibility.\n */\n [lang|=ar] a:hover,\n[lang|=fa] a:hover,\n[lang|=ur] a:hover {\n text-decoration: none;\n }\n\n /**\n * Computer code should be LTR.\n */\n [dir=rtl] code {\n direction: ltr;\n }\n\n /**\n * Swap image alignment right/left positions in RTL languages.\n */\n [dir=rtl] img.align-left {\n margin: 1em 0 1em 1em;\n float: right;\n }\n [dir=rtl] img.align-right {\n margin: 1em 1em 1em 0;\n float: left;\n }\n\n /**\n * Swap table caption alignment in RTL languages.\n */\n [dir=rtl] caption {\n text-align: right;\n }\n\n /**\n * Swap table cell text alignments in RTL languages.\n */\n [dir=rtl] th,\n[dir=rtl] td {\n text-align: right;\n }\n\n /**\n * Swap menu/list padding positions in RTL languages.\n */\n [dir=rtl] menu,\n[dir=rtl] ol,\n[dir=rtl] ul {\n padding: 0 2em 0 0;\n }\n\n [dir=rtl] .site-navigation ul,\n[dir=rtl] .article-list {\n padding: 0;\n }\n\n /**\n * Swap definition description margin positions in RTL languages.\n */\n [dir=rtl] dd {\n margin: 0 2em 0 0;\n }\n\n /**\n * Swap checkbox/radio margin positions in RTL languages.\n */\n [dir=rtl] input[type=checkbox] + label,\n[dir=rtl] input[type=radio] + label {\n margin: 0 0 0 0.5em;\n }\n [dir=rtl] input[type=checkbox] + label:last-of-type,\n[dir=rtl] input[type=radio] + label:last-of-type {\n margin: 0;\n }\n\n /**\n * Swap `select` icon position in RTL languages.\n */\n [dir=rtl] select {\n padding-right: 0.1875em;\n padding-left: 1.5em;\n background-position: 0.5em center;\n }\n\n /**\n * Swap paginator (prev/next) navigation links on articles/article lists.\n */\n [dir=rtl] .paginator [rel=prev] {\n float: right;\n }\n [dir=rtl] .paginator [rel=next] {\n float: left;\n }\n\n /**\n * Swap ‘skip links’ position in RTL languages.\n */\n [dir=rtl] .skip-link {\n right: 1px;\n left: auto;\n }\n\n /**\n * Swap anchor float position on comments.\n */\n [dir=rtl] .comments h4 .comment-anchor {\n float: left;\n }\n\n /* Embedded content\n ========================================================================== */\n /**\n * Add the correct display in IE 11.\n */\n video {\n display: inline-block;\n }\n\n /**\n * Make embedded elements responsive.\n */\n img,\nvideo {\n max-width: 100%;\n height: auto;\n }\n\n /**\n * Images.\n *\n * 1. Remove the gap between images and the bottom of their containers.\n *\n * Image alignment (compatible with Textile markup syntax).\n *\n * Example HTML:\n *\n * <img class=\"align-left\">\n * <img class=\"align-right\">\n * <img class=\"align-center\">\n */\n img {\n /* 1 */\n vertical-align: middle;\n }\n img.align-left {\n margin: 1em 1em 1em 0;\n float: left;\n }\n img.align-right {\n margin: 1em 0 1em 1em;\n float: right;\n }\n img.align-center {\n display: block;\n margin: 1em auto;\n }\n\n /**\n * Consistent margins on `figure`.\n */\n figure {\n margin: 1em 0;\n }\n\n /* Tables\n ========================================================================== */\n /**\n * Consistent tables.\n */\n table {\n width: 100%;\n margin-bottom: 1em;\n border-spacing: 0;\n border-collapse: collapse;\n }\n\n /**\n * Styling of table captions.\n */\n caption {\n margin-bottom: 0.5em;\n font-style: italic;\n text-align: left;\n }\n\n /**\n * Make table cells align top and left by default.\n */\n th,\ntd {\n padding: 0.5em;\n border: 1px solid #d4d4d4;\n vertical-align: top;\n text-align: left;\n }\n\n /**\n * Emphasize table header.\n */\n thead tr {\n background-color: #eeeeee;\n }\n thead th,\nthead td {\n border: 1px solid #cccccc;\n }\n\n /**\n * \'Zebra striping\' of `tbody` rows.\n */\n tbody tr:nth-child(even) {\n background-color: #f7f7f7;\n }\n\n /**\n * Adjust padding of table footer due to smaller font size.\n */\n tfoot th,\ntfoot td {\n padding: 0.6666667em;\n }\n\n /**\n * Multi-row span vertical cell alignments.\n */\n [rowspan] {\n vertical-align: middle;\n }\n\n /* Lists\n ========================================================================== */\n /**\n * Address paddings set differently.\n */\n menu,\nol,\nul {\n padding: 0 0 0 2em;\n }\n\n /**\n * Remove margins from nested lists.\n */\n li > ul,\nli > ol {\n margin: 0;\n }\n\n /**\n * CSS Lists and Counters Module Level 3 list marker styling.\n */\n li::marker {\n color: color-text-heading;\n }\n\n /**\n * Address margins set differently.\n */\n dd {\n margin: 0 0 0 2em;\n }\n\n /**\n * Additional styling for article lists.\n *\n * Example HTML:\n *\n * <ul class=\"article-list\">\n */\n .article-list {\n margin: 0 0 2em;\n padding: 0;\n border-top: 1px solid #cccccc;\n list-style: none;\n }\n .article-list li {\n margin-bottom: 0;\n border-bottom: 1px solid #cccccc;\n }\n\n /* Forms\n ========================================================================== */\n /**\n * 1. Address width being affected by wide descendants in Chrome, Firefox.\n * 2. Define consistent fieldset border, margin, and padding.\n */\n fieldset {\n /* 1 */\n min-width: 0;\n /* 2 */\n margin: 1em 0;\n padding: 1px 1em;\n border: 1px solid #cccccc;\n }\n\n /**\n * Normalize styling of `legend`.\n *\n * 1. Correct wrapping not present in IE 11 and Edge 12/13.\n * 2. Remove padding so people aren\'t caught out if they zero out fieldsets.\n * 3. Correct `color` not being inherited from fieldset in IE 11.\n */\n legend {\n /* 1 */\n display: table;\n /* 1 */\n box-sizing: border-box;\n /* 1 */\n max-width: 100%;\n /* 2 */\n padding: 0;\n /* 3 */\n color: inherit;\n /* 1 */\n white-space: normal;\n }\n\n /**\n * Show the overflow in Edge.\n */\n button,\ninput {\n overflow: visible;\n }\n\n /**\n * 1. Prevent elements from spilling out of their parent.\n * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.\n * 3. Correct font properties not being inherited.\n */\n button,\ninput,\noptgroup,\nselect,\ntextarea {\n box-sizing: border-box;\n /* 1 */\n max-width: 100%;\n /* 2 */\n margin: 0;\n color: #000000;\n font-family: system-ui, -apple-system, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n /* 3 */\n font-size: 1rem;\n line-height: 1.375;\n vertical-align: baseline;\n }\n\n /**\n * Styling of form input fields.\n *\n * 1. Remove browser-specific default styling.\n */\n [type=color],\n[type=date],\n[type=datetime],\n[type=datetime-local],\n[type=email],\n[type=month],\n[type=number],\n[type=password],\n[type=search],\n[type=tel],\n[type=text],\n[type=time],\n[type=url],\n[type=week],\nselect,\ntextarea {\n height: 2em;\n padding: 0.25em 0.1875em;\n border: 1px solid #cccccc;\n border-radius: 0;\n background: #ffffff;\n /* 1 */\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n }\n [type=color]:focus,\n[type=date]:focus,\n[type=datetime]:focus,\n[type=datetime-local]:focus,\n[type=email]:focus,\n[type=month]:focus,\n[type=number]:focus,\n[type=password]:focus,\n[type=search]:focus,\n[type=tel]:focus,\n[type=text]:focus,\n[type=time]:focus,\n[type=url]:focus,\n[type=week]:focus,\nselect:focus,\ntextarea:focus {\n border-color: #0066ff;\n outline: 1px solid transparent;\n }\n\n /**\n * 1. Remove any excess padding.\n * 2. Correct margins for inline checkbox/radio labels.\n */\n [type=checkbox],\n[type=radio] {\n /* 1 */\n padding: 0;\n }\n [type=checkbox] + label,\n[type=radio] + label {\n /* 2 */\n margin: 0 0.5em 0 0;\n }\n [type=checkbox] + label:last-of-type,\n[type=radio] + label:last-of-type {\n /* 2 */\n margin: 0;\n }\n\n /**\n * Correct the cursor style of increment and decrement buttons in Safari.\n */\n [type=number]::-webkit-inner-spin-button,\n[type=number]::-webkit-outer-spin-button {\n height: auto;\n }\n\n /**\n * Remove the inner padding in Chrome and Safari on macOS.\n */\n [type=search]::-webkit-search-decoration {\n /* autoprefixer: off */\n appearance: none;\n }\n\n /**\n * Use indicator icon to signify the drop-down ability of `select`.\n */\n select {\n padding-right: 1.5em;\n background: #ffffff url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'17\' height=\'5\' viewBox=\'0 0 17 5\'%3E%3Cpolygon fill=\'%23333\' points=\'0,0 5,5 10,0\'/%3E%3C/svg%3E\") right center no-repeat;\n background-size: 1.0625em 0.3125em;\n text-transform: none;\n }\n\n /**\n * Remove browser-specific `select` UI in IE 11.\n */\n select::-ms-expand {\n opacity: 0;\n }\n\n /**\n * Override height and background set in a previous rule and allow auto height.\n */\n select[size],\nselect[multiple] {\n height: auto;\n padding-right: 0.5em;\n background-image: none;\n }\n\n /**\n * Override height set in rule above and restrict to one line field.\n */\n select[size=\"0\"],\nselect[size=\"1\"] {\n height: 2em;\n }\n\n /**\n * Normalize styling of `optgroup`.\n */\n optgroup {\n font-style: normal;\n font-weight: bold;\n }\n\n /**\n * 1. Remove default vertical scrollbar in IE 11.\n * 2. Remove unwanted space below `textarea` in Safari, Chrome, Opera.\n * 3. Restrict to vertical resizing to prevent layout breakage.\n */\n textarea {\n width: 100%;\n height: auto;\n min-height: 3em;\n /* 1 */\n overflow: auto;\n /* 2 */\n vertical-align: top;\n /* 3 */\n resize: vertical;\n }\n\n /**\n * Make sure disabled elements really are disabled and styled appropriately.\n *\n * 1. Override default iOS opacity setting.\n * 2. Re-set default cursor for disabled elements.\n */\n [disabled],\n[disabled] option,\n[disabled] optgroup,\nspan.disabled {\n border-color: #d4d4d4 !important;\n /* 1 */\n opacity: 1;\n background: #eeeeee !important;\n box-shadow: none !important;\n color: #aaaaaa !important;\n text-shadow: none !important;\n /* 2 */\n cursor: default !important;\n }\n\n /**\n * Width display options for `input` fields. Height display options\n * for textareas.\n *\n * Example HTML:\n *\n * <input class=\"small\">\n * <input class=\"large\">\n */\n .small input {\n width: 25%;\n min-width: 151px;\n }\n .small textarea {\n height: 5.5em;\n }\n\n .large input {\n width: 50%;\n min-width: 302px;\n }\n .large textarea {\n height: 9.75em;\n }\n\n /**\n * Styling for form field validation.\n */\n input:focus:invalid,\nselect:focus:invalid,\ntextarea:focus:invalid {\n border-color: #9d261d;\n box-shadow: none;\n }\n\n /**\n * Styling for Firefox-specfic form field validation.\n */\n input:-moz-ui-invalid,\nselect:-moz-ui-invalid,\ntextarea:-moz-ui-invalid {\n border-color: #9d261d;\n box-shadow: none;\n }\n\n /**\n * Normalize form placeholder style across browsers.\n *\n * 1. Fix placeholder font properties inheritance.\n */\n :-ms-input-placeholder {\n opacity: 1;\n color: #999999;\n /* 1 */\n font: inherit;\n }\n ::-ms-input-placeholder {\n opacity: 1;\n color: #999999;\n /* 1 */\n font: inherit;\n }\n ::placeholder {\n opacity: 1;\n color: #999999;\n /* 1 */\n font: inherit;\n }\n\n /**\n * Styling for required field indicators.\n *\n * Example HTML:\n *\n * <b class=\"required\" title=\"Required\">*</b>\n */\n .required {\n border: 0;\n color: #9d261d;\n }\n\n /* Buttons\n ========================================================================== */\n /**\n * 1. Address `overflow` set to `hidden` in IE 11.\n * 2. Remove the inheritance of text transform in Edge, Firefox, and IE 11.\n */\n button {\n /* 1 */\n overflow: visible;\n /* 2 */\n text-transform: none;\n }\n\n /**\n * Remove the inner border and padding in Firefox.\n */\n button::-moz-focus-inner,\n[type=button]::-moz-focus-inner,\n[type=reset]::-moz-focus-inner,\n[type=submit]::-moz-focus-inner {\n padding: 0;\n border-style: none;\n }\n\n /**\n * 1. Remove browser-specific default styling.\n * 2. Improve usability and consistency of cursor style between image-type\n * `input` and others.\n */\n button,\n[type=button],\n[type=reset],\n[type=submit] {\n background-color: #dfdfdf;\n background-image: linear-gradient(#eeeeee, #dfdfdf);\n display: inline-block;\n position: relative;\n width: auto;\n height: 2em;\n padding: 0.25em 1em;\n border: 1px solid #dfdfdf;\n border-radius: 1em;\n background-clip: padding-box;\n box-shadow: 0 2px 0 #acacac;\n color: #333333;\n font-weight: normal;\n text-align: center;\n /* 1 */\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n /* 2 */\n cursor: pointer;\n }\n button:hover,\n[type=button]:hover,\n[type=reset]:hover,\n[type=submit]:hover {\n background-color: #e9e9e9;\n background-image: linear-gradient(#f8f8f8, #e9e9e9);\n border-color: #bebebe;\n color: #333333;\n text-decoration: none;\n }\n button:active,\n[type=button]:active,\n[type=reset]:active,\n[type=submit]:active {\n top: 2px;\n border-color: #bebebe;\n box-shadow: none;\n color: #1a1a1a;\n text-decoration: none;\n }\n button:focus,\n[type=button]:focus,\n[type=reset]:focus,\n[type=submit]:focus {\n border-color: #0066ff;\n outline: 1px solid transparent;\n }\n\n /**\n * Disbaled button additional styling.\n */\n button[disabled],\n[type=button][disabled],\n[type=reset][disabled],\n[type=submit][disabled] {\n top: 2px !important;\n }\n\n /* Comments\n ========================================================================== */\n /**\n * Styling for user comments.\n *\n * Example HTML:\n *\n * <article class=\"comments\">\n */\n .comments {\n margin-bottom: 1em;\n padding: 1px 1em;\n border-radius: 0.5em;\n background: #f7f7f7;\n word-wrap: break-word;\n }\n .comments h4 .is-author {\n font-weight: normal;\n }\n .comments h4 .comment-anchor {\n float: right;\n font-weight: normal;\n }\n\n /**\n * Additional styling for article author\'s comments.\n *\n * Example HTML:\n *\n * <article class=\"comments comments-author\">\n */\n .comments-author {\n background: #efefef;\n }\n\n /**\n * Styling for user comments preview.\n */\n #cpreview {\n margin-bottom: 2px;\n padding: 1em;\n border-radius: 0.5em;\n background-color: #fff9e1;\n }\n\n /**\n * Highlight text colour for comment errors.\n */\n .error_message li {\n color: #9d261d;\n }\n\n /**\n * Highlighting for comment form errors.\n */\n .comments_error {\n border-color: #9d261d;\n }\n\n /* Popup comments (can be removed if you don\'t use popups)\n ========================================================================== */\n /**\n * Restrict maximum width of popup container.\n */\n #popup-page .container {\n max-width: 52em;\n }\n}\n/* ==========================================================================\n Additional layout for screen media 576px and up\n ========================================================================== */\n@media only screen and (min-width: 38em) {\n /**\n * Desktop version of the navigation menu. Overrides mobile first version.\n *\n * Example HTML:\n *\n * <nav class=\"site-navigation\">\n * <div>\n * <ul>\n * <li class=\"active\"><a></li>\n * <li><a></li>\n * <li><a></li>\n * </ul>\n * <div class=\"search\">\n * <form>\n * <input type=\"search\">\n * </form>\n * </div>\n * </div>\n * </nav>\n */\n .site-navigation {\n border-top: 1px solid #cccccc;\n border-bottom: 1px solid #cccccc;\n }\n .site-navigation > div {\n display: flex;\n flex-wrap: wrap;\n justify-content: space-between;\n width: 88%;\n }\n .site-navigation ul {\n display: flex;\n flex-wrap: wrap;\n border: 0;\n }\n .site-navigation li {\n border-width: 0 1px;\n }\n .site-navigation a {\n padding: 0.5em 1em;\n }\n\n .search {\n margin-top: 0.2em;\n padding: 0;\n background: transparent;\n }\n .search input[type=search] {\n width: 2.125em;\n padding-right: 0;\n transition: width 0.2s ease-in-out, border-color 0.2s ease-in-out;\n background-color: #eeeeee;\n cursor: pointer;\n }\n .search input[type=search]:hover {\n background-color: #f8f8f8;\n }\n .search input[type=search]:focus {\n width: 16em;\n padding-right: 0.1875em;\n background-color: white;\n cursor: auto;\n }\n}\n/* ==========================================================================\n Additional layout for screen media 864px and up\n ========================================================================== */\n@media only screen and (min-width: 46em) {\n /**\n * Enlarge baseline text size.\n */\n html {\n font-size: 1.125rem;\n }\n}\n/* ==========================================================================\n Additional accessibility for screen media\n ========================================================================== */\n@media screen and (prefers-reduced-motion: reduce), (update: slow) {\n .search input[type=search] {\n transition-duration: 0;\n }\n}\n/* ==========================================================================\n Styling and layout for print media\n ========================================================================== */\n@media print {\n /**\n * Remove unnecessary global styling from printed media.\n */\n *,\n*::before,\n*::after {\n background: transparent !important;\n box-shadow: none !important;\n color: #000000 !important;\n text-shadow: none !important;\n }\n\n /**\n * Use a print-friendly font size.\n */\n html {\n font-size: 8pt;\n line-height: 1.5;\n }\n\n /**\n * Use a print-friendly font family.\n */\n body {\n margin: 0.5cm;\n padding: 2em 5em;\n font-family: \"Helvetica Neue\", sans-serif;\n }\n\n /**\n * Make sure links are not underlined.\n */\n a {\n text-decoration: none;\n }\n\n /**\n * Visually separate header from body.\n */\n .site-header {\n border-bottom: 1pt solid #000000;\n }\n\n /**\n * Visually separate footer from body.\n */\n .site-footer {\n margin-top: 12pt;\n border-top: 1pt solid #000000;\n }\n\n /**\n * Hide unnecessary content from print.\n */\n nav,\naudio,\nvideo,\nform,\n#comments-form,\n.comments h4 a:last-child,\n.complementary-content,\n.paginator,\n.skip-link {\n display: none;\n }\n\n /**\n * Show long-form for abbreviations in print.\n */\n abbr[title]::after {\n content: \" (\" attr(title) \")\";\n }\n\n /**\n * Harmonize size, style and vertical margin of headings.\n */\n h1 {\n margin: 16pt 0;\n font-size: 32pt;\n font-weight: normal;\n line-height: 36pt;\n }\n\n h2 {\n margin: 14pt 0;\n font-size: 24pt;\n line-height: 28pt;\n orphans: 2;\n widows: 2;\n page-break-after: avoid;\n }\n\n h3 {\n margin: 12pt 0;\n font-size: 18pt;\n line-height: 22pt;\n orphans: 2;\n widows: 2;\n page-break-after: avoid;\n }\n\n h4 {\n margin: 11pt 0;\n font-size: 14pt;\n line-height: 18pt;\n orphans: 2;\n widows: 2;\n page-break-after: avoid;\n }\n\n h5 {\n margin: 10pt 0;\n font-size: 12pt;\n line-height: 16pt;\n orphans: 2;\n widows: 2;\n page-break-after: avoid;\n }\n\n h6 {\n margin: 9pt 0;\n font-size: 10pt;\n line-height: 14pt;\n orphans: 2;\n widows: 2;\n page-break-after: avoid;\n }\n\n /**\n * Prevent widows (single final paragraph line on next page) and orphans (single\n * first paragraph line on previous page).\n */\n p {\n orphans: 2;\n widows: 2;\n }\n\n /**\n * Harmonize size and style of small text.\n */\n footer,\nfigcaption,\ntfoot,\nsmall,\n.footnote {\n font-size: 6pt;\n }\n\n /**\n * Simple blockquote styling.\n *\n * 1. Avoid blockquotes breaking across multiple pages.\n */\n blockquote {\n padding: 0 0 0 8pt;\n border-left: 3pt solid #000000;\n font-size: 16pt;\n /* 1 */\n page-break-inside: avoid;\n }\n\n [dir=rtl] blockquote {\n padding: 0 8pt 0 0;\n border-right: 3pt solid #000000;\n border-left: 0;\n }\n\n /**\n * Simple preformatted text styling.\n *\n * 1. Ensure pre blocks are wrapped when printed.\n */\n pre {\n margin-bottom: 8pt;\n padding: 8pt;\n border: 1pt solid #000000;\n /* 1 */\n white-space: pre-wrap !important;\n }\n\n /**\n * Use a print-friendly monospaced font and size.\n */\n pre,\ncode,\nkbd,\nsamp,\nvar {\n font-family: \"Courier New\", Courier, monospace;\n }\n\n /**\n * Images.\n *\n * 1. Avoid images breaking across multiple pages.\n *\n * Image alignment (compatible with Textile markup syntax).\n *\n * Example HTML:\n *\n * <img class=\"align-left\">\n * <img class=\"align-right\">\n * <img class=\"align-center\">\n */\n img {\n /* 1 */\n page-break-inside: avoid;\n }\n img.align-left {\n margin: 1em 1em 1em 0;\n float: left;\n }\n img.align-right {\n margin: 1em 0 1em 1em;\n float: right;\n }\n img.align-center {\n display: block;\n margin: 1em auto;\n }\n\n /**\n * Swap image alignment right/left positions in RTL languages.\n */\n [dir=rtl] img.align-left {\n margin: 1em 0 1em 1em;\n float: right;\n }\n [dir=rtl] img.align-right {\n margin: 1em 1em 1em 0;\n float: left;\n }\n\n /**\n * Ensure margin below `figure`.\n */\n figure {\n margin-bottom: 8pt;\n }\n\n /**\n * Ensure margin above `figcaption`.\n */\n figcaption {\n margin-top: 4pt;\n }\n\n /**\n * Simple bullet styling for `ul` unordered lists.\n */\n ul {\n padding: 0 0 8pt 1.8em;\n list-style: square;\n }\n\n [dir=rtl] ul {\n padding: 0 1.8em 8pt 0;\n }\n\n /**\n * Simple numerical styling for `ol` ordered lists.\n */\n ol {\n padding: 0 0 8pt 1.8em;\n list-style: decimal;\n }\n\n [dir=rtl] ol {\n padding: 0 1.8em 8pt 0;\n }\n\n /**\n * Normalize margins on `dl` definition lists.\n */\n dl {\n padding: 0 0 8pt 1.8em;\n }\n\n [dir=rtl] dl {\n padding: 0 1.8em 8pt 0;\n }\n\n /**\n * 1. Make `table` span entire page width.\n * 2. Ensure margin below `table`.\n */\n table {\n /* 1 */\n width: 100%;\n /* 2 */\n margin-bottom: 8pt;\n }\n\n /**\n * Harmonize styling for `caption`.\n */\n caption {\n margin-bottom: 4pt;\n font-weight: bold;\n }\n\n /**\n * Avoid table rows breaking across multiple pages.\n */\n tr {\n page-break-inside: avoid;\n }\n\n /**\n * Simple styling for table cells.\n */\n th,\ntd {\n padding: 4pt 8pt;\n border-bottom: 1pt solid #000000;\n }\n\n /**\n * Display table head across multi-page tables.\n */\n thead {\n display: table-header-group;\n }\n thead th {\n border-top: 1pt solid #000000;\n }\n\n /**\n * Avoid user comments breaking across multiple pages.\n */\n .comments {\n page-break-inside: avoid;\n }\n}', 'four-point-eight', NULL);
INSERT INTO `txp_css` (`name`, `css`, `skin`, `lastmod`) VALUES
('default', '@charset \"UTF-8\";\r\n\r\n@font-face {\r\n font-family: waves;\r\n font-weight: normal;\r\n font-style: normal;\r\nsrc: url(\'waves.eot\');\r\nsrc: url(\'waves.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'waves.woff2\') format(\'woff2\'),\r\nurl(\'waves.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\n@font-face {\r\n font-family: waves;\r\n font-weight: normal;\r\n font-style: oblique;\r\nsrc: url(\'waveso.eot\');\r\nsrc: url(\'waveso.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'waveso.woff2\') format(\'woff2\'),\r\nurl(\'waveso.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\n@font-face {\r\n font-family: wave;\r\n font-weight: normal;\r\n font-style: normal;\r\nsrc: url(\'wavebo.eot\');\r\nsrc: url(\'wavebo.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'wavebo.woff2\') format(\'woff2\'),\r\nurl(\'wavebo.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\n@font-face {\r\n font-family: wave;\r\n font-weight: normal;\r\n font-style: oblique;\r\nsrc: url(\'waveboo.eot\');\r\nsrc: url(\'waveboo.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'waveboo.woff2\') format(\'woff2\'),\r\nurl(\'waveboo.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\n@font-face {\r\n font-family: wave;\r\n font-weight: bold;\r\n font-style: normal;\r\nsrc: url(\'wavebl.eot\');\r\nsrc: url(\'wavebl.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'wavebl.woff2\') format(\'woff2\'),\r\nurl(\'wavebl.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\n@font-face {\r\n font-family: wave;\r\n font-weight: bold;\r\n font-style: oblique;\r\nsrc: url(\'waveblo.eot\');\r\nsrc: url(\'waveblo.eot?#iefix\') format(\'embedded-opentype\'),\r\nurl(\'waveblo.woff2\') format(\'woff2\'),\r\nurl(\'waveblo.woff\') format(\'woff\');\r\n font-display: swap;\r\n}\r\n\r\narticle,\r\nfigcaption,\r\nfigure,\r\nfooter,\r\nheader,\r\nnav,\r\nsection,\r\nsummary {\r\n display: block;\r\n}\r\n\r\na,\r\ninput,\r\nbutton {\r\n touch-action: manipulation;\r\n}\r\n\r\n/* Clearfix\r\n ================================================== */\r\nheader::after,\r\nfooter::after {\r\n content: \"\";\r\n display: table;\r\n clear: both;\r\n}\r\n\r\n/* ==========================================================================\r\n ========================================================================== */\r\n@media screen {\r\n\r\nhtml, *, *:before, *:after{\r\n -webkit-box-sizing: border-box;\r\n -moz-box-sizing: border-box;\r\n box-sizing: border-box;\r\n -webkit-text-size-adjust: 100%;\r\n -ms-text-size-adjust: 100%;\r\n text-size-adjust: 100%;\r\n scroll-behavior: smooth;\r\n }\r\nbody {\r\n position: relative;\r\n margin: 0 auto;\r\n text-rendering: optimizeLegibility;\r\n -webkit-tap-highlight-color: #e9397c;\r\n -webkit-font-smoothing: antialiased;\r\n -webkit-overflow-scrolling: touch;\r\n font-size: 100%;\r\n max-width: 1320px;\r\n }\r\n\r\n\r\n.site-header {\r\n width: 144px;\r\n height: 50px; \r\n padding: 8px 0; \r\n margin:0 auto; \r\n font: bold 13px wave, sans-serif; \r\n float: none;\r\n z-index:0; position:relative;\r\n }\r\n.site-header a {\r\n text-decoration: none; \r\n position:relative; \r\n left: 0; \r\n top: 0;\r\n }\r\n.site-header img {\r\n position:relative; \r\n width: 144px; \r\n height: 34px;\r\n }\r\n.site-header img:hover {\r\n top: 2px; \r\n border-bottom: 2px solid red;\r\n}\r\n.site-header mark {\r\n line-height: 0; \r\n padding:0;\r\n margin: 0;\r\n }\r\n.nav {\r\n width: 300px; \r\n height: 148px;\r\n text-align: center;\r\n margin:0 auto; \r\n padding: .5em 0; \r\n float:none; \r\n z-index: 0;\r\n position:relative;\r\n font-family: wave, sans-serif;\r\n }\r\n.nav li.download,\r\nspan.button,\r\n.nav span.button, \r\nbutton {\r\n font: normal 1rem wave, sans-serif;\r\n}\r\n\r\n\r\n.headline {\r\n position:relative;\r\n padding-bottom: 1rem;\r\n padding-top: 2em;\r\n }\r\n.headline-measure {\r\n max-width: 1320px;\r\n padding-bottom: 2.4rem;\r\n }\r\n.headline-title {\r\n font-size: 3rem;\r\n line-height: 1;\r\n font-family: wave, sans-serif;\r\n padding: 89px 8px 0 21px;\r\n max-width: 768px;\r\n margin:0;\r\n }\r\n.headline-text {\r\n font-size: 1.5rem;\r\n line-height: 1.667;\r\n font-family: waves, sans-serif;\r\n padding: 21px 8px 0 21px;\r\n max-width: 768px;\r\n }\r\n.headline-image {\r\n margin: 0 auto;\r\n width: 100%;\r\n }\r\n.headline-image img {\r\n display: block;\r\n background: url(/images/1.png) no-repeat center;\r\n width: 640px;\r\n height: 320px;\r\n }\r\n#contact, .touch, .footer h2 {\r\n margin: 1em;\r\n text-align: center;\r\n max-width: 1320px;\r\n }\r\n#contact a, #contact a:visited {\r\n font-family: wave, sans-serif;\r\n font-weight: normal; \r\n line-height:1;\r\n letter-spacing: 1px;\r\n padding: .25em 0;\r\n }\r\n#contact {padding: .5em 0 1em; }\r\n\r\n.intro {\r\n padding-top: 2.4rem; \r\n padding-bottom: 2.4rem;\r\n max-width: 1320px;\r\n padding-left: 20px;\r\n padding-right: 20px;\r\n }\r\n\r\n.intro h3 {\r\n font-size: 1.8rem;\r\n line-height: 1.166;\r\n font-family: waves,sans-serif;\r\n max-width: 472px; \r\n }\r\n\r\n.footer {\r\n padding-top: 2rem; \r\n z-index:200;\r\n }\r\n\r\n.footer a:link,.footer a:visited {\r\n text-decoration: underline;\r\n border: 0;\r\n background: none;\r\n }\r\n\r\n.article, .section_head {\r\n word-wrap: break-word;\r\n display: block;\r\n max-width: 1320px;\r\n padding-left: 20px;\r\n padding-right: 20px;\r\n padding-bottom: 2em;\r\n }\r\n.section_head {text-align:center;}\r\n\r\n\r\n.feature blockquote {margin:3em auto; width: 90%;}\r\nblockquote p {width: 100% !important; margin:0 !important; padding: 0 !important; }\r\n\r\n\r\n\r\n\r\n/* ======= IF YOU NEED A CONTACT FORM, IT IS IN THE BODY_ASIDE FORM. =================\r\n============= UNHIDE THE ASIDE IN THE PAGE TEMPLATE AND ENABLE THIS SECTION ====== \r\naside {\r\n word-wrap: break-word;\r\n display: block;\r\n max-width: 1320px;\r\n padding-left: 20px;\r\n padding-right: 20px;\r\n padding-bottom: 2em;\r\n background: #fff;\r\n}\r\n.aside {\r\n line-height: 1;\r\n font-size: 1.5em;\r\n}\r\n.aside ul {\r\n line-height: 1.5;\r\n}\r\n.aside label {\r\n width: 100%;\r\n line-height: 1.5;\r\n}\r\n.aside fieldset, \r\n.aside input, \r\n.aside textarea {\r\n border-color: #6fb4dc; \r\n border-radius: .25em; \r\n margin: 1.618em 0 ;\r\n}\r\n============== */\r\n\r\n\r\n\r\n/* ======= IF YOU NEED SEARCH, UN-HIDE IT IN BODY_HEADER, FOOTER, SEARCH_DISPLAY ==============\r\n================= ENABLE THIS SECTION AND IN 39 REM SECTION BELOW ====== \r\n\r\n .search {\r\n padding: 0.5em 6%; \r\n display:none;\r\n background: #0a5ea7;\r\n }\r\n .search input[type=search] {\r\n width: 16em; \r\n height: 3.125em;\r\n padding-right: 0.1875em;\r\n padding-left: 2em;\r\n border-radius: 0.5em;\r\n background: #fff url(\"data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'32\' height=\'32\' viewBox=\'0 0 32 32\'%3E%3Cg fill=\'%23333\'%3E%3Cpath d=\'M4,13c0-5,4-9,9-9c5,0,9,4,9,9c0,5-4,9-9,9C8,22,4,18,4,13z M13,19c3.3,0,6-2.7,6-6s-2.7-6-6-6s-6,2.7-6,6S9.7,19,13,19z\'/%3E%3Cpath d=\'M17.5,19l1.5-1.5l4.5,3L28,25c0,0,0,1.5-0.75,2.25S25,28,25,28l-4.5-4.5L17.5,19z\'/%3E%3C/g%3E%3C/svg%3E\") no-repeat left center;\r\n background-size: 2em 2em;\r\n }\r\n .results {\r\n margin: 84px 21px 0;\r\n background: #fff;\r\n }\r\n .search-page nav.nav {\r\n visibility: hidden;\r\n }\r\n .serchwrap {\r\n width: 100%;\r\n position:fixed;\r\n bottom: 0;\r\n left: 0;\r\n padding: 2px;\r\n background: #fff;\r\n }\r\n .serch {\r\n width: 144px;\r\n margin: 0 auto;\r\n }\r\n============== */\r\n\r\n /* Links\r\n ==================================================== */\r\n\r\np a, li a {\r\n font-family: wave,sans-serif;\r\n }\r\n\r\na:link,a:visited {\r\n text-decoration: underline;\r\n -webkit-text-decoration-skip: ink;\r\n text-decoration-skip: ink; \r\n }\r\na:hover {\r\n text-decoration: underline;\r\n }\r\na:active {\r\n position:relative;\r\n top:2px;\r\n }\r\n\r\n#contact a, #contact a:visited {\r\n text-decoration: none;\r\n border: 0;\r\n }\r\n\r\n#contact a:hover {\r\n text-decoration: underline; \r\n }\r\n\r\n\r\n.nav li a, \r\nblockquote a[rel~=\"external\"] {\r\n text-decoration: none;\r\n }\r\n\r\n.nav li a:hover,\r\n.nav li a:active,\r\nblockquote a {\r\n text-decoration: underline;\r\n }\r\n.nav a,\r\n.nav a:visited,\r\n.site-header a,\r\n.site-header a:visited,\r\nblockquote a:visited {\r\n border: 0;\r\n outline: 0;\r\n }\r\n.nav a:hover,.nav a:active, .nav a:focus,\r\n.site-header a:hover, \r\n.site-header a:active,\r\n.site-header a:focus {\r\n border: 0;\r\n outline: 0;\r\n }\r\na.topl,a.topr {\r\n position:fixed;\r\n bottom: 0;\r\n display:block;\r\n font: normal 1.2em wave,sans-serif;\r\n padding: 1em 0 0;\r\n z-index: 200;\r\n scroll-behavior: smooth;\r\n }\r\na.topl {left:0;} a.topr {right:0;}\r\n\r\n \r\n\r\n\r\n /* Typography\r\n ================================================== */\r\n\r\n\r\nbody {\r\n font-family: wave,sans-serif;\r\n }\r\n\r\nh2,h3,h4,figcaption {\r\n clear: left;\r\n font-family: waves, sans-serif;\r\n font-weight: normal;\r\n }\r\n.article h2 {\r\n clear: left;\r\n font-family: waves,sans-serif;\r\n font-weight: normal;\r\n font-size: 3rem; \r\n margin: 3.25rem 0 0;\r\n padding-top: 3.25rem;\r\n }\r\n.article h2 span.subhead {\r\n font-size: 67%;\r\n font-style: oblique;\r\n }\r\n\r\n.section_head {\r\n margin-top: 0;\r\n padding-top: 2em;\r\n}\r\n.section_head h2 {\r\n font-size: 3rem;\r\n font-family: wave, sans-serif;\r\n padding-top: 3.25rem;\r\n margin: 3.25rem 0 0;\r\n }\r\n.section_head h2 span {\r\n font-size: 67%;\r\n font-style: oblique;\r\n font-family: waves, sans-serif !important;\r\n }\r\n\r\n\r\n\r\n\r\n.article h3 {\r\n clear: left;\r\n font-family: waves,sans-serif;\r\n font-weight: normal;\r\n font-size: 3em; \r\n margin: 3.25rem 0 0;\r\n padding-top: 3.25rem;\r\n }\r\n.article h3 span.subhead {\r\n font-size: 67%;\r\n font-style: oblique;\r\n }\r\n.article#what p {\r\n width: 100%; \r\n padding: 0 20px; \r\n }\r\n.article h3 {\r\n padding-top: 6.5rem;\r\n margin: 0 0 1.25rem;\r\n }\r\n.article h4 {\r\n font-size: 1.6875rem;\r\n font-style: normal;\r\n font-weight: normal;\r\n line-height: 1.555;\r\n margin: 2rem auto 0.75rem;\r\n }\r\n\r\np {\r\n margin: 2em 0;\r\n font-family: wave, sans-serif;\r\n font-weight: normal;\r\n }\r\n\r\n.article p {\r\n max-width: 768px;\r\n font-size: 1.333rem;\r\n line-height: 1.6;\r\n margin-bottom: 2rem;\r\n }\r\n.article p.nobmargin {margin-bottom: 0; }\r\n\r\np.download {\r\n margin: 3em auto 4em;\r\n}\r\n\r\nfooter {\r\n padding: 20px 20px 0;\r\n margin: -1.4rem 0;\r\n }\r\n.footer p {\r\n font-size: 1.333rem;\r\n line-height: 1.6;\r\n }\r\n\r\nq {\r\n quotes: \"\\2018\" \"\\2019\" \"\\201C\" \"\\201D\";\r\n }\r\n\r\nblockquote {\r\n font-size: 1.333rem; \r\n padding: 1rem; \r\n border-radius: .5rem; \r\n margin: 4rem 20px; \r\n text-align:center;\r\n }\r\n\r\nmark {\r\n font: bold 1.2em wave; \r\n }\r\ncode {\r\n padding: 2px;\r\n border-radius: .25em;\r\n}\r\n.error-status, .error-msg {text-align: center;}\r\n\r\n\r\nhr {\r\n box-sizing: content-box;\r\n position:relative;\r\n height: 55px; width: 100%;\r\n margin: -27px 0;\r\n overflow: visible;\r\n border: 0;\r\n z-index: 100;\r\n background: url(/images/wide.svg);\r\n }\r\nhr.top {\r\n background: url(/images/top.svg); \r\n }\r\n#what hr {\r\n background: url(/images/intro.svg); \r\n height:21px; \r\n margin: 0 21px; \r\n}\r\n\r\n\r\n /* Pix \r\n ===================================================== */\r\n\r\n\r\nimg {\r\n max-width: 100%;\r\n height: auto;\r\n vertical-align: middle;\r\n }\r\n\r\n.intro figure,\r\n.intro img,\r\n.article figure,\r\n.article img {\r\n display: block;\r\n margin: 20px 0; margin: 0;\r\n clear: both;\r\n }\r\nfigcaption {\r\n line-height: 2;\r\n font-style: oblique;\r\n }\r\n.videowrap {\r\n width: 100%;\r\n margin:0 auto;\r\n padding-bottom: 4em;\r\n}\r\n.videowrap p, .videowrap h2 {\r\n margin: 20px;\r\n text-align:center;\r\n}\r\nvideo {\r\n width: 100%;\r\n height: auto;\r\n}\r\n\r\n /* Lists\r\n =================================================== */\r\n\r\nul, ol {\r\n list-style-position: inside;\r\n}\r\n\r\nul, ol {\r\n margin: 2em 0;\r\n font-family: wave, sans-serif;\r\n font-weight: normal;\r\n }\r\n.intro ul,\r\n.article ul,\r\n.article ol,\r\n.article ul ul,\r\n.article ol ol {\r\n max-width: 768px;\r\n font-size: 1.333rem;\r\n line-height: 1.6;\r\n }\r\n.intro ul li,\r\n.article ul li, \r\n.article ul ul li, \r\n.article ol li,\r\n.article ol ol li {\r\n margin-bottom: .75rem;\r\n }\r\n\r\nmenu, ol, ul {\r\n padding: 0 1em;\r\n }\r\n\r\nli > ul,li > ol {\r\n margin: .618em 0;\r\n }\r\n\r\n.y ul {\r\n list-style: square inside;\r\n }\r\n\r\n.nav ul {\r\n list-style: none;\r\n margin: 0;\r\n }\r\n\r\n.nav li {\r\n display: inline-block;\r\n line-height: 1;\r\n font-size: 1rem;\r\n padding: 16px;\r\n }\r\n.nav li.download {padding: .5em 3em ;}\r\n\r\n\r\n /* Buttons\r\n ========================================================================== */\r\n /**\r\n * 1. Address `overflow` set to `hidden` in IE 11.\r\n * 2. Remove the inheritance of text transform in Edge, Firefox, and IE 11.\r\n */\r\n span.button, button {\r\n /* 1 */\r\n overflow: visible;\r\n /* 2 */\r\n text-transform: none;\r\n }\r\n\r\n /**\r\n * Remove the inner border and padding in Firefox.\r\n */\r\nspan.button, button::-moz-focus-inner,\r\n[type=submit]::-moz-focus-inner {\r\n padding: 0;\r\n border-style: none;\r\n }\r\n\r\n /**\r\n * 1. Remove browser-specific default styling.\r\n * 2. Improve usability and consistency of cursor style between image-type\r\n * `input` and others.\r\n */\r\nspan.button, button, \r\n[type=submit] {\r\n display: inline-block;\r\n position: relative;\r\n width: auto;\r\n height: 2.5em;\r\n padding: 0.25em .75em;\r\n border-radius: 1em;\r\n background-clip: padding-box;\r\n font-weight: normal;\r\n text-align: center;\r\n /* 1 */\r\n -webkit-appearance: none;\r\n -moz-appearance: none;\r\n appearance: none;\r\n /* 2 */\r\n cursor: pointer;\r\n }\r\nspan.button:hover, button:hover,\r\n[type=submit]:hover {\r\n top: 2px;\r\n border-bottom-width: 2px;\r\n text-decoration: none;\r\n }\r\nspan.button:active, button:active,\r\n[type=submit]:active {\r\n top: 2px;\r\n text-decoration: none;\r\n }\r\n\r\n /**\r\n * Disabled button additional styling.\r\n */\r\nspan.button[disabled],\r\nbutton[disabled],\r\n[type=submit][disabled] {\r\n top: 2px !important;\r\n }\r\n\r\n\r\n}\r\n\r\n\r\n/* ==========================================================================\r\n ========================================================================== */\r\n\r\n\r\n@media only screen and (min-width: 39rem) {\r\n\r\n\r\n.site-header {\r\n margin-left:16px; \r\n padding:16px 0 0;\r\n height: 132px;\r\n}\r\n.nav {\r\n float:right;\r\n margin:-132px 0 0; \r\n padding: 0; \r\n height: 132px;\r\n}\r\n.nav a {\r\n padding: .5em 0 .75em; \r\n}\r\n.nav li.download {\r\n padding: .5em 3em;\r\n}\r\n\r\n\r\n.headline-title {font-size: 4rem; }\r\n.headline-image img {\r\n margin: 0 auto;\r\n background: url(/images/2.png) no-repeat center;\r\n width: 960px;\r\n height: 480px;\r\n }\r\n#contact, #contact a, #contact a:visited {\r\n letter-spacing: 2px;\r\n }\r\n\r\n.feature blockquote {width: 70%;}\r\n\r\nfigcaption {\r\n font-size: 1.125rem;\r\n }\r\n\r\n\r\n.article {\r\n padding-bottom: 3em;\r\n }\r\n.article h1, .section_head h2 {font-size: 4rem; }\r\n\r\n.article h4 {\r\n font-size: 2.4375rem;\r\n line-height: 1.5897;\r\n margin-top: 4.0625rem;\r\n margin-bottom: 1.5625rem;\r\n }\r\n.article p {\r\n font-size: 1.5rem;\r\n line-height: 1.667;\r\n margin-bottom: 2.5rem;\r\n }\r\n.article ul, \r\n.article ol,\r\n.article ul ul,\r\n.article ol ol {\r\n font-size: 1.5rem;\r\n line-height: 1.667;\r\n margin-bottom: 2.5rem;\r\n }\r\n.article ul li, .article ol li {\r\n margin-bottom: 1rem;\r\n }\r\n\r\n.footer {\r\n font-size: 1.5rem;\r\n line-height: 1.667;\r\n padding-top: 6rem;\r\n }\r\n\r\n/* ======= IF YOU NEED SEARCH, UN-HIDE IT IN BODY_HEADER, FOOTER, SEARCH_DISPLAY ==============\r\n=================ENABLE THIS SECTION AND THERE\'S ONE ABOVE TOO ========= \r\n\r\n .nav {\r\n margin:-132px 2em 0 0;\r\n }\r\n .search {\r\n position: absolute; \r\n display:inline-block; \r\n z-index: 2;\r\n top: 0;\r\n right: -2em;\r\n margin-top: 43px;\r\n padding: 0;\r\n background: #f8f8f8;\r\n }\r\n .search input[type=search] {\r\n width: 2.125em;\r\n padding-right: 0;\r\n transition: width 0.2s ease-in-out, border-color 0.2s ease-in-out;\r\n background-color: #eee;\r\n cursor: pointer;\r\n }\r\n .search input[type=search]:hover {\r\n background-color: #f8f8f8;\r\n }\r\n .search input[type=search]:focus {\r\n width: 16em;\r\n padding-right: 0.1875em;\r\n background-color: white;\r\n cursor: auto;\r\n }\r\n .search-page ul, \r\n .search-page ul h4, \r\n .search-page ul li {\r\n padding-left: 0;\r\n }\r\n .front-page .serchwrap {\r\n position: relative;\r\n background: transparent;\r\n }\r\n============= */\r\n}\r\n/* ==========================================================================\r\n ========================================================================== */\r\n@media only screen and (min-width: 45.5rem) {\r\n\r\n.site-header {height: 96px;}\r\n\r\n.nav {\r\n width: auto; \r\n padding-top:40px;\r\n }\r\n.nav li {\r\n padding: 16px; \r\n }\r\n.nav li.download {padding: 0;}\r\n}\r\n\r\n@media only screen and (min-width: 50rem) {\r\n\r\n.headline-title {\r\n font-size: 4.5rem; \r\n }\r\n.intro {\r\n padding-top: 2rem;\r\n padding-bottom: 2rem;\r\n }\r\n\r\n.intro h3 {\r\n font-size: 2rem;\r\n line-height: 1.75;\r\n }\r\n\r\n.intro ul li {\r\n margin-bottom:1rem;\r\n }\r\n\r\n.intro-block {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: baseline;\r\n }\r\n\r\n.intro-block1 {\r\n width: 472px;\r\n padding-right: 3.2%;\r\n }\r\n\r\n.intro-block2 {\r\n width: 768px;\r\n }\r\n\r\n#contact, #contact a, #contact a:visited {\r\n letter-spacing: 3px;\r\n }\r\n#what p {\r\n max-width: 1280px;\r\n padding: 0 20px;\r\n }\r\n#what hr {width:60%; margin: 0 0 0 auto;}\r\n.feature blockquote {\r\n width: 60%;\r\n}\r\n\r\n}\r\n/* ==========================================================================\r\n ========================================================================== */\r\n@media only screen and (min-width: 58rem) {\r\n\r\n.headline-image img {\r\n margin: 0 auto;\r\n background: url(/images/3.png) no-repeat center;\r\n width: 1280px;\r\n height: 640px;\r\n }\r\n\r\n}\r\n/* ==========================================================================\r\n ========================================================================== */\r\n\r\n@media only screen and (min-width: 64rem) {\r\n\r\n\r\n#contact, #contact a, #contact a:visited {\r\n letter-spacing: 6px; \r\n }\r\n\r\n.article {\r\n padding-bottom: 4em; \r\n }\r\n.article p,\r\n.article ul,\r\n.article ol,\r\n.article blockquote {\r\n width: 60%;\r\n }\r\n.article ul ul,\r\n.article ol ol {\r\n width: 100%;\r\n }\r\n.article figure {\r\n width: 36.8%; \r\n float: right; \r\n margin-top:.5rem;\r\n }\r\n.article img {\r\n float:right;\r\n margin-top:2rem;\r\n }\r\n\r\n.intro figure,.intro figure img {width:100%;}\r\n.feature blockquote {width: 45%;}\r\n\r\n}\r\n\r\n/* ==========================================================================\r\n ========================================================================== */\r\n\r\n@media only screen and (min-width: 72rem) {\r\n\r\nhtml {font-size: 110%;}\r\n\r\n}\r\n\r\n/* ======= ALL COLOURS USED =========================================\r\n ========================================================================== */\r\n\r\n\r\n\r\n.site-header,\r\n.nav,blockquote \r\n{background: #fff; }\r\n\r\nspan.button,\r\nspan.button:visited,\r\nspan.button:hover,\r\nbutton,\r\n[type=button],\r\n[type=reset],\r\n[type=submit],\r\nbutton:hover,\r\n[type=button]:hover,\r\n[type=reset]:hover,\r\n[type=submit]:hover\r\n{color: #fff;}\r\n\r\n.headline,\r\n#contact, \r\n#contact a, \r\n#contact a:visited \r\n{background: #dfeff8; }\r\n\r\np#contact {border-bottom: 1px solid #84bfe1;}\r\n\r\n.headline-title,\r\n.headline-text,\r\nh2,h3,figcaption,\r\n.article h1 span.subhead, \r\n.article div.h1heading span.subhead,\r\n.article h3,\r\ncode\r\n{color: #3294cd; }\r\n\r\nbody,\r\n#contact, \r\n#contact a, \r\n#contact a:visited,\r\n.article h1, \r\n.section_head h2,\r\n.article h4 \r\n{color: #1e597b; }\r\n\r\n.footer,\r\n.article,\r\n.article.reinforce,\r\n#what, #why \r\n{background: #eff1f4;}\r\n\r\n.article.zebra,\r\n#who \r\n{background: #e3eef5; }\r\n\r\n.aside fieldset, \r\n.aside input, \r\n.aside textarea {border-color: #6fb4dc; }\r\n\r\n\r\na:link,\r\na:visited\r\n{color: #302fc0; }\r\n\r\n.nav a,\r\n.nav a:visited,\r\nblockquote a:visited \r\n{color: #6fb4dc;background: transparent;}\r\n\r\na:hover,\r\n#contact a:hover,\r\n.nav a:hover,\r\n.nav a:active, \r\n.nav a:focus,\r\na.topl,a.topr,\r\na.topl:hover,\r\na.topl:active,\r\na.topr:hover,\r\na.topr:active,\r\na[rel~=\"external\"]:hover,\r\na[rel~=\"external\"]:active,\r\nmark\r\n{color: #e9397c; }\r\n\r\n.site-header img:hover,\r\n.site-header img:active,\r\n.site-header img:focus\r\n{border-bottom: 1px solid #e9397c;}\r\n\r\na:focus,\r\nspan.button:focus,\r\nbutton:focus,\r\n[type=submit]:focus\r\n{outline: 1px solid #e9397c; }\r\n\r\nspan.button:active,\r\nbutton:active,\r\n[type=submit]:active,\r\nspan.button:focus,\r\nbutton:focus,\r\n[type=submit]:focus \r\n{border-color: #e9397c; }\r\n\r\n.nav a:hover,\r\n.nav a:active, \r\n.nav a:focus,\r\na.topl,a.topr,\r\nmark\r\n{background: transparent; }\r\n\r\n.article h2 span.subhead {color: #6fb4dc; }\r\n\r\nblockquote {border: 1px solid #6fb4dc; }\r\n\r\ncode {background: #eff7fc;border: 1px solid #dfeff8; }\r\n\r\nspan.button,\r\nbutton, \r\n[type=submit] {\r\n background-color: #1e597a;\r\n background-image: linear-gradient(#2876a4, #1e597b);\r\n border: 1px solid #2876a4;\r\n border-bottom: 1px solid #1e597b;\r\n }\r\nspan.button:hover,\r\nbutton:hover,\r\n[type=submit]:hover {\r\n background-color: #3294cd;\r\n background-image: linear-gradient(#5ba9d7, #3294cd);\r\n }\r\nspan.button:active,\r\nbutton:active,\r\n[type=submit]:active {\r\n border-color: #e9397c;\r\n }\r\nspan.button:focus,\r\nbutton:focus,\r\n[type=submit]:focus {\r\n border-color: #e9397c;\r\n outline: 1px solid #e9397c;\r\n }\r\nspan.button, .nav li a span.button {color: #fff !important; line-height: 2;}', 'wave', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `txp_discuss`
--
CREATE TABLE `txp_discuss` (
`discussid` int(6) UNSIGNED ZEROFILL NOT NULL,
`parentid` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`web` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`posted` datetime NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`visible` tinyint(4) NOT NULL DEFAULT 1
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_discuss`
--
INSERT INTO `txp_discuss` (`discussid`, `parentid`, `name`, `email`, `web`, `posted`, `message`, `visible`) VALUES
(000001, 1, 'Donald Swain', 'donald-swain@example.com', 'https://docs.textpattern.com/brand/donald-swain', '2020-07-20 12:44:06', '<p>I enjoy your site very much.</p>', 1);
-- --------------------------------------------------------
--
-- Table structure for table `txp_discuss_nonce`
--
CREATE TABLE `txp_discuss_nonce` (
`issue_time` datetime NOT NULL,
`nonce` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`used` tinyint(4) NOT NULL DEFAULT 0,
`secret` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `txp_file`
--
CREATE TABLE `txp_file` (
`id` int(11) NOT NULL,
`filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`category` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`permissions` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`downloads` int(10) UNSIGNED NOT NULL DEFAULT 0,
`status` smallint(6) NOT NULL DEFAULT 4,
`modified` datetime NOT NULL,
`created` datetime NOT NULL,
`size` bigint(20) DEFAULT NULL,
`author` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_file`
--
INSERT INTO `txp_file` (`id`, `filename`, `title`, `category`, `permissions`, `description`, `downloads`, `status`, `modified`, `created`, `size`, `author`) VALUES
(1, 'wave.png', 'Wave', '', '', '', 2, 4, '2020-07-27 10:46:17', '2020-07-23 16:24:32', 870, 'peter'),
(2, 'WaveTheme.zip', 'Wave', '', '', '', 8, 4, '2020-07-27 10:29:18', '2020-07-27 10:28:41', 3882101, 'peter');
-- --------------------------------------------------------
--
-- Table structure for table `txp_form`
--
CREATE TABLE `txp_form` (
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Form` text COLLATE utf8mb4_unicode_ci NOT NULL,
`skin` varchar(63) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
`lastmod` datetime DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_form`
--
INSERT INTO `txp_form` (`name`, `type`, `Form`, `skin`, `lastmod`) VALUES
('article_listing', 'article', '<li class=\"article\" itemprop=\"blogPost\" itemscope itemtype=\"https://schema.org/BlogPosting\">\n <h4 itemprop=\"headline\">\n <a href=\"<txp:permlink />\" itemprop=\"url mainEntityOfPage\" title=\"<txp:text item=\"read_more\" />\">\n <txp:title />\n </a>\n </h4>\n\n <!-- if the article has an excerpt, display that -->\n <txp:if_excerpt>\n <div itemprop=\"description\">\n <txp:excerpt />\n </div>\n </txp:if_excerpt>\n\n <p class=\"footnote\">\n <txp:text item=\"posted\" />\n <time datetime=\"<txp:posted format=\"iso8601\" />\" itemprop=\"datePublished\">\n <txp:posted />\n </time>\n <meta itemprop=\"dateModified\" content=\"<txp:modified format=\"iso8601\" />\" />\n ·\n <txp:text item=\"author\" />\n <span itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:author link this_section />\n </span>\n </span>\n </p>\n</li>', 'four-point-eight', NULL),
('default', 'article', '<article class=\"article\" itemprop=\"blogPost\" itemscope itemtype=\"https://schema.org/BlogPosting\">\n <meta itemprop=\"mainEntityOfPage\" content=\"<txp:permlink />\">\n\n <txp:if_individual_article>\n <h1 itemprop=\"headline\"><txp:title /></h1>\n <txp:else />\n <h1 itemprop=\"headline\"><a href=\"<txp:permlink />\" itemprop=\"url\" title=\"<txp:text item=\"read_more\" />\"><txp:title /></a>\n </h1>\n </txp:if_individual_article>\n\n <p>\n <strong>\n <txp:text item=\"posted\" />\n </strong>\n <time datetime=\"<txp:posted format=\"iso8601\" />\" itemprop=\"datePublished\">\n <txp:posted />\n </time>\n <meta itemprop=\"dateModified\" content=\"<txp:modified format=\"iso8601\" />\" />\n\n <!-- only display comments count if comments posted, or if new comments allowed -->\n <txp:if_comments>\n <br>\n <strong>\n <txp:text item=\"comments\" />\n </strong>\n <a href=\"<txp:permlink />#comments-head\" title=\"<txp:text item=\"view\" />\" itemprop=\"discussionUrl\">\n <span itemprop=\"interactionStatistic\" itemscope itemtype=\"https://schema.org/InteractionCounter\">\n <meta itemprop=\"interactionType\" content=\"https://schema.org/CommentAction\" />\n <span itemprop=\"userInteractionCount\"><txp:comments_count /></span>\n </span>\n </a>\n <txp:else />\n <txp:if_comments_allowed>\n <br>\n <strong>\n <txp:text item=\"comments\" />\n </strong>\n <a href=\"<txp:permlink />#comments-head\" title=\"<txp:text item=\"view\" />\" itemprop=\"discussionUrl\">\n <span itemprop=\"interactionStatistic\" itemscope itemtype=\"https://schema.org/InteractionCounter\">\n <meta itemprop=\"interactionType\" content=\"https://schema.org/CommentAction\" />\n <span itemprop=\"userInteractionCount\">0</span>\n </span>\n </a>\n </txp:if_comments_allowed>\n </txp:if_comments>\n </p>\n\n <txp:if_article_image>\n <txp:images form=\"images\" />\n </txp:if_article_image>\n\n <div itemprop=\"articleBody\">\n <txp:body />\n </div>\n\n <p>\n <strong>\n <txp:text item=\"author\" />\n </strong>\n <span itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:author link this_section />\n </span>\n </span>\n\n <!-- only display categories if they are actually set for an article, otherwise omit -->\n <txp:if_article_category>\n <br>\n <strong>\n <txp:text item=\"categories\" />\n </strong>\n <span itemprop=\"keywords\">\n <txp:category_list categories=\'<txp:category1 />,<txp:category2 />\' children=\"0\" break=\", \" trim>\n <txp:category title link />\n </txp:category_list>\n </span>\n </txp:if_article_category>\n </p>\n\n <!-- if this is an individual article then add the comments section via form: comments_display.article.txp -->\n <txp:if_individual_article>\n <txp:output_form form=\"comments_display\" />\n </txp:if_individual_article>\n\n</article>', 'four-point-eight', NULL),
('search_results', 'article', '<li class=\"article\" itemscope itemtype=\"https://schema.org/Article\">\n <h4 itemprop=\"headline\">\n <a href=\"<txp:permlink />\" itemprop=\"url mainEntityOfPage\" title=\"<txp:text item=\"read_more\" />\">\n <txp:title />\n </a>\n </h4>\n\n <!-- if the article has an excerpt, display that, otherwise show highlighted keywords in context of article -->\n <txp:if_excerpt>\n <div itemprop=\"description\">\n <txp:excerpt />\n </div>\n <txp:else />\n <p>\n <txp:search_result_excerpt />\n </p>\n </txp:if_excerpt>\n\n <p class=\"footnote\">\n <txp:text item=\"posted\" />\n <time datetime=\"<txp:posted format=\"iso8601\" />\" itemprop=\"datePublished\">\n <txp:posted />\n </time>\n <meta itemprop=\"dateModified\" content=\"<txp:modified format=\"iso8601\" />\" />\n ·\n <txp:text item=\"author\" />\n <span itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:author link this_section />\n </span>\n </span>\n </p>\n</li>', 'four-point-eight', NULL),
('plainlinks', 'link', '<!-- This is being used as an external links form, therefore rel is set to \'external\' -->\n<txp:linkdesctitle rel=\"external\" />', 'four-point-eight', NULL),
('files', 'file', '<div itemscope itemtype=\"https://schema.org/DataDownload\">\n\n <!-- ...if exists, use the file title, otherwise use file name -->\n <a href=\"<txp:file_download_link />\" itemprop=\"url contentUrl\">\n <strong itemprop=\"name\">\n <txp:evaluate>\n <txp:file_download_name title />\n <txp:else />\n <txp:file_download_name />\n </txp:evaluate>\n </strong>\n </a>\n\n <!-- ...if exists, use the file description, otherwise omit that line -->\n <txp:evaluate test>\n <div itemprop=\"description\">\n <txp:file_download_description />\n </div>\n </txp:evaluate>\n\n <div class=\"footnote\">\n\n <!-- ...if exists, use the file category, otherwise omit that line -->\n <txp:evaluate test=\"file_download_category\">\n <strong>\n <txp:text item=\"category\" />\n </strong>\n <span itemprop=\"keywords\">\n <txp:file_download_category title />\n </span>\n ·\n </txp:evaluate>\n\n <strong>\n <txp:text item=\"author\" />\n </strong>\n <span itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:file_download_author link />\n </span>\n </span>\n ·\n <strong>\n <txp:text item=\"file_size\" />\n </strong>\n <span itemprop=\"contentSize\">\n <txp:file_download_size />\n </span>\n ·\n <strong>\n <txp:text item=\"last_modified\" />\n </strong>\n <time datetime=\"<txp:file_download_modified format=\"iso8601\" />\" itemprop=\"dateModified\">\n <txp:file_download_modified />\n </time>\n ·\n <strong>\n <txp:text item=\"download_count\" />\n </strong>\n <span itemprop=\"interactionStatistic\" itemscope itemtype=\"https://schema.org/InteractionCounter\">\n <meta itemprop=\"interactionType\" content=\"https://schema.org/DownloadAction\" />\n <span itemprop=\"userInteractionCount\">\n <txp:file_download_downloads />\n </span>\n </span>\n\n </div>\n\n</div>', 'four-point-eight', NULL),
('popup_comments', 'comment', '<!DOCTYPE html>\n<html lang=\"<txp:lang />\" dir=\"<txp:text item=\"lang_dir\" />\">\n\n<head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, viewport-fit=cover\">\n <title><txp:page_title /></title>\n\n <!-- CSS -->\n <txp:css format=\"link\" media=\"\" />\n <!-- ...or you can use (faster) external CSS files e.g. <link rel=\"stylesheet\" href=\"<txp:page_url type=\"theme_path\" />/styles/default.css\"> -->\n\n <meta name=\"generator\" content=\"Textpattern CMS\">\n <meta name=\"robots\" content=\"noindex, follow\">\n</head>\n\n<body class=\"popup-page\">\n <div class=\"wrapper\">\n <div class=\"container\">\n\n <!-- this form is only used if you set \'Comments mode\' to \'popup\' format in preferences -->\n <txp:popup_comments />\n\n </div> <!-- /.container -->\n </div> <!-- /.wrapper -->\n</body>\n</html>', 'four-point-eight', NULL),
('comment_form', 'comment', '<p>\n <txp:text item=\"enter_comment_here\" />\n</p>\n\n<!-- if there is an error, then inform user -->\n<txp:if_comments_error>\n <txp:comments_error class=\"error_message\" wraptag=\"ol\" break=\"li\" />\n</txp:if_comments_error>\n\n<p class=\"large\">\n <label for=\"name\">\n <txp:text item=\"comment_name\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_name_input size=\"32\" />\n</p>\n\n<p class=\"large\">\n <label for=\"email\">\n <txp:text item=\"comment_email\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_email_input size=\"32\" />\n</p>\n\n<p class=\"large\">\n <label for=\"web\">\n <txp:text item=\"comment_web\" />\n </label>\n <br>\n <txp:comment_web_input size=\"32\" />\n</p>\n\n<p class=\"small\">\n <label for=\"message\">\n <txp:text item=\"comment_message\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_message_input cols=\"64\" rows=\"4\" />\n</p>\n\n<!-- preview and submit buttons (note: submit button will have a class of \'disabled\'\n applied until you have previewed the message at least once) -->\n<p>\n <txp:comment_preview />\n <txp:comment_submit />\n</p>', 'four-point-eight', NULL),
('comments', 'comment', '<!-- load the comment email into a variable. you will be using this below along with author email variable loaded in form: default.article.txp\n then check the comment email variable against article author email variable, and if it matches add \'comments-author\' class -->\n<txp:variable name=\"this_comment\" value=\'<txp:comment_email />\' />\n<txp:if_variable name=\"this_comment\" value=\'<txp:author_email />\'>\n <article class=\"comments comments-author\" itemscope itemtype=\"https://schema.org/Comment\">\n<txp:else />\n <article class=\"comments\" itemscope itemtype=\"https://schema.org/Comment\">\n</txp:if_variable>\n\n <h4>\n <span class=\"comment-author\" itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:comment_name />\n </span>\n </span>\n\n <!-- ...now check the comment email variable against article author email variable, and if it matches add \'(author)\' text -->\n <txp:if_variable name=\"this_comment\" value=\'<txp:author_email />\'>\n <span class=\"is-author\">\n (<txp:text item=\"author\" />)\n </span>\n </txp:if_variable>\n\n <!-- add a permlink so people can link direct to this comment -->\n <span class=\"comment-anchor\" itemprop=\"url\">\n <txp:comment_permlink>#</txp:comment_permlink>\n </span>\n\n </h4>\n\n <!-- also add a \'since\' to show comment freshness -->\n <p class=\"footnote\">\n <time datetime=\"<txp:comment_time format=\"iso8601\" />\" itemprop=\"dateCreated\">\n <txp:comment_time />\n (<txp:comment_time format=\"since\" />)\n </time>\n </p>\n\n <div itemprop=\"text\">\n <txp:comment_message />\n </div>\n\n</article>', 'four-point-eight', NULL),
('comments_display', 'comment', '<!-- if there are comments, display them (note: example code below overrides the global preference setting for comments wrapping by stating\n attributes of wraptag=\"\" and break=\"\", you are instead using ol and li tags below)... -->\n<txp:if_comments>\n\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <ol class=\"comments-list\">\n\n <txp:comments wraptag=\"\" break=\"li\" /> <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n\n <!-- if this is a comment preview, display it (but only if there is no error) -->\n <txp:if_comments_preview>\n <li>\n <p id=\"cpreview\">\n <txp:text item=\"press_preview_then_submit\" />\n </p>\n\n <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n <txp:comments_preview wraptag=\"\" />\n\n </li>\n </txp:if_comments_preview>\n\n </ol>\n\n<!-- else if there are no comments yet and user is currently previewing comment, display it (but only if there is no error) -->\n<txp:else />\n\n <txp:if_comments_preview>\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <ol class=\"comments-list\">\n <li>\n <p id=\"cpreview\">\n <txp:text item=\"press_preview_then_submit\" />\n </p>\n\n <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n <txp:comments_preview wraptag=\"\" />\n\n </li>\n </ol>\n\n<!-- else just display that there are simply no comments whatsoever :( ...but only if comments are allowed -->\n <txp:else />\n\n <txp:if_comments_allowed>\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <p>\n <txp:text item=\"no_comments\" />\n </p>\n\n </txp:if_comments_allowed>\n </txp:if_comments_preview>\n</txp:if_comments>\n\n<!-- next, if new comments are allowed for this article then display comment form -->\n<txp:if_comments_allowed>\n\n <section id=\"comments-form\">\n\n <!-- comment invite text is taken for the article\'s comment invitation field on the \'write\' screen -->\n <h3>\n <txp:comments_invite showcount=\"0\" textonly showalways />\n </h3>\n\n <!-- links by default to form: \'comment_form.comment.txp\' unless you specify a different form -->\n <txp:comments_form />\n\n </section>\n\n<!-- else display a comments expired message ...but only if comments had previously been allowed -->\n<txp:else />\n\n <txp:if_comments>\n <p>\n <strong>\n <txp:text item=\"comments_expired\" />\n </strong>\n </p>\n </txp:if_comments>\n\n</txp:if_comments_allowed>\n\n<!-- if a comments section was rendered above, close the tag -->\n<txp:if_comments>\n </section>\n<txp:else />\n <txp:if_comments_allowed>\n </section>\n </txp:if_comments_allowed>\n</txp:if_comments>', 'four-point-eight', NULL),
('body_header', 'misc', '<a class=\"skip-link\" href=\"#main\"><txp:text item=\"go_content\" /></a>\n\n<header class=\"site-header\">\n <h2><txp:link_to_home><txp:site_name /></txp:link_to_home></h2>\n <txp:evaluate>\n <h3><txp:site_slogan /></h3>\n </txp:evaluate>\n</header>\n\n<nav id=\"navigation\" class=\"site-navigation\" aria-label=\"<txp:text item=\"site_nav\" />\" itemscope itemtype=\"https://schema.org/SiteNavigationElement\">\n <div>\n <txp:section_list default_title=\'<txp:text item=\"home\" />\' include_default wraptag=\"ul\" break=\"\">\n <li<txp:if_section name=\'<txp:section />\'> class=\"active\"</txp:if_section>>\n <a itemprop=\"url\" href=\"<txp:section url />\">\n <txp:section title />\n </a>\n </li>\n </txp:section_list>\n\n <!-- links by default to form: \'search_input.txp\' unless you specify a different form -->\n <txp:search_input />\n </div>\n</nav>', 'four-point-eight', NULL),
('body_aside', 'misc', '<aside class=\"complementary-content\">\n <!-- feed links, default flavor is RSS, so we don\'t need to specify a flavor on the first feed_link -->\n <p><txp:feed_link class=\"feed-rss\" label=\"RSS\" /> / <txp:feed_link class=\"feed-atom\" flavor=\"atom\" label=\"Atom\" /></p>\n\n <!-- if links exist, renders a links list -->\n <txp:evaluate test=\"linklist\">\n <section>\n <h4><txp:text item=\"links\" /></h4>\n <!-- links by default to form: \'plainlinks.txp\' unless you specify a different form -->\n <txp:linklist wraptag=\"ul\" break=\"li\" />\n </section>\n </txp:evaluate>\n</aside>', 'four-point-eight', NULL),
('images', 'misc', '<!-- set up a variable to check whether an image also has a caption associated with it... -->\n<txp:variable name=\"caption\" value=\'<txp:image_info />\' />\n\n<!-- ...now use that image caption and wrap img inside a figure with figcaption tags, otherwise just use a plain img tag -->\n<txp:if_variable name=\"caption\" value=\"\">\n\n <p itemprop=\"image\" itemscope itemtype=\"https://schema.org/ImageObject\">\n <img itemprop=\"url contentUrl\" src=\"<txp:image_url link=\'0\' />\" alt=\"<txp:image_info type=\'alt\' />\">\n <meta itemprop=\"width\" content=\"<txp:image_info type=\"w\" />\">\n <meta itemprop=\"height\" content=\"<txp:image_info type=\"h\" />\">\n </p>\n\n<txp:else />\n\n <figure itemprop=\"image\" itemscope itemtype=\"https://schema.org/ImageObject\">\n\n <img itemprop=\"url contentUrl\" src=\"<txp:image_url link=\'0\' />\" alt=\"<txp:image_info type=\'alt\' />\">\n <meta itemprop=\"width\" content=\"<txp:image_info type=\"w\" />\">\n <meta itemprop=\"height\" content=\"<txp:image_info type=\"h\" />\">\n\n <!-- you do not need to specify the attribute type=\"caption\" as that is the default setting for <txp:image_info /> tag -->\n <figcaption itemprop=\"caption\">\n <txp:image_info />\n </figcaption>\n\n </figure>\n\n</txp:if_variable>', 'four-point-eight', NULL),
('search_input', 'misc', '<div class=\"search\" aria-label=\"<txp:text item=\"search\" />\" itemscope itemtype=\"https://schema.org/WebSite\">\n <meta itemprop=\"url\" content=\"<txp:site_url />\">\n <form role=\"search\" method=\"get\" action=\"<txp:site_url />\" itemprop=\"potentialAction\" itemscope itemtype=\"https://schema.org/SearchAction\">\n <meta itemprop=\"target\" content=\"<txp:site_url />?q={q}\">\n <label class=\"accessibility\" for=\"search\"><txp:text item=\"search\" /></label>\n <input id=\"search\" name=\"q\" type=\"search\" itemprop=\"query-input\" placeholder=\"<txp:text item=\"search\" />\"<txp:if_search> value=\"<txp:search_term />\"</txp:if_search>>\n </form>\n</div>', 'four-point-eight', NULL),
('search_display', 'misc', '<h1 itemprop=\"name\"><txp:text item=\"search_results\" /></h1>\n\n<txp:if_search_results>\n\n <!-- if search result count greater than 200 then display excessive results message, otherwise show search result count -->\n <txp:if_search_results max=\"200\">\n <h3>\n <txp:search_result_count />\n <txp:text item=\"matching_search_request\" />\n <q><txp:search_term /></q>\n </h3>\n <txp:else />\n <h3>\n <txp:text item=\"too_common_search_term\" />\n <q><txp:search_term /></q>\n </h3>\n </txp:if_search_results>\n\n<!-- if no search results, then display no search results message -->\n<txp:else />\n <h3>\n <txp:text item=\"no_search_matches\" />\n </h3>\n\n</txp:if_search_results>\n\n<!-- display resulting articles (10 per page; default setting) -->\n<txp:article class=\"article-list\" wraptag=\"ul\" />\n\n<!-- check if there are further results and provide pagination links depending on the result -->\n<txp:if_search_results min=\"11\">\n <nav class=\"paginator\" aria-label=\"<txp:text item=\"page_nav\" />\">\n <txp:evaluate>\n <txp:newer rel=\"prev\">\n <txp:text item=\"prev\" />\n </txp:newer>\n <txp:older rel=\"next\">\n <txp:text item=\"next\" />\n </txp:older>\n </txp:evaluate>\n </nav>\n</txp:if_search_results>', 'four-point-eight', NULL),
('body_footer', 'misc', '<footer class=\"site-footer\">\n <p><small><txp:text item=\"published_with\" /> <a rel=\"external\" href=\"https://textpattern.com/\" title=\"<txp:text item=\"go_txp_com\" />\">Textpattern CMS</a></small></p>\n</footer>', 'four-point-eight', NULL),
('footer', 'article', '<footer class=\"footer\" id=\"footer\">\r\n\r\n<h2>100% Discount on our FREE Wave download if you Buy Now!</h2>\r\n\r\n<txp:file_download_list id=\"2\" class=\"touch download\" wraptag=\"p\"><txp:file_download form=\"file\" /></txp:file_download_list>\r\n\r\n<txp:body />\r\n\r\n<p>Published with <a href=\"https://textpattern.com/\" rel=\"external\">Textpattern CMS</a> · Design is a <a href=\"https://gud.one/\" rel=\"external\">Gud One</a></p>\r\n <a class=\"topr\" href=\"\" > ↑ </a>\r\n <a class=\"topl\" href=\"\" > ↑ </a>\r\n\r\n<txp:hide>\r\n<div class=\"serchwrap\"><txp:search_input form=\"search_input2\" /></div>\r\n</txp:hide>\r\n</footer>', 'wave', NULL),
('intro', 'article', '<article class=\"intro\" itemprop=\"blogPost\" itemscope itemtype=\"https://schema.org/BlogPosting\">\r\n\r\n<div class=\"intro-block\">\r\n <div class=\"intro-block1\">\r\n\r\n <h2 itemprop=\"headline\"><txp:custom_field name=\"intro-title\" /></h2>\r\n \r\n <txp:images limit=\"1\">\r\n <txp::fig />\r\n </txp:images> \r\n \r\n</div>\r\n \r\n <div itemprop=\"articleBody\" class=\"intro-block2 <txp:custom_field name=\"zebra\" />\">\r\n\r\n <txp:excerpt />\r\n\r\n </div>\r\n</div>\r\n\r\n</article>\r\n\r\n<!-- ooooooo -->\r\n\r\n<hr />', 'wave', NULL),
('default', 'article', '<article class=\"article <txp:if_custom_field name=\"zebra\">zebra</txp:if_custom_field>\" itemprop=\"Article\" itemscope itemtype=\"https://schema.org/WebContent\">\r\n \r\n <h3 itemprop=\"headline\"><txp:title /><br />\r\n<span class=\"subhead\"><txp:custom_field name=\"subhead\" /></span></h3>\r\n\r\n <txp:images limit=\"1\" offset=\"1\">\r\n <txp::fig />\r\n </txp:images>\r\n\r\n <div itemprop=\"articleBody\">\r\n <txp:body />\r\n </div>\r\n\r\n</article>\r\n\r\n', 'wave', NULL),
('what', 'article', '<article class=\"intro\" itemprop=\"Article\" itemscope itemtype=\"https://schema.org/WebContent\">\r\n\r\n<div class=\"intro-block\">\r\n <div class=\"intro-block1\">\r\n\r\n <h3 itemprop=\"headline\"><txp:custom_field name=\"intro-title\" /></h3>\r\n \r\n <txp:images limit=\"1\">\r\n <txp::fig />\r\n </txp:images> \r\n \r\n</div>\r\n \r\n <div itemprop=\"articleBody\" class=\"intro-block2 <txp:custom_field name=\"zebra\" />\">\r\n\r\n <txp:excerpt />\r\n\r\n </div>\r\n</div>\r\n\r\n</article>\r\n\r\n<!-- ooooooo -->\r\n\r\n', 'wave', NULL),
('search_results', 'article', '<li class=\"article\" itemscope itemtype=\"https://schema.org/Article\">\r\n <h4 itemprop=\"headline\"><txp:title /></h4>\r\n <p><txp:search_result_excerpt /></p>\r\n</li>', 'wave', NULL),
('plainlinks', 'link', '<!-- This is being used as an external links form, therefore rel is set to \'external\' -->\n<txp:linkdesctitle rel=\"external\" />', 'wave', NULL),
('files', 'file', '<div itemscope itemtype=\"https://schema.org/DataDownload\">\n\n <!-- ...if exists, use the file title, otherwise use file name -->\n <a href=\"<txp:file_download_link />\" itemprop=\"url contentUrl\">\n <strong itemprop=\"name\">\n <txp:evaluate>\n <txp:file_download_name title />\n <txp:else />\n <txp:file_download_name />\n </txp:evaluate>\n </strong>\n </a>\n\n <!-- ...if exists, use the file description, otherwise omit that line -->\n <txp:evaluate test>\n <div itemprop=\"description\">\n <txp:file_download_description />\n </div>\n </txp:evaluate>\n\n <div class=\"footnote\">\n\n <!-- ...if exists, use the file category, otherwise omit that line -->\n <txp:evaluate test=\"file_download_category\">\n <strong>\n <txp:text item=\"category\" />\n </strong>\n <span itemprop=\"keywords\">\n <txp:file_download_category title />\n </span>\n ·\n </txp:evaluate>\n\n <strong>\n <txp:text item=\"author\" />\n </strong>\n <span itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:file_download_author link />\n </span>\n </span>\n ·\n <strong>\n <txp:text item=\"file_size\" />\n </strong>\n <span itemprop=\"contentSize\">\n <txp:file_download_size />\n </span>\n ·\n <strong>\n <txp:text item=\"last_modified\" />\n </strong>\n <time datetime=\"<txp:file_download_modified format=\"iso8601\" />\" itemprop=\"dateModified\">\n <txp:file_download_modified />\n </time>\n ·\n <strong>\n <txp:text item=\"download_count\" />\n </strong>\n <span itemprop=\"interactionStatistic\" itemscope itemtype=\"https://schema.org/InteractionCounter\">\n <meta itemprop=\"interactionType\" content=\"https://schema.org/DownloadAction\" />\n <span itemprop=\"userInteractionCount\">\n <txp:file_download_downloads />\n </span>\n </span>\n\n </div>\n\n</div>', 'wave', NULL),
('popup_comments', 'comment', '<!DOCTYPE html>\n<html lang=\"<txp:lang />\" dir=\"<txp:text item=\"lang_dir\" />\">\n\n<head>\n <meta charset=\"utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, viewport-fit=cover\">\n <title><txp:page_title /></title>\n\n <!-- CSS -->\n <txp:css format=\"link\" media=\"\" />\n <!-- ...or you can use (faster) external CSS files e.g. <link rel=\"stylesheet\" href=\"<txp:page_url type=\"theme_path\" />/styles/default.css\"> -->\n\n <meta name=\"generator\" content=\"Textpattern CMS\">\n <meta name=\"robots\" content=\"noindex, follow\">\n</head>\n\n<body class=\"popup-page\">\n <div class=\"wrapper\">\n <div class=\"container\">\n\n <!-- this form is only used if you set \'Comments mode\' to \'popup\' format in preferences -->\n <txp:popup_comments />\n\n </div> <!-- /.container -->\n </div> <!-- /.wrapper -->\n</body>\n</html>', 'wave', NULL),
('comment_form', 'comment', '<p>\n <txp:text item=\"enter_comment_here\" />\n</p>\n\n<!-- if there is an error, then inform user -->\n<txp:if_comments_error>\n <txp:comments_error class=\"error_message\" wraptag=\"ol\" break=\"li\" />\n</txp:if_comments_error>\n\n<p class=\"large\">\n <label for=\"name\">\n <txp:text item=\"comment_name\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_name_input size=\"32\" />\n</p>\n\n<p class=\"large\">\n <label for=\"email\">\n <txp:text item=\"comment_email\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_email_input size=\"32\" />\n</p>\n\n<p class=\"large\">\n <label for=\"web\">\n <txp:text item=\"comment_web\" />\n </label>\n <br>\n <txp:comment_web_input size=\"32\" />\n</p>\n\n<p class=\"small\">\n <label for=\"message\">\n <txp:text item=\"comment_message\" />\n <b class=\"required\" title=\"<txp:text item=\"required\" />\">*</b>\n </label>\n <br>\n <txp:comment_message_input cols=\"64\" rows=\"4\" />\n</p>\n\n<!-- preview and submit buttons (note: submit button will have a class of \'disabled\'\n applied until you have previewed the message at least once) -->\n<p>\n <txp:comment_preview />\n <txp:comment_submit />\n</p>', 'wave', NULL),
('comments', 'comment', '<!-- load the comment email into a variable. you will be using this below along with author email variable loaded in form: default.article.txp\n then check the comment email variable against article author email variable, and if it matches add \'comments-author\' class -->\n<txp:variable name=\"this_comment\" value=\'<txp:comment_email />\' />\n<txp:if_variable name=\"this_comment\" value=\'<txp:author_email />\'>\n <article class=\"comments comments-author\" itemscope itemtype=\"https://schema.org/Comment\">\n<txp:else />\n <article class=\"comments\" itemscope itemtype=\"https://schema.org/Comment\">\n</txp:if_variable>\n\n <h4>\n <span class=\"comment-author\" itemprop=\"author\" itemscope itemtype=\"https://schema.org/Person\">\n <span itemprop=\"name\">\n <txp:comment_name />\n </span>\n </span>\n\n <!-- ...now check the comment email variable against article author email variable, and if it matches add \'(author)\' text -->\n <txp:if_variable name=\"this_comment\" value=\'<txp:author_email />\'>\n <span class=\"is-author\">\n (<txp:text item=\"author\" />)\n </span>\n </txp:if_variable>\n\n <!-- add a permlink so people can link direct to this comment -->\n <span class=\"comment-anchor\" itemprop=\"url\">\n <txp:comment_permlink>#</txp:comment_permlink>\n </span>\n\n </h4>\n\n <!-- also add a \'since\' to show comment freshness -->\n <p class=\"footnote\">\n <time datetime=\"<txp:comment_time format=\"iso8601\" />\" itemprop=\"dateCreated\">\n <txp:comment_time />\n (<txp:comment_time format=\"since\" />)\n </time>\n </p>\n\n <div itemprop=\"text\">\n <txp:comment_message />\n </div>\n\n</article>', 'wave', NULL),
('comments_display', 'comment', '<!-- if there are comments, display them (note: example code below overrides the global preference setting for comments wrapping by stating\n attributes of wraptag=\"\" and break=\"\", you are instead using ol and li tags below)... -->\n<txp:if_comments>\n\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <ol class=\"comments-list\">\n\n <txp:comments wraptag=\"\" break=\"li\" /> <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n\n <!-- if this is a comment preview, display it (but only if there is no error) -->\n <txp:if_comments_preview>\n <li>\n <p id=\"cpreview\">\n <txp:text item=\"press_preview_then_submit\" />\n </p>\n\n <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n <txp:comments_preview wraptag=\"\" />\n\n </li>\n </txp:if_comments_preview>\n\n </ol>\n\n<!-- else if there are no comments yet and user is currently previewing comment, display it (but only if there is no error) -->\n<txp:else />\n\n <txp:if_comments_preview>\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <ol class=\"comments-list\">\n <li>\n <p id=\"cpreview\">\n <txp:text item=\"press_preview_then_submit\" />\n </p>\n\n <!-- links by default to form: \'comments.comment.txp\' unless you specify a different form -->\n <txp:comments_preview wraptag=\"\" />\n\n </li>\n </ol>\n\n<!-- else just display that there are simply no comments whatsoever :( ...but only if comments are allowed -->\n <txp:else />\n\n <txp:if_comments_allowed>\n <section id=\"comments-head\">\n <h3>\n <txp:text item=\"comments\" />\n </h3>\n <p>\n <txp:text item=\"no_comments\" />\n </p>\n\n </txp:if_comments_allowed>\n </txp:if_comments_preview>\n</txp:if_comments>\n\n<!-- next, if new comments are allowed for this article then display comment form -->\n<txp:if_comments_allowed>\n\n <section id=\"comments-form\">\n\n <!-- comment invite text is taken for the article\'s comment invitation field on the \'write\' screen -->\n <h3>\n <txp:comments_invite showcount=\"0\" textonly showalways />\n </h3>\n\n <!-- links by default to form: \'comment_form.comment.txp\' unless you specify a different form -->\n <txp:comments_form />\n\n </section>\n\n<!-- else display a comments expired message ...but only if comments had previously been allowed -->\n<txp:else />\n\n <txp:if_comments>\n <p>\n <strong>\n <txp:text item=\"comments_expired\" />\n </strong>\n </p>\n </txp:if_comments>\n\n</txp:if_comments_allowed>\n\n<!-- if a comments section was rendered above, close the tag -->\n<txp:if_comments>\n </section>\n<txp:else />\n <txp:if_comments_allowed>\n </section>\n </txp:if_comments_allowed>\n</txp:if_comments>', 'wave', NULL),
('body_header', 'misc', '<header class=\"site-header\" itemscope itemtype=\"https://schema.org/Organization\">\r\n <mark id=\"logo\" accesskey=\"1\" itemprop=\"Brand\" ><a href=\"<txp:site_url />\"><img src=\"<txp:site_url />images/wave-logo144.png\" alt=\"a wavy line under the word wave\" title=\"wave template for Textpattern\" width=\"144\" height=\"34\" /></a>\r\n </mark>\r\n </header>\r\n\r\n\r\n<nav class=\"nav\" aria-label=\"<txp:text item=\"site_nav\" />\" itemscope itemtype=\"https://schema.org/SiteNavigationElement\">\r\n <ul>\r\n <li class=\"download\"><txp:file_download_list id=\"2\" wraptag=\"\"><txp:file_download form=\"file\" /></txp:file_download_list></li>\r\n <li><a class=\"\" href=\"#what\">what</a></li>\r\n <li><a class=\"\" href=\"#who\">who</a></li>\r\n <li><a class=\"\" href=\"#why\">why</a></li>\r\n </ul>\r\n<txp:hide>\r\n<txp:search_input />\r\n</txp:hide>\r\n </nav>\r\n\r\n<!-- ooooooo -->', 'wave', NULL),
('body_aside', 'misc', '<hr />\r\n<aside class=\"complementary-content\">\r\n\r\n<div class=\"aside\">\r\n<txp:com_connect to=\"recipient@example.com\" />\r\n\r\n <!-- if links exist, renders a links list -->\r\n <txp:evaluate test=\"linklist\">\r\n <section>\r\n <h4><txp:text item=\"links\" /></h4>\r\n <!-- links by default to form: \'plainlinks.txp\' unless you specify a different form -->\r\n <txp:linklist wraptag=\"ul\" break=\"li\" />\r\n </section>\r\n </txp:evaluate>\r\n</div>\r\n</aside>', 'wave', NULL),
('fig', 'misc', '<figure<txp:if_yield name=\"class\"> class=\"<txp:yield name=\"class\" />\"</txp:if_yield> itemprop=\"image\" itemscope itemtype=\"https://schema.org/ImageObject\">\r\n <txp:image id=\'<txp:yield name=\"id\" />\' />\r\n <txp:if_yield name=\"caption\">\r\n <figcaption itemprop=\"caption\"><txp:yield name=\"caption\" escape=\"tidy,textile\" /></figcaption>\r\n <txp:else />\r\n <txp:image_info id=\'<txp:yield name=\"id\" />\' wraptag=\"figcaption\" escape=\"tidy,textile\" />\r\n </txp:if_yield>\r\n</figure>', 'wave', NULL),
('images', 'misc', '<txp:variable name=\"caption\" value=\'<txp:image_info />\' />\r\n\r\n<txp:if_variable name=\"caption\" value=\"\">\r\n\r\n <figure itemprop=\"image\" itemscope itemtype=\"https://schema.org/ImageObject\">\r\n <img itemprop=\"url contentUrl\" src=\"<txp:image_url link=\'0\' />\" alt=\"<txp:image_info type=\'alt\' />\">\r\n <meta itemprop=\"width\" content=\"<txp:image_info type=\"w\" />\">\r\n <meta itemprop=\"height\" content=\"<txp:image_info type=\"h\" />\">\r\n </figure>\r\n\r\n<txp:else />\r\n\r\n <figure itemprop=\"image\" itemscope itemtype=\"https://schema.org/ImageObject\">\r\n\r\n <img itemprop=\"url contentUrl\" src=\"<txp:image_url link=\'0\' />\" alt=\"<txp:image_info type=\'alt\' />\">\r\n <meta itemprop=\"width\" content=\"<txp:image_info type=\"w\" />\">\r\n <meta itemprop=\"height\" content=\"<txp:image_info type=\"h\" />\">\r\n\r\n <figcaption itemprop=\"caption\">\r\n <txp:image_info />\r\n </figcaption>\r\n\r\n </figure>\r\n\r\n</txp:if_variable>', 'wave', NULL),
('search_input2', 'misc', '<div class=\"serch\" aria-label=\"<txp:text item=\"search\" />\" itemscope itemtype=\"https://schema.org/WebSite\">\r\n <meta itemprop=\"url\" content=\"<txp:site_url />\">\r\n <form role=\"search\" method=\"get\" action=\"<txp:site_url />\" itemprop=\"potentialAction\" itemscope itemtype=\"https://schema.org/SearchAction\">\r\n <meta itemprop=\"target\" content=\"<txp:site_url />?q={q}\">\r\n <input name=\"q\" type=\"search\" itemprop=\"query-input\" placeholder=\"<txp:text item=\"search\" />\"<txp:if_search> value=\"<txp:search_term />\"</txp:if_search>>\r\n </form>\r\n</div>', 'wave', NULL),
('search_input', 'misc', '<div class=\"search\" aria-label=\"<txp:text item=\"search\" />\" itemscope itemtype=\"https://schema.org/WebSite\">\r\n <meta itemprop=\"url\" content=\"<txp:site_url />\">\r\n <form role=\"search\" method=\"get\" action=\"<txp:site_url />\" itemprop=\"potentialAction\" itemscope itemtype=\"https://schema.org/SearchAction\">\r\n <meta itemprop=\"target\" content=\"<txp:site_url />?q={q}\">\r\n <input name=\"q\" type=\"search\" itemprop=\"query-input\" placeholder=\"<txp:text item=\"search\" />\"<txp:if_search> value=\"<txp:search_term />\"</txp:if_search>>\r\n </form>\r\n</div>', 'wave', NULL),
('search_display', 'misc', '<div class=\"results\">\r\n\r\n<p><strong><em>Tip: try Ctrl + F on the home page</strong></em></p>\r\n<h2 itemprop=\"name\"><txp:text item=\"search_results\" /></h2>\r\n\r\n<txp:if_search_results>\r\n\r\n <!-- if search result count greater than 200 then display excessive results message, otherwise show search result count -->\r\n <txp:if_search_results max=\"200\">\r\n <h3>\r\n <txp:search_result_count />\r\n <txp:text item=\"matching_search_request\" />\r\n <q><txp:search_term /></q>\r\n </h3>\r\n <txp:else />\r\n <h3>\r\n <txp:text item=\"too_common_search_term\" />\r\n <q><txp:search_term /></q>\r\n </h3>\r\n </txp:if_search_results>\r\n\r\n<!-- if no search results, then display no search results message -->\r\n<txp:else />\r\n <h3>\r\n <txp:text item=\"no_search_matches\" />\r\n </h3>\r\n\r\n</txp:if_search_results>\r\n\r\n<!-- display resulting articles (10 per page; default setting) -->\r\n<txp:article class=\"article-list\" wraptag=\"ul\" />\r\n\r\n<!-- check if there are further results and provide pagination links depending on the result -->\r\n<txp:if_search_results min=\"11\">\r\n <nav class=\"paginator\" aria-label=\"<txp:text item=\"page_nav\" />\">\r\n <txp:evaluate>\r\n <txp:newer rel=\"prev\">\r\n <txp:text item=\"prev\" />\r\n </txp:newer>\r\n <txp:older rel=\"next\">\r\n <txp:text item=\"next\" />\r\n </txp:older>\r\n </txp:evaluate>\r\n </nav>\r\n</txp:if_search_results>\r\n\r\n</div>\r\n<txp:hide>\r\n<div class=\"serchwrap\"><txp:search_input form=\"search_input2\" /></div>\r\n</txp:hide>', 'wave', NULL),
('file', 'file', '<a itemscope itemtype=\"https://schema.org/DataDownload\" href=\"<txp:file_download_link />\" itemprop=\"url contentUrl\"><span class=\"button\" itemprop=\"name\">Download <txp:evaluate> <txp:file_download_name title /><txp:else /><txp:file_download_name /></txp:evaluate> ↓</span></a>', 'wave', NULL),
('big-intro', 'article', '<article class=\"headline\" itemprop=\"Article\" itemscope itemtype=\"https://schema.org/WebContent\">\r\n\r\n<div class=\"headline-measure\">\r\n<h1 class=\"headline-title\" itemprop=\"headline\"><txp:title /></h1>\r\n<p class=\"headline-text\" itemprop=\"alternativeHeadline\"><txp:excerpt /></p>\r\n</div>\r\n\r\n<div itemprop=\"articleBody\">\r\n<txp:body />\r\n</div>\r\n\r\n<txp:if_custom_field name=\"subhead\">\r\n<div class=\"feature\">\r\n<blockquote><txp:custom_field name=\"subhead\" /></blockquote>\r\n</div>\r\n</txp:if_custom_field>\r\n\r\n<txp:hide>\r\n\r\n<div class=\"videowrap\" itemprop=\"video\" itemscope itemtype=\"https://schema.org/VideoObject\">\r\n<h2>Promo Video</h2>\r\n<video controls preload=\"metadata\">\r\n <source itemprop=\"contentUrl\" type=\"video/mp4\" src=\"/images/wavy640.mp4\">\r\n <source itemprop=\"contentUrl\" type=\"video/webm\" src=\"/images/wavy640.webm\">\r\n <p>Your browser doesn\'t support HTML video. (Link to the download goes here).</p>\r\n</video>\r\n <meta itemprop=\"name\" content=\"Wavy Waves\" />\r\n <meta itemprop=\"description\" content=\"Waves in space\">\r\n <meta itemprop=\"duration\" content=\"T29S\">\r\n<p>There is a higher quality version available to download (7MB). \r\nVideo by <a href=\"https://pixabay.com/users/tommyvideo-3092371/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4968\">Tomislav Jakupec</a> from <a href=\"https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4968\">Pixabay</a></p>\r\n</div>\r\n\r\n</txp:hide>\r\n\r\n</article>\r\n\r\n', 'wave', NULL),
('intro-what', 'article', '<header class=\"section_head\">\r\n<h2 itemprop=\"headline\"><txp:title /><br />\r\n <span itemprop=\"alternativeHeadline\" class=\"subhead\"><txp:custom_field name=\"subhead\" /></span>\r\n</h2>\r\n<txp:if_custom_field name=\"body\"><txp:body /></txp:if_custom_field>\r\n</header>\r\n\r\n<!-- ~~~~~~~~~~ -->\r\n', 'wave', NULL),
('intro-who', 'article', '<header class=\"section_head\">\r\n<h2 itemprop=\"headline\"><txp:category1 title=\"1\" /><br />\r\n <span itemprop=\"alternativeHeadline\" class=\"subhead\"><txp:custom_field name=\"subhead2\" /></span>\r\n</h2>\r\n<txp:if_excerpt><txp:excerpt /></txp:if_excerpt>\r\n</header>\r\n\r\n<!-- ~~~~~~~~~~ -->\r\n', 'wave', NULL),
('intro-why', 'article', '<header class=\"section_head\">\r\n<h2 itemprop=\"headline\"><txp:category2 title=\"1\" /><br />\r\n <span itemprop=\"alternativeHeadline\" class=\"subhead\"><txp:custom_field name=\"subhead3\" /></span>\r\n</h2>\r\n<txp:if_custom_field name=\"description\"><p><txp:meta_description format=\"unset\" /></p></txp:if_custom_field>\r\n</header>\r\n\r\n<!-- ~~~~~~~~~~ -->\r\n\r\n', 'wave', NULL),
('who', 'article', '<article class=\"article <txp:if_custom_field name=\"zebra\">zebra</txp:if_custom_field>\" itemprop=\"Article\" itemscope itemtype=\"https://schema.org/WebContent\">\r\n \r\n <h3 itemprop=\"headline\"><txp:custom_field name=\"intro-title\" /><br /><txp:if_custom_field name=\"subhead2\">\r\n<span itemprop=\"alternativeHeadline\" class=\"subhead\"><txp:custom_field name=\"subhead2\" /></span></txp:if_custom_field></h3>\r\n\r\n <txp:images limit=\"1\">\r\n <txp::fig />\r\n </txp:images>\r\n\r\n <div itemprop=\"articleBody\">\r\n <txp:excerpt />\r\n </div>\r\n\r\n</article>\r\n\r\n<!-- ooooooo -->\r\n\r\n', 'wave', NULL),
('why', 'article', '<article class=\"article <txp:if_custom_field name=\"zebra\">zebra</txp:if_custom_field>\" itemprop=\"Article\" itemscope itemtype=\"https://schema.org/WebContent\">\r\n \r\n <h3 itemprop=\"headline\"><txp:custom_field name=\"intro-title\" /><br /><txp:if_custom_field name=\"subhead2\">\r\n<span itemprop=\"alternativeHeadline\" class=\"subhead\"><txp:custom_field name=\"subhead2\" /></span></txp:if_custom_field></h3>\r\n\r\n <txp:images limit=\"1\" offset=\"1\">\r\n <txp::fig />\r\n </txp:images>\r\n\r\n <div itemprop=\"articleBody\">\r\n <txp:excerpt />\r\n </div>\r\n\r\n</article>\r\n\r\n<!-- ooooooo -->\r\n', 'wave', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `txp_image`
--
CREATE TABLE `txp_image` (
`id` int(11) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`category` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ext` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`w` int(11) NOT NULL DEFAULT 0,
`h` int(11) NOT NULL DEFAULT 0,
`alt` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`caption` text COLLATE utf8mb4_unicode_ci NOT NULL,
`date` datetime NOT NULL,
`author` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`thumbnail` int(11) NOT NULL DEFAULT 0,
`thumb_w` int(11) NOT NULL DEFAULT 0,
`thumb_h` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_image`
--
INSERT INTO `txp_image` (`id`, `name`, `category`, `ext`, `w`, `h`, `alt`, `caption`, `date`, `author`, `thumbnail`, `thumb_w`, `thumb_h`) VALUES
(1, 'wave640.png', 'site-design', '.png', 640, 320, '', '', '2020-07-20 18:19:58', 'peter', 0, 0, 0),
(2, 'wave960.png', 'site-design', '.png', 960, 480, '', '', '2020-07-20 18:21:24', 'peter', 0, 0, 0),
(3, 'wave1280.png', 'site-design', '.png', 1280, 640, '', '', '2020-07-20 18:21:37', 'peter', 0, 0, 0),
(4, 'surf1wave472.png', '', '.png', 472, 166, 'surf and waves rolling in', 'Why Wave is what you want', '2020-07-20 18:22:08', 'peter', 0, 0, 0),
(5, 'surf2wave472.png', '', '.png', 472, 295, 'Big waves and surf', 'Enjoy surfing!', '2020-07-20 18:22:18', 'peter', 0, 0, 0),
(6, 'sine1wave472.png', '', '.png', 472, 185, 'wiggly waves', 'Wave what and how', '2020-07-20 18:22:39', 'peter', 0, 0, 0),
(7, 'sine2wave472.png', '', '.png', 472, 292, 'sine waves', 'Sine in, Sine up, Sine wave', '2020-07-20 18:22:47', 'peter', 0, 0, 0),
(8, 'energy1wave472.png', '', '.png', 472, 130, 'pulses of energy and light', 'Wave what and how 2', '2020-07-20 18:23:14', 'peter', 0, 0, 0),
(9, 'energy2wave472.png', '', '.png', 472, 188, 'sine waves of light', 'You are made of light', '2020-07-20 18:23:23', 'peter', 0, 0, 0),
(10, 'lightwave472.jpg', '', '.jpg', 472, 193, 'white blue star explosion shape', 'In essence we are just like you', '2020-07-23 09:35:29', 'peter', 0, 0, 0),
(11, 'brainwave472.jpg', '', '.jpg', 472, 215, 'waves in a brain', 'Controlling the waves', '2020-07-20 18:23:50', 'peter', 0, 0, 0),
(12, 'handswave472.png', '', '.png', 472, 306, '8 arms and hands waving', 'Wave hello!', '2020-07-20 18:24:12', 'peter', 0, 0, 0),
(13, 'stopthewaves.jpg', '', '.jpg', 472, 337, 'King Canute stopping the waves', 'Hold it right there!', '2020-07-20 18:24:23', 'peter', 0, 0, 0);
-- --------------------------------------------------------
--
-- Table structure for table `txp_lang`
--
CREATE TABLE `txp_lang` (
`id` int(11) NOT NULL,
`lang` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`event` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`owner` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`lastmod` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `txp_lang`
--
INSERT INTO `txp_lang` (`id`, `lang`, `name`, `event`, `owner`, `data`, `lastmod`) VALUES
(1, 'en', 'active', 'common', '', 'Active', '2020-07-30 10:26:43'),
(2, 'en', 'add', 'common', '', 'Add', '2020-07-30 10:26:43'),
(3, 'en', 'admin', 'common', '', 'Admin', '2020-07-30 10:26:43'),
(4, 'en', 'ago', 'common', '', '{since} ago', '2020-07-30 10:26:43'),
(5, 'en', 'all', 'common', '', 'All', '2020-07-30 10:26:43'),
(6, 'en', 'are_you_sure', 'common', '', 'Are you sure?', '2020-07-30 10:26:43'),
(7, 'en', 'article', 'common', '', 'Article', '2020-07-30 10:26:43'),
(8, 'en', 'articles', 'common', '', 'Articles', '2020-07-30 10:26:43'),
(9, 'en', 'article_image', 'common', '', 'Article image', '2020-07-30 10:26:43'),
(10, 'en', 'any', 'common', '', 'Any', '2020-07-30 10:26:43'),
(11, 'en', 'ascending', 'common', '', 'Ascending', '2020-07-30 10:26:43'),
(12, 'en', 'auth_required', 'common', '', 'Authorization required.', '2020-07-30 10:26:43'),
(13, 'en', 'author', 'common', '', 'Author', '2020-07-30 10:26:43'),
(14, 'en', 'authors', 'common', '', 'Authors', '2020-07-30 10:26:43'),
(15, 'en', 'back_to_login', 'common', '', 'Back to Textpattern login', '2020-07-30 10:26:43'),
(16, 'en', 'back_to_top', 'common', '', 'Back to top', '2020-07-30 10:26:43'),
(17, 'en', 'bad_cookie', 'common', '', 'Your session has expired. Please log in again.', '2020-07-30 10:26:43'),
(18, 'en', 'bad_login', 'common', '', 'Could not log in with that username/password.', '2020-07-30 10:26:43'),
(19, 'en', 'browse', 'common', '', 'Browse', '2020-07-30 10:26:43'),
(20, 'en', 'cancel', 'common', '', 'Cancel', '2020-07-30 10:26:43'),
(21, 'en', 'caption', 'common', '', 'Caption', '2020-07-30 10:26:43'),
(22, 'en', 'category', 'common', '', 'Category', '2020-07-30 10:26:43'),
(23, 'en', 'categories', 'common', '', 'Categories', '2020-07-30 10:26:43'),
(24, 'en', 'categorize', 'common', '', 'Categorize', '2020-07-30 10:26:43'),
(25, 'en', 'category1', 'common', '', 'Category 1', '2020-07-30 10:26:43'),
(26, 'en', 'category2', 'common', '', 'Category 2', '2020-07-30 10:26:43'),
(27, 'en', 'choose', 'common', '', 'Choose…', '2020-07-30 10:26:43'),
(28, 'en', 'close', 'common', '', 'Close', '2020-07-30 10:26:43'),
(29, 'en', 'code', 'common', '', 'Code', '2020-07-30 10:26:43'),
(30, 'en', 'comment', 'common', '', 'Comment', '2020-07-30 10:26:43'),
(31, 'en', 'comment_invitation', 'common', '', 'Invitation', '2020-07-30 10:26:43'),
(32, 'en', 'comments', 'common', '', 'Comments', '2020-07-30 10:26:43'),
(33, 'en', 'comments_expired', 'common', '', 'Commenting has expired for this article.', '2020-07-30 10:26:43'),
(34, 'en', 'confirm_delete_popup', 'common', '', 'Really delete?', '2020-07-30 10:26:43'),
(35, 'en', 'contact', 'common', '', 'Contact', '2020-07-30 10:26:43'),
(36, 'en', 'cookies_must_be_enabled', 'common', '', 'Browser cookies must be enabled to use Textpattern.', '2020-07-30 10:26:43'),
(37, 'en', 'copy', 'common', '', 'Copy', '2020-07-30 10:26:43'),
(38, 'en', 'could_not_log_in', 'common', '', 'Could not log in with that username/password.', '2020-07-30 10:26:43'),
(39, 'en', 'create', 'common', '', 'Create', '2020-07-30 10:26:43'),
(40, 'en', 'css', 'common', '', 'Style', '2020-07-30 10:26:43'),
(41, 'en', 'current', 'common', '', 'Current', '2020-07-30 10:26:43'),
(42, 'en', 'date', 'common', '', 'Date', '2020-07-30 10:26:43'),
(43, 'en', 'date_added', 'common', '', 'Date added', '2020-07-30 10:26:43'),
(44, 'en', 'dateformat', 'common', '', 'Date format', '2020-07-30 10:26:43'),
(45, 'en', 'default', 'common', '', 'Default', '2020-07-30 10:26:43'),
(46, 'en', 'delete', 'common', '', 'Delete', '2020-07-30 10:26:43'),
(47, 'en', 'delete_selected', 'common', '', 'Delete selected', '2020-07-30 10:26:43'),
(48, 'en', 'descending', 'common', '', 'Descending', '2020-07-30 10:26:43'),
(49, 'en', 'description', 'common', '', 'Description', '2020-07-30 10:26:43'),
(50, 'en', 'documentation', 'common', '', 'Documentation', '2020-07-30 10:26:43'),
(51, 'en', 'download', 'common', '', 'Download', '2020-07-30 10:26:43'),
(52, 'en', 'download_count', 'common', '', 'Download count', '2020-07-30 10:26:43'),
(53, 'en', 'downloads', 'common', '', 'Downloads', '2020-07-30 10:26:43'),
(54, 'en', 'duplicate', 'common', '', 'Duplicate', '2020-07-30 10:26:43'),
(55, 'en', 'edit', 'common', '', 'Edit', '2020-07-30 10:26:43'),
(56, 'en', 'email', 'common', '', 'Email', '2020-07-30 10:26:43'),
(57, 'en', 'email_address', 'common', '', 'Email address', '2020-07-30 10:26:43'),
(58, 'en', 'exact', 'common', '', 'Exact', '2020-07-30 10:26:43'),
(59, 'en', 'excerpt', 'common', '', 'Excerpt', '2020-07-30 10:26:43'),
(60, 'en', 'expired', 'common', '', 'Expired', '2020-07-30 10:26:43'),
(61, 'en', 'expires', 'common', '', 'Expires', '2020-07-30 10:26:43'),
(62, 'en', 'expire_date', 'common', '', 'Expire date', '2020-07-30 10:26:43'),
(63, 'en', 'expire_time', 'common', '', 'Expire time', '2020-07-30 10:26:43'),
(64, 'en', 'export', 'common', '', 'Export', '2020-07-30 10:26:43'),
(65, 'en', 'extension', 'common', '', 'Extension', '2020-07-30 10:26:43'),
(66, 'en', 'extensions', 'common', '', 'Extensions', '2020-07-30 10:26:43'),
(67, 'en', 'file', 'common', '', 'File', '2020-07-30 10:26:43'),
(68, 'en', 'file_download', 'common', '', 'File download', '2020-07-30 10:26:43'),
(69, 'en', 'file_size', 'common', '', 'File size', '2020-07-30 10:26:43'),
(70, 'en', 'forget', 'common', '', 'Forget', '2020-07-30 10:26:43'),
(71, 'en', 'form', 'common', '', 'Form', '2020-07-30 10:26:43'),
(72, 'en', 'form_submission_error', 'common', '', 'Sorry, the form could not be submitted. Please try again later.', '2020-07-30 10:26:43'),
(73, 'en', 'forms', 'common', '', 'Forms', '2020-07-30 10:26:43'),
(74, 'en', 'general_error', 'common', '', 'General error', '2020-07-30 10:26:43'),
(75, 'en', 'go', 'common', '', 'Go', '2020-07-30 10:26:43'),
(76, 'en', 'go_back', 'common', '', 'Go back', '2020-07-30 10:26:43'),
(77, 'en', 'go_content', 'common', '', 'Go to content', '2020-07-30 10:26:43'),
(78, 'en', 'go_nav', 'common', '', 'Go to navigation', '2020-07-30 10:26:43'),
(79, 'en', 'go_search', 'common', '', 'Go to search', '2020-07-30 10:26:43'),
(80, 'en', 'go_to', 'common', '', 'Go to', '2020-07-30 10:26:43'),
(81, 'en', 'go_txp_com', 'common', '', 'Go to the Textpattern website', '2020-07-30 10:26:43'),
(82, 'en', 'height', 'common', '', 'Height', '2020-07-30 10:26:43'),
(83, 'en', 'help', 'common', '', 'Help', '2020-07-30 10:26:43'),
(84, 'en', 'hidden', 'common', '', 'Hidden', '2020-07-30 10:26:43'),
(85, 'en', 'home', 'common', '', 'Home', '2020-07-30 10:26:43'),
(86, 'en', 'host', 'common', '', 'Host', '2020-07-30 10:26:43'),
(87, 'en', 'id', 'common', '', 'ID#', '2020-07-30 10:26:43'),
(88, 'en', 'image', 'common', '', 'Image', '2020-07-30 10:26:43'),
(89, 'en', 'images', 'common', '', 'Images', '2020-07-30 10:26:43'),
(90, 'en', 'import', 'common', '', 'Import', '2020-07-30 10:26:43'),
(91, 'en', 'input_day', 'common', '', 'Day', '2020-07-30 10:26:43'),
(92, 'en', 'input_hour', 'common', '', 'Hour', '2020-07-30 10:26:43'),
(93, 'en', 'input_minute', 'common', '', 'Minute', '2020-07-30 10:26:43'),
(94, 'en', 'input_month', 'common', '', 'Month', '2020-07-30 10:26:43'),
(95, 'en', 'input_second', 'common', '', 'Second', '2020-07-30 10:26:43'),
(96, 'en', 'input_year', 'common', '', 'Year', '2020-07-30 10:26:43'),
(97, 'en', 'install', 'common', '', 'Install', '2020-07-30 10:26:43'),
(98, 'en', 'internal_error', 'common', '', 'Internal error', '2020-07-30 10:26:43'),
(99, 'en', 'keywords', 'common', '', 'Keywords', '2020-07-30 10:26:43'),
(100, 'en', 'label', 'common', '', 'Label', '2020-07-30 10:26:43'),
(101, 'en', 'language', 'common', '', 'Language', '2020-07-30 10:26:43'),
(102, 'en', 'last_modification', 'common', '', 'Last modification', '2020-07-30 10:26:43'),
(103, 'en', 'last_modified', 'common', '', 'Last modified', '2020-07-30 10:26:43'),
(104, 'en', 'lightswitch', 'common', '', 'Toggle light/dark mode', '2020-07-30 10:26:43'),
(105, 'en', 'link', 'common', '', 'Link', '2020-07-30 10:26:43'),
(106, 'en', 'links', 'common', '', 'Links', '2020-07-30 10:26:43'),
(107, 'en', 'list', 'common', '', 'List', '2020-07-30 10:26:43'),
(108, 'en', 'list_articles', 'common', '', 'List articles', '2020-07-30 10:26:43'),
(109, 'en', 'list_categories', 'common', '', 'List categories', '2020-07-30 10:26:43'),
(110, 'en', 'list_links', 'common', '', 'List links', '2020-07-30 10:26:43'),
(111, 'en', 'list_options', 'common', '', 'Column display options', '2020-07-30 10:26:43'),
(112, 'en', 'logged_in_as', 'common', '', 'Logged in as', '2020-07-30 10:26:43'),
(113, 'en', 'login', 'common', '', 'Log in', '2020-07-30 10:26:43'),
(114, 'en', 'login_to_textpattern', 'common', '', 'Log in to Textpattern', '2020-07-30 10:26:43'),
(115, 'en', 'logout', 'common', '', 'Log out', '2020-07-30 10:26:43'),
(116, 'en', 'log_in_button', 'common', '', 'Log in', '2020-07-30 10:26:43'),
(117, 'en', 'manual', 'common', '', 'Manual', '2020-07-30 10:26:43'),
(118, 'en', 'message', 'common', '', 'Message', '2020-07-30 10:26:43'),
(119, 'en', 'method', 'common', '', 'Method', '2020-07-30 10:26:43'),
(120, 'en', 'misc', 'common', '', 'Miscellaneous', '2020-07-30 10:26:43'),
(121, 'en', 'modified', 'common', '', 'Modified', '2020-07-30 10:26:43'),
(122, 'en', 'modified_by', 'common', '', 'Last modified by', '2020-07-30 10:26:43'),
(123, 'en', 'month', 'common', '', 'Month', '2020-07-30 10:26:43'),
(124, 'en', 'more', 'common', '', 'More', '2020-07-30 10:26:43'),
(125, 'en', 'more_pages', 'common', '', 'More pages', '2020-07-30 10:26:43'),
(126, 'en', 'navigation', 'common', '', 'Navigation', '2020-07-30 10:26:43'),
(127, 'en', 'name', 'common', '', 'Name', '2020-07-30 10:26:43'),
(128, 'en', 'never', 'common', '', 'Never', '2020-07-30 10:26:43'),
(129, 'en', 'newer', 'common', '', 'Newer', '2020-07-30 10:26:43'),
(130, 'en', 'next', 'common', '', 'Next', '2020-07-30 10:26:43'),
(131, 'en', 'no', 'common', '', 'No', '2020-07-30 10:26:43'),
(132, 'en', 'no_results_found', 'common', '', 'No results found.', '2020-07-30 10:26:43'),
(133, 'en', 'none', 'common', '', 'None', '2020-07-30 10:26:43'),
(134, 'en', 'of', 'common', '', 'of', '2020-07-30 10:26:43'),
(135, 'en', 'off', 'common', '', 'Off', '2020-07-30 10:26:43'),
(136, 'en', 'older', 'common', '', 'Older', '2020-07-30 10:26:43'),
(137, 'en', 'on', 'common', '', 'On', '2020-07-30 10:26:43'),
(138, 'en', 'opens_external_link', 'common', '', '(opens an external link in a new window)', '2020-07-30 10:26:43'),
(139, 'en', 'options', 'common', '', 'Options', '2020-07-30 10:26:43'),
(140, 'en', 'page', 'common', '', 'Page', '2020-07-30 10:26:43'),
(141, 'en', 'pages', 'common', '', 'Pages', '2020-07-30 10:26:43'),
(142, 'en', 'page_nav', 'common', '', 'Page navigation', '2020-07-30 10:26:43'),
(143, 'en', 'password', 'common', '', 'Password', '2020-07-30 10:26:43'),
(144, 'en', 'password_forgotten', 'common', '', 'Forgot password?', '2020-07-30 10:26:43'),
(145, 'en', 'permlink', 'common', '', 'Permanent link', '2020-07-30 10:26:43'),
(146, 'en', 'pophelp', 'common', '', 'Pop-up help links', '2020-07-30 10:26:43'),
(147, 'en', 'post', 'common', '', 'Post', '2020-07-30 10:26:43'),
(148, 'en', 'posted', 'common', '', 'Posted', '2020-07-30 10:26:43'),
(149, 'en', 'posted_by', 'common', '', 'Posted by', '2020-07-30 10:26:43'),
(150, 'en', 'prev', 'common', '', 'Previous', '2020-07-30 10:26:43'),
(151, 'en', 'preview', 'common', '', 'Preview', '2020-07-30 10:26:43'),
(152, 'en', 'publish', 'common', '', 'Publish', '2020-07-30 10:26:43'),
(153, 'en', 'published_at', 'common', '', 'Published at', '2020-07-30 10:26:43'),
(154, 'en', 'published_with', 'common', '', 'Published with', '2020-07-30 10:26:43'),
(155, 'en', 'publish_date', 'common', '', 'Publish date', '2020-07-30 10:26:43'),
(156, 'en', 'publish_time', 'common', '', 'Publish time', '2020-07-30 10:26:43'),
(157, 'en', 'range', 'common', '', 'Range', '2020-07-30 10:26:43'),
(158, 'en', 'recently', 'common', '', 'Recently', '2020-07-30 10:26:43'),
(159, 'en', 'recent_articles', 'common', '', 'Recent articles', '2020-07-30 10:26:43'),
(160, 'en', 'recent_comments', 'common', '', 'Recent comments', '2020-07-30 10:26:43'),
(161, 'en', 'recent_posts', 'common', '', 'Recent posts', '2020-07-30 10:26:43'),
(162, 'en', 'related_articles', 'common', '', 'Related articles', '2020-07-30 10:26:43'),
(163, 'en', 'reload', 'common', '', 'Reload', '2020-07-30 10:26:43'),
(164, 'en', 'remember', 'common', '', 'Remember', '2020-07-30 10:26:43'),
(165, 'en', 'remove', 'common', '', 'Remove', '2020-07-30 10:26:43'),
(166, 'en', 'required', 'common', '', 'Required', '2020-07-30 10:26:43'),
(167, 'en', 'reset', 'common', '', 'Reset', '2020-07-30 10:26:43'),
(168, 'en', 'restricted_area', 'common', '', 'Restricted area.', '2020-07-30 10:26:43'),
(169, 'en', 'revert', 'common', '', 'Revert', '2020-07-30 10:26:43'),
(170, 'en', 'salutation', 'common', '', 'Dear {name},', '2020-07-30 10:26:43'),
(171, 'en', 'save', 'common', '', 'Save', '2020-07-30 10:26:43'),
(172, 'en', 'save_new', 'common', '', 'Save new', '2020-07-30 10:26:43'),
(173, 'en', 'search', 'common', '', 'Search', '2020-07-30 10:26:43'),
(174, 'en', 'search_results', 'common', '', 'Search results', '2020-07-30 10:26:43'),
(175, 'en', 'section', 'common', '', 'Section', '2020-07-30 10:26:43'),
(176, 'en', 'sections', 'common', '', 'Sections', '2020-07-30 10:26:43'),
(177, 'en', 'select', 'common', '', 'Select', '2020-07-30 10:26:43'),
(178, 'en', 'selected', 'common', '', 'Selected', '2020-07-30 10:26:43'),
(179, 'en', 'site', 'common', '', 'Site', '2020-07-30 10:26:43'),
(180, 'en', 'sitename', 'common', '', 'Site name', '2020-07-30 10:26:43'),
(181, 'en', 'siteurl', 'common', '', 'Site URL', '2020-07-30 10:26:43'),
(182, 'en', 'site_slogan', 'common', '', 'Site slogan', '2020-07-30 10:26:43'),
(183, 'en', 'spam', 'common', '', 'Spam', '2020-07-30 10:26:43'),
(184, 'en', 'status', 'common', '', 'Status', '2020-07-30 10:26:43'),
(185, 'en', 'status_in_use', 'common', '', 'In use', '2020-07-30 10:26:43'),
(186, 'en', 'status_missing', 'common', '', 'Missing', '2020-07-30 10:26:43'),
(187, 'en', 'status_ok', 'common', '', 'OK', '2020-07-30 10:26:43'),
(188, 'en', 'stay_logged_in', 'common', '', 'Remain logged in with this browser', '2020-07-30 10:26:43'),
(189, 'en', 'submit', 'common', '', 'Submit', '2020-07-30 10:26:43'),
(190, 'en', 'thumbnail', 'common', '', 'Thumbnail', '2020-07-30 10:26:43'),
(191, 'en', 'time', 'common', '', 'Time', '2020-07-30 10:26:43'),
(192, 'en', 'title', 'common', '', 'Title', '2020-07-30 10:26:43'),
(193, 'en', 'toggle_all_selected', 'common', '', 'Toggle all/none selected', '2020-07-30 10:26:43'),
(194, 'en', 'txt_quote_double_close', 'common', '', '”', '2020-07-30 10:26:43'),
(195, 'en', 'txt_quote_double_open', 'common', '', '“', '2020-07-30 10:26:43'),
(196, 'en', 'txt_quote_single_close', 'common', '', '’', '2020-07-30 10:26:43'),
(197, 'en', 'txt_quote_single_open', 'common', '', '‘', '2020-07-30 10:26:43'),
(198, 'en', 'type', 'common', '', 'Type', '2020-07-30 10:26:43'),
(199, 'en', 'undefined', 'common', '', 'Undefined', '2020-07-30 10:26:43'),
(200, 'en', 'unknown', 'common', '', 'Unknown', '2020-07-30 10:26:43'),
(201, 'en', 'units_b', 'common', '', 'B', '2020-07-30 10:26:43'),
(202, 'en', 'units_e', 'common', '', 'EB', '2020-07-30 10:26:43'),
(203, 'en', 'units_g', 'common', '', 'GB', '2020-07-30 10:26:43'),
(204, 'en', 'units_k', 'common', '', 'kB', '2020-07-30 10:26:43'),
(205, 'en', 'units_m', 'common', '', 'MB', '2020-07-30 10:26:43'),
(206, 'en', 'units_p', 'common', '', 'PB', '2020-07-30 10:26:43'),
(207, 'en', 'units_t', 'common', '', 'TB', '2020-07-30 10:26:43'),
(208, 'en', 'units_y', 'common', '', 'YB', '2020-07-30 10:26:43'),
(209, 'en', 'units_z', 'common', '', 'ZB', '2020-07-30 10:26:43'),
(210, 'en', 'untitled', 'common', '', 'Untitled', '2020-07-30 10:26:43'),
(211, 'en', 'update', 'common', '', 'Update', '2020-07-30 10:26:43'),
(212, 'en', 'upload', 'common', '', 'Upload', '2020-07-30 10:26:43'),
(213, 'en', 'upload_err_cant_write', 'common', '', 'Failed to write file to disk.', '2020-07-30 10:26:43'),
(214, 'en', 'upload_err_extension', 'common', '', 'File upload stopped by PHP extension.', '2020-07-30 10:26:43'),
(215, 'en', 'upload_err_form_size', 'common', '', 'File exceeds the maximum size specified in Textpattern’s preferences.', '2020-07-30 10:26:43'),
(216, 'en', 'upload_err_ini_size', 'common', '', 'File exceeds the <code>upload_max_filesize</code> directive in <code>php.ini</code>.', '2020-07-30 10:26:43'),
(217, 'en', 'upload_err_no_file', 'common', '', 'No file was specified.', '2020-07-30 10:26:43'),
(218, 'en', 'upload_err_partial', 'common', '', 'File was only partially uploaded.', '2020-07-30 10:26:43'),
(219, 'en', 'upload_err_tmp_dir', 'common', '', 'No valid temporary directory was found. Please consult your website host.', '2020-07-30 10:26:43'),
(220, 'en', 'upload_file', 'common', '', 'Upload file', '2020-07-30 10:26:43'),
(221, 'en', 'url', 'common', '', 'URL', '2020-07-30 10:26:43'),
(222, 'en', 'value', 'common', '', 'Value', '2020-07-30 10:26:43'),
(223, 'en', 'version', 'common', '', 'Version', '2020-07-30 10:26:43'),
(224, 'en', 'view', 'common', '', 'View', '2020-07-30 10:26:43'),
(225, 'en', 'viewsite', 'common', '', 'View site', '2020-07-30 10:26:43'),
(226, 'en', 'website', 'common', '', 'Website', '2020-07-30 10:26:43'),
(227, 'en', 'width', 'common', '', 'Width', '2020-07-30 10:26:43'),
(228, 'en', 'with_selected', 'common', '', 'With selected:', '2020-07-30 10:26:43'),
(229, 'en', 'with_selected_option', 'common', '', 'With {count} selected…', '2020-07-30 10:26:43'),
(230, 'en', 'yes', 'common', '', 'Yes', '2020-07-30 10:26:43'),
(231, 'en', 'lang_name', 'common', '', 'English', '2020-07-30 10:26:43'),
(232, 'en', 'lang_code', 'common', '', 'en', '2020-07-30 10:26:43'),
(233, 'en', 'lang_dir', 'common', '', 'ltr', '2020-07-30 10:26:43'),
(234, 'en', 'account_activation', 'admin', '', 'Please activate your account', '2020-07-30 10:26:43'),
(235, 'en', 'account_activation_confirmation', 'admin', '', 'Please use the link below to activate your account and set up a password.', '2020-07-30 10:26:43'),
(236, 'en', 'alias_is_taken', 'admin', '', 'Alias already exists.', '2020-07-30 10:26:43'),
(237, 'en', 'assign_assets_to', 'admin', '', 'Assign author’s content to', '2020-07-30 10:26:43'),
(238, 'en', 'author_already_exists', 'admin', '', 'Author <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(239, 'en', 'author_deleted', 'admin', '', 'Authors deleted: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(240, 'en', 'author_save_failed', 'admin', '', 'Author <strong>{name}</strong> could not be saved.', '2020-07-30 10:26:43'),
(241, 'en', 'author_updated', 'admin', '', 'Authors updated: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(242, 'en', 'cannot_assign_assets_to_deletee', 'admin', '', 'You cannot assign assets to a deleted account.', '2020-07-30 10:26:43'),
(243, 'en', 'changeprivilege', 'admin', '', 'Change role', '2020-07-30 10:26:43'),
(244, 'en', 'change_email_address', 'admin', '', 'Change your email address', '2020-07-30 10:26:43'),
(245, 'en', 'change_password', 'admin', '', 'Change your password', '2020-07-30 10:26:43'),
(246, 'en', 'copy_editor', 'admin', '', 'Copy Editor', '2020-07-30 10:26:43'),
(247, 'en', 'could_not_mail', 'admin', '', 'Could not email', '2020-07-30 10:26:43'),
(248, 'en', 'could_not_update_author', 'admin', '', 'Could not update author.', '2020-07-30 10:26:43'),
(249, 'en', 'create_author', 'admin', '', 'New author', '2020-07-30 10:26:43'),
(250, 'en', 'current_password', 'admin', '', 'Current password', '2020-07-30 10:26:43'),
(251, 'en', 'designer', 'admin', '', 'Designer', '2020-07-30 10:26:43'),
(252, 'en', 'edit_author', 'admin', '', 'Edit author', '2020-07-30 10:26:43'),
(253, 'en', 'email_changed', 'admin', '', 'Email address changed to <strong>{email}</strong>.', '2020-07-30 10:26:43'),
(254, 'en', 'error_adding_new_author', 'admin', '', 'Error adding new author.', '2020-07-30 10:26:43'),
(255, 'en', 'from_or_to_address_missing', 'admin', '', 'Sender and/or recipient address is missing.', '2020-07-30 10:26:43'),
(256, 'en', 'freelancer', 'admin', '', 'Freelancer', '2020-07-30 10:26:43'),
(257, 'en', 'invalid_header', 'admin', '', 'Invalid mail header.', '2020-07-30 10:26:43'),
(258, 'en', 'invalid_token', 'admin', '', 'Password reset security token is invalid.', '2020-07-30 10:26:43'),
(259, 'en', 'last_login', 'admin', '', 'Last log in', '2020-07-30 10:26:43'),
(260, 'en', 'link_expires', 'admin', '', 'You have until {day} {month} {year}, {time} to respond before this link expires.', '2020-07-30 10:26:43'),
(261, 'en', 'login_name', 'admin', '', 'Login', '2020-07-30 10:26:43'),
(262, 'en', 'login_sent_to', 'admin', '', 'Password sent to {email}.', '2020-07-30 10:26:43'),
(263, 'en', 'log_in_at', 'admin', '', 'Log in at', '2020-07-30 10:26:43'),
(264, 'en', 'managing_editor', 'admin', '', 'Managing Editor', '2020-07-30 10:26:43'),
(265, 'en', 'must_reassign_assets', 'admin', '', 'Please reassign author’s content', '2020-07-30 10:26:43'),
(266, 'en', 'new_email', 'admin', '', 'New email', '2020-07-30 10:26:43'),
(267, 'en', 'new_password', 'admin', '', 'New password', '2020-07-30 10:26:43'),
(268, 'en', 'password_changed', 'admin', '', 'Password changed.', '2020-07-30 10:26:43'),
(269, 'en', 'password_change_confirmation', 'admin', '', 'Your password has been changed. If you did not request a change to your password, contact your site administrator.', '2020-07-30 10:26:43'),
(270, 'en', 'password_confirm_button', 'admin', '', 'Set password', '2020-07-30 10:26:43'),
(271, 'en', 'password_invalid', 'admin', '', 'Your password is incorrect.', '2020-07-30 10:26:43'),
(272, 'en', 'password_required', 'admin', '', 'Please provide a new password.', '2020-07-30 10:26:43'),
(273, 'en', 'password_reset', 'admin', '', 'Reset password', '2020-07-30 10:26:43'),
(274, 'en', 'password_reset_button', 'admin', '', 'Reset password', '2020-07-30 10:26:43'),
(275, 'en', 'password_reset_confirmation', 'admin', '', 'Somebody (probably you) has requested to reset your password. Please confirm this reset request using the link below.', '2020-07-30 10:26:43'),
(276, 'en', 'password_reset_confirmation_request', 'admin', '', 'Please confirm your password reset request', '2020-07-30 10:26:43'),
(277, 'en', 'password_reset_confirmation_request_sent', 'admin', '', 'A confirmation message was sent. Please check your email and follow the instructions.', '2020-07-30 10:26:43'),
(278, 'en', 'password_sent_to', 'admin', '', 'Password sent to', '2020-07-30 10:26:43'),
(279, 'en', 'password_set', 'admin', '', 'Your password has been set', '2020-07-30 10:26:43'),
(280, 'en', 'password_set_confirmation', 'admin', '', 'Your password has been set. If you did not request this, contact your site administrator.', '2020-07-30 10:26:43'),
(281, 'en', 'privileges', 'admin', '', 'Role', '2020-07-30 10:26:43'),
(282, 'en', 'privs_none', 'admin', '', 'None', '2020-07-30 10:26:43'),
(283, 'en', 'publisher', 'admin', '', 'Publisher', '2020-07-30 10:26:43'),
(284, 'en', 'real_name', 'admin', '', 'Real name', '2020-07-30 10:26:43'),
(285, 'en', 'resend_activation', 'admin', '', 'Resend activation link', '2020-07-30 10:26:43'),
(286, 'en', 'resend_activation_request_sent', 'admin', '', 'Activation message sent to {name}.', '2020-07-30 10:26:43'),
(287, 'en', 'resetpassword', 'admin', '', 'Reset password', '2020-07-30 10:26:43'),
(288, 'en', 'search_users', 'admin', '', 'Search users', '2020-07-30 10:26:43'),
(289, 'en', 'sending_failed', 'admin', '', 'The message failed to send.', '2020-07-30 10:26:43'),
(290, 'en', 'set_password', 'admin', '', 'Set your password', '2020-07-30 10:26:43'),
(291, 'en', 'show_password', 'admin', '', 'Show password', '2020-07-30 10:26:43'),
(292, 'en', 'staff_writer', 'admin', '', 'Staff Writer', '2020-07-30 10:26:43'),
(293, 'en', 'token_expired', 'admin', '', 'Password reset security token has expired.', '2020-07-30 10:26:43'),
(294, 'en', 'unable_retrieve_template', 'admin', '', 'Unable to retrieve template.', '2020-07-30 10:26:43'),
(295, 'en', 'unable_retrieve_user', 'admin', '', 'Unable to retrieve user.', '2020-07-30 10:26:43'),
(296, 'en', 'unable_set_template', 'admin', '', 'Unable to set template.', '2020-07-30 10:26:43'),
(297, 'en', 'your_login_info', 'admin', '', 'Your login info', '2020-07-30 10:26:43'),
(298, 'en', 'your_login_is', 'admin', '', 'Your login is', '2020-07-30 10:26:43'),
(299, 'en', 'your_new_password', 'admin', '', 'Your new password', '2020-07-30 10:26:43'),
(300, 'en', 'your_password_is', 'admin', '', 'Your password is', '2020-07-30 10:26:43'),
(301, 'en', 'you_have_been_registered', 'admin', '', 'You have been registered as a contributor to the site', '2020-07-30 10:26:43'),
(302, 'en', 'active_language_ui', 'admin-side', '', 'User language', '2020-07-30 10:26:43'),
(303, 'en', 'advanced_options', 'admin-side', '', 'Advanced options', '2020-07-30 10:26:43'),
(304, 'en', 'auto_dst', 'admin-side', '', 'Automatically adjust Daylight Saving Time?', '2020-07-30 10:26:43'),
(305, 'en', 'body', 'admin-side', '', 'Body', '2020-07-30 10:26:43'),
(306, 'en', 'breadcrumb_title', 'admin-side', '', '/breadcrumb/title', '2020-07-30 10:26:43'),
(307, 'en', 'cannot_delete', 'admin-side', '', 'Cannot delete {thing}.', '2020-07-30 10:26:43'),
(308, 'en', 'cannot_instantiate_theme', 'admin-side', '', 'Theme <strong>{name}</strong> ({class}) failed to load properly from file {path}. The default theme will be used as a fallback when you refresh this page.', '2020-07-30 10:26:43'),
(309, 'en', 'changeauthor', 'admin-side', '', 'Change author', '2020-07-30 10:26:43'),
(310, 'en', 'changecategory', 'admin-side', '', 'Change category', '2020-07-30 10:26:43'),
(311, 'en', 'changecategory1', 'admin-side', '', 'Change category 1', '2020-07-30 10:26:43'),
(312, 'en', 'changecategory2', 'admin-side', '', 'Change category 2', '2020-07-30 10:26:43'),
(313, 'en', 'changecomments', 'admin-side', '', 'Change comments', '2020-07-30 10:26:43'),
(314, 'en', 'changeparent', 'admin-side', '', 'Change parent', '2020-07-30 10:26:43'),
(315, 'en', 'changesection', 'admin-side', '', 'Change section', '2020-07-30 10:26:43'),
(316, 'en', 'changestatus', 'admin-side', '', 'Change status', '2020-07-30 10:26:43'),
(317, 'en', 'collapse_all', 'admin-side', '', 'Collapse all', '2020-07-30 10:26:43'),
(318, 'en', 'convert_linebreaks', 'admin-side', '', 'Convert line breaks', '2020-07-30 10:26:43'),
(319, 'en', 'create_article', 'admin-side', '', 'New article', '2020-07-30 10:26:43'),
(320, 'en', 'custom', 'admin-side', '', 'Custom fields', '2020-07-30 10:26:43'),
(321, 'en', 'date_settings', 'admin-side', '', 'Date and time', '2020-07-30 10:26:43'),
(322, 'en', 'deleteforce', 'admin-side', '', 'Force delete', '2020-07-30 10:26:43'),
(323, 'en', 'detail', 'admin-side', '', 'Detail', '2020-07-30 10:26:43'),
(324, 'en', 'directory_permissions', 'admin-side', '', 'Check directory permissions: <strong>{path}</strong>.', '2020-07-30 10:26:43'),
(325, 'en', 'draft', 'admin-side', '', 'Draft', '2020-07-30 10:26:43'),
(326, 'en', 'expand_all', 'admin-side', '', 'Expand all', '2020-07-30 10:26:43'),
(327, 'en', 'export_to_disk', 'admin-side', '', 'Export to disk', '2020-07-30 10:26:43'),
(328, 'en', 'file_base_path', 'admin-side', '', 'File directory path', '2020-07-30 10:26:43'),
(329, 'en', 'get_off_my_lawn', 'admin-side', '', 'I’m sorry. I’m afraid I can’t do that; <code>{event}</code> <code>{step}</code> is an unsafe operation.', '2020-07-30 10:26:43'),
(330, 'en', 'gmtoffset', 'admin-side', '', 'Time zone (GMT offset in seconds)', '2020-07-30 10:26:43'),
(331, 'en', 'id_title', 'admin-side', '', '/id/title', '2020-07-30 10:26:43'),
(332, 'en', 'img_dir', 'admin-side', '', 'Image directory', '2020-07-30 10:26:43'),
(333, 'en', 'import_from_disk', 'admin-side', '', 'Import from disk', '2020-07-30 10:26:43'),
(334, 'en', 'installed', 'admin-side', '', 'Installed', '2020-07-30 10:26:43'),
(335, 'en', 'invalid_argument', 'admin-side', '', 'Invalid argument', '2020-07-30 10:26:43'),
(336, 'en', 'invalid_article_id', 'admin-side', '', 'Invalid article ID', '2020-07-30 10:26:43'),
(337, 'en', 'invalid_expiredate', 'admin-side', '', 'Invalid expire date or time.', '2020-07-30 10:26:43'),
(338, 'en', 'invalid_json', 'admin-side', '', 'Invalid JSON files: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(339, 'en', 'invalid_postdate', 'admin-side', '', 'Invalid publish date or time.', '2020-07-30 10:26:43'),
(340, 'en', 'is_dst', 'admin-side', '', 'Daylight Saving Time enabled?', '2020-07-30 10:26:43'),
(341, 'en', 'leave_text_untouched', 'admin-side', '', 'Leave text untouched', '2020-07-30 10:26:43'),
(342, 'en', 'live', 'admin-side', '', 'Live', '2020-07-30 10:26:43'),
(343, 'en', 'live_preview', 'admin-side', '', 'Live preview', '2020-07-30 10:26:43'),
(344, 'en', 'locale', 'admin-side', '', 'Locale', '2020-07-30 10:26:43'),
(345, 'en', 'manage', 'admin-side', '', 'Manage', '2020-07-30 10:26:43'),
(346, 'en', 'messy', 'admin-side', '', '?=messy', '2020-07-30 10:26:43'),
(347, 'en', 'meta', 'admin-side', '', 'Meta', '2020-07-30 10:26:43'),
(348, 'en', 'on_front_page', 'admin-side', '', 'On default page?', '2020-07-30 10:26:43'),
(349, 'en', 'override', 'admin-side', '', 'Override', '2020-07-30 10:26:43'),
(350, 'en', 'parent', 'admin-side', '', 'Parent', '2020-07-30 10:26:43'),
(351, 'en', 'path_creation_or_writing_failed', 'admin-side', '', 'Unable to create or write in files/directories: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(352, 'en', 'path_not_readable', 'admin-side', '', '<strong>Warning:</strong> cannot read from directories/files <code>{list}</code>.', '2020-07-30 10:26:43'),
(353, 'en', 'path_not_writable', 'admin-side', '', '<strong>Warning:</strong> cannot write to directories/files <code>{list}</code>.', '2020-07-30 10:26:43'),
(354, 'en', 'path_renaming_failed', 'admin-side', '', 'Files or directories renaming failed for: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(355, 'en', 'pending', 'admin-side', '', 'Pending', '2020-07-30 10:26:43'),
(356, 'en', 'permlink_mode', 'admin-side', '', 'Article URL pattern', '2020-07-30 10:26:43'),
(357, 'en', 'plugin_dir', 'admin-side', '', 'Plugin directory', '2020-07-30 10:26:43'),
(358, 'en', 'pophelp_missing', 'admin-side', '', 'Help text is missing.', '2020-07-30 10:26:43'),
(359, 'en', 'preferences_saved', 'admin-side', '', 'Preferences saved', '2020-07-30 10:26:43'),
(360, 'en', 'reset_time', 'admin-side', '', 'Reset timestamp to now', '2020-07-30 10:26:43'),
(361, 'en', 'search_all', 'admin-side', '', 'Search all', '2020-07-30 10:26:43'),
(362, 'en', 'search_clear', 'admin-side', '', 'Clear search', '2020-07-30 10:26:43'),
(363, 'en', 'search_options', 'admin-side', '', 'Search options', '2020-07-30 10:26:43'),
(364, 'en', 'section_category_title', 'admin-side', '', '/section/category/title', '2020-07-30 10:26:43'),
(365, 'en', 'section_id_title', 'admin-side', '', '/section/id/title', '2020-07-30 10:26:43'),
(366, 'en', 'section_title', 'admin-side', '', '/section/title', '2020-07-30 10:26:43'),
(367, 'en', 'set_expire_now', 'admin-side', '', 'Set expiry to now', '2020-07-30 10:26:43'),
(368, 'en', 'set_to_now', 'admin-side', '', 'Set timestamp to now', '2020-07-30 10:26:43'),
(369, 'en', 'show', 'admin-side', '', 'Show', '2020-07-30 10:26:43'),
(370, 'en', 'showing_search_results', 'admin-side', '', 'Showing {from} to {to} of {total}', '2020-07-30 10:26:43'),
(371, 'en', 'skin', 'admin-side', '', 'Theme', '2020-07-30 10:26:43'),
(372, 'en', 'skin_dir', 'admin-side', '', 'Theme directory', '2020-07-30 10:26:43'),
(373, 'en', 'sort_value', 'admin-side', '', 'Sort value', '2020-07-30 10:26:43'),
(374, 'en', 'sticky', 'admin-side', '', 'Sticky', '2020-07-30 10:26:43'),
(375, 'en', 'swap_values', 'admin-side', '', 'Swap values', '2020-07-30 10:26:43'),
(376, 'en', 'tab_admin', 'admin-side', '', 'Admin', '2020-07-30 10:26:43'),
(377, 'en', 'tab_comments', 'admin-side', '', 'Comments', '2020-07-30 10:26:43'),
(378, 'en', 'tab_content', 'admin-side', '', 'Content', '2020-07-30 10:26:43'),
(379, 'en', 'tab_diagnostics', 'admin-side', '', 'Diagnostics', '2020-07-30 10:26:43'),
(380, 'en', 'tab_extensions', 'admin-side', '', 'Extensions', '2020-07-30 10:26:43'),
(381, 'en', 'tab_file', 'admin-side', '', 'Files', '2020-07-30 10:26:43'),
(382, 'en', 'tab_forms', 'admin-side', '', 'Forms', '2020-07-30 10:26:43'),
(383, 'en', 'tab_help', 'admin-side', '', 'Help', '2020-07-30 10:26:43'),
(384, 'en', 'tab_image', 'admin-side', '', 'Images', '2020-07-30 10:26:43'),
(385, 'en', 'tab_import', 'admin-side', '', 'Import', '2020-07-30 10:26:43'),
(386, 'en', 'tab_languages', 'admin-side', '', 'Languages', '2020-07-30 10:26:43'),
(387, 'en', 'tab_link', 'admin-side', '', 'Links', '2020-07-30 10:26:43'),
(388, 'en', 'tab_list', 'admin-side', '', 'Articles', '2020-07-30 10:26:43'),
(389, 'en', 'tab_logs', 'admin-side', '', 'Visitor logs', '2020-07-30 10:26:43'),
(390, 'en', 'tab_organise', 'admin-side', '', 'Categories', '2020-07-30 10:26:43'),
(391, 'en', 'tab_pages', 'admin-side', '', 'Pages', '2020-07-30 10:26:43'),
(392, 'en', 'tab_plugins', 'admin-side', '', 'Plugins', '2020-07-30 10:26:43'),
(393, 'en', 'tab_preferences', 'admin-side', '', 'Preferences', '2020-07-30 10:26:43'),
(394, 'en', 'tab_presentation', 'admin-side', '', 'Presentation', '2020-07-30 10:26:43'),
(395, 'en', 'tab_sections', 'admin-side', '', 'Sections', '2020-07-30 10:26:43'),
(396, 'en', 'tab_site_account', 'admin-side', '', 'Account', '2020-07-30 10:26:43'),
(397, 'en', 'tab_site_admin', 'admin-side', '', 'Users', '2020-07-30 10:26:43'),
(398, 'en', 'tab_skin', 'admin-side', '', 'Themes', '2020-07-30 10:26:43'),
(399, 'en', 'tab_start', 'admin-side', '', 'Home', '2020-07-30 10:26:43'),
(400, 'en', 'tab_style', 'admin-side', '', 'Styles', '2020-07-30 10:26:43'),
(401, 'en', 'tab_view_site', 'admin-side', '', 'View site', '2020-07-30 10:26:43'),
(402, 'en', 'tab_write', 'admin-side', '', 'Write', '2020-07-30 10:26:43'),
(403, 'en', 'tagbuilder', 'admin-side', '', 'Tag builder', '2020-07-30 10:26:43'),
(404, 'en', 'tags', 'admin-side', '', 'Tags', '2020-07-30 10:26:43'),
(405, 'en', 'tempdir', 'admin-side', '', 'Temporary directory path', '2020-07-30 10:26:43'),
(406, 'en', 'text', 'admin-side', '', 'Text', '2020-07-30 10:26:43'),
(407, 'en', 'textfilter', 'admin-side', '', 'Format:', '2020-07-30 10:26:43'),
(408, 'en', 'textfilter_help', 'admin-side', '', 'Text formatting help', '2020-07-30 10:26:43'),
(409, 'en', 'theme_name', 'admin-side', '', 'Admin-side theme', '2020-07-30 10:26:43'),
(410, 'en', 'timestamp', 'admin-side', '', 'Timestamp', '2020-07-30 10:26:43'),
(411, 'en', 'title_body', 'admin-side', '', 'Title and body', '2020-07-30 10:26:43'),
(412, 'en', 'title_body_excerpt', 'admin-side', '', 'Title, body and excerpt', '2020-07-30 10:26:43'),
(413, 'en', 'title_only', 'admin-side', '', '/title', '2020-07-30 10:26:43'),
(414, 'en', 'unmoderated', 'admin-side', '', 'Unmoderated', '2020-07-30 10:26:43'),
(415, 'en', 'update_available', 'admin-side', '', 'Update available', '2020-07-30 10:26:43'),
(416, 'en', 'update_from_disk', 'admin-side', '', 'Update from disk', '2020-07-30 10:26:43'),
(417, 'en', 'use_textile', 'admin-side', '', 'Use Textile', '2020-07-30 10:26:43'),
(418, 'en', 'view_per_page', 'admin-side', '', 'View {page} per page', '2020-07-30 10:26:43'),
(419, 'en', 'view_preview_short', 'admin-side', '', 'Preview', '2020-07-30 10:26:43'),
(420, 'en', 'visible', 'admin-side', '', 'Visible', '2020-07-30 10:26:43'),
(421, 'en', 'year_month_day_title', 'admin-side', '', '/year/month/day/title', '2020-07-30 10:26:43'),
(422, 'en', 'article_expires_before_postdate', 'article', '', 'Error: article expires <strong>before</strong> publish date.', '2020-07-30 10:26:43'),
(423, 'en', 'article_markup', 'article', '', 'Body markup', '2020-07-30 10:26:43'),
(424, 'en', 'article_posted', 'article', '', 'Article posted.', '2020-07-30 10:26:43'),
(425, 'en', 'article_saved', 'article', '', 'Article saved.', '2020-07-30 10:26:43'),
(426, 'en', 'article_saved_draft', 'article', '', 'Article saved as draft.', '2020-07-30 10:26:43'),
(427, 'en', 'article_saved_hidden', 'article', '', 'Article saved as hidden.', '2020-07-30 10:26:43'),
(428, 'en', 'article_saved_pending', 'article', '', 'Article saved as pending.', '2020-07-30 10:26:43'),
(429, 'en', 'article_save_failed', 'article', '', 'The article was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(430, 'en', 'comment_settings', 'article', '', 'Comment options', '2020-07-30 10:26:43'),
(431, 'en', 'concurrent_edit_by', 'article', '', 'Article <strong>not</strong> saved. {author} modified the article while you were editing it. If you’re sure, press the ‘Save’ button once more.', '2020-07-30 10:26:43'),
(432, 'en', 'excerpt_markup', 'article', '', 'Excerpt markup', '2020-07-30 10:26:43'),
(433, 'en', 'override_default_form', 'article', '', 'Override form', '2020-07-30 10:26:43'),
(434, 'en', 'problem_creating_article', 'article', '', 'There was a problem creating the article.', '2020-07-30 10:26:43'),
(435, 'en', 'problem_deleting_article', 'article', '', 'There was a problem deleting the article.', '2020-07-30 10:26:43'),
(436, 'en', 'problem_getting_articles', 'article', '', 'There was a problem getting articles.', '2020-07-30 10:26:43'),
(437, 'en', 'problem_retrieving_article', 'article', '', 'There was a problem retrieving the article.', '2020-07-30 10:26:43'),
(438, 'en', 'problem_retrieving_article_categories', 'article', '', 'There was a problem retrieving article categories.', '2020-07-30 10:26:43'),
(439, 'en', 'problem_retrieving_categories', 'article', '', 'There was a problem retrieving categories.', '2020-07-30 10:26:43'),
(440, 'en', 'problem_retrieving_category_info', 'article', '', 'There was a problem retrieving category information.', '2020-07-30 10:26:43'),
(441, 'en', 'problem_retrieving_sections', 'article', '', 'There was a problem retrieving sections.', '2020-07-30 10:26:43'),
(442, 'en', 'problem_saving_article_categories', 'article', '', 'There was a problem saving article categories.', '2020-07-30 10:26:43'),
(443, 'en', 'problem_updating_article', 'article', '', 'There was a problem updating the article.', '2020-07-30 10:26:43'),
(444, 'en', 'sort_display', 'article', '', 'Sort and display', '2020-07-30 10:26:43'),
(445, 'en', 'trying_to_assign_unexisting_category_to_the_article', 'article', '', 'A non-existent category cannot be assigned to an article.', '2020-07-30 10:26:43'),
(446, 'en', 'url_title', 'article', '', 'URL-only title', '2020-07-30 10:26:43'),
(447, 'en', 'url_title_is_blank', 'article', '', 'URL-only title was left blank.', '2020-07-30 10:26:43'),
(448, 'en', 'url_title_is_multiple', 'article', '', 'The same URL-only title is used by {count} different articles.', '2020-07-30 10:26:43'),
(449, 'en', 'write', 'article', '', 'Write', '2020-07-30 10:26:43'),
(450, 'en', 'article_categories_deleted', 'category', '', 'Article categories deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(451, 'en', 'article_category', 'category', '', 'Article category', '2020-07-30 10:26:43'),
(452, 'en', 'article_category_already_exists', 'category', '', 'Article category <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(453, 'en', 'article_category_created', 'category', '', 'Article category <strong>{name}</strong> created.', '2020-07-30 10:26:43'),
(454, 'en', 'article_category_description', 'category', '', 'Article category description', '2020-07-30 10:26:43'),
(455, 'en', 'article_category_invalid', 'category', '', 'Article category <strong>{name}</strong> invalid.', '2020-07-30 10:26:43'),
(456, 'en', 'article_category_name', 'category', '', 'Article category name', '2020-07-30 10:26:43'),
(457, 'en', 'article_category_title', 'category', '', 'Article category title', '2020-07-30 10:26:43'),
(458, 'en', 'article_category_updated', 'category', '', 'Article category <strong>{name}</strong> updated.', '2020-07-30 10:26:43'),
(459, 'en', 'categories_set_parent', 'category', '', '{list} assigned to {type} category parent {parent}', '2020-07-30 10:26:43'),
(460, 'en', 'category_not_found', 'category', '', 'Category not found', '2020-07-30 10:26:43'),
(461, 'en', 'category_save_failed', 'category', '', 'The category was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(462, 'en', 'create_category', 'category', '', 'New category', '2020-07-30 10:26:43'),
(463, 'en', 'edit_category', 'category', '', 'Edit category', '2020-07-30 10:26:43'),
(464, 'en', 'file_categories_deleted', 'category', '', 'File categories deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(465, 'en', 'file_category_already_exists', 'category', '', 'File category <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(466, 'en', 'file_category_created', 'category', '', 'File category <strong>{name}</strong> created.', '2020-07-30 10:26:43'),
(467, 'en', 'file_category_description', 'category', '', 'File category description', '2020-07-30 10:26:43'),
(468, 'en', 'file_category_invalid', 'category', '', 'File category <strong>{name}</strong> invalid.', '2020-07-30 10:26:43'),
(469, 'en', 'file_category_name', 'category', '', 'File category name', '2020-07-30 10:26:43'),
(470, 'en', 'file_category_title', 'category', '', 'File category title', '2020-07-30 10:26:43'),
(471, 'en', 'file_category_updated', 'category', '', 'File category <strong>{name}</strong> updated.', '2020-07-30 10:26:43'),
(472, 'en', 'image_categories_deleted', 'category', '', 'Image categories deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(473, 'en', 'image_category_already_exists', 'category', '', 'Image category <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(474, 'en', 'image_category_created', 'category', '', 'Image category <strong>{name}</strong> created.', '2020-07-30 10:26:43'),
(475, 'en', 'image_category_description', 'category', '', 'Image category description', '2020-07-30 10:26:43'),
(476, 'en', 'image_category_invalid', 'category', '', 'Image category <strong>{name}</strong> invalid.', '2020-07-30 10:26:43'),
(477, 'en', 'image_category_name', 'category', '', 'Image category name', '2020-07-30 10:26:43'),
(478, 'en', 'image_category_title', 'category', '', 'Image category title', '2020-07-30 10:26:43'),
(479, 'en', 'image_category_updated', 'category', '', 'Image category <strong>{name}</strong> updated.', '2020-07-30 10:26:43'),
(480, 'en', 'link_categories_deleted', 'category', '', 'Link categories deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(481, 'en', 'link_category_already_exists', 'category', '', 'Link category <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(482, 'en', 'link_category_created', 'category', '', 'Link category <strong>{name}</strong> created.', '2020-07-30 10:26:43'),
(483, 'en', 'link_category_description', 'category', '', 'Link category description', '2020-07-30 10:26:43'),
(484, 'en', 'link_category_invalid', 'category', '', 'Link category <strong>{name}</strong> invalid.', '2020-07-30 10:26:43'),
(485, 'en', 'link_category_name', 'category', '', 'Link category name', '2020-07-30 10:26:43'),
(486, 'en', 'link_category_title', 'category', '', 'Link category title', '2020-07-30 10:26:43'),
(487, 'en', 'link_category_updated', 'category', '', 'Link category <strong>{name}</strong> updated.', '2020-07-30 10:26:43'),
(488, 'en', 'no_categories_exist', 'category', '', 'None exist.', '2020-07-30 10:26:43'),
(489, 'en', 'no_other_categories_exist', 'category', '', 'No other categories exist.', '2020-07-30 10:26:43'),
(490, 'en', 'all_stylesheets', 'css', '', 'All styles', '2020-07-30 10:26:43'),
(491, 'en', 'create_css', 'css', '', 'New style', '2020-07-30 10:26:43'),
(492, 'en', 'css_already_exists', 'css', '', 'Style <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(493, 'en', 'css_code', 'css', '', 'Style code', '2020-07-30 10:26:43'),
(494, 'en', 'css_created', 'css', '', 'Styles created: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(495, 'en', 'css_deleted', 'css', '', 'Styles deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(496, 'en', 'css_name', 'css', '', 'Style name', '2020-07-30 10:26:43'),
(497, 'en', 'css_name_required', 'css', '', 'Please provide a name for your style.', '2020-07-30 10:26:43'),
(498, 'en', 'css_save_failed', 'css', '', 'The style was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(499, 'en', 'css_updated', 'css', '', 'Styles updated: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(500, 'en', 'css_used_by_section', 'css', '', 'Style <strong>{name}</strong> not deleted: used by {count} section(s).', '2020-07-30 10:26:43'),
(501, 'en', 'all_checks_passed', 'diag', '', 'All checks passed.', '2020-07-30 10:26:43'),
(502, 'en', 'cgi_header_config', 'diag', '', 'CGI header configuration', '2020-07-30 10:26:43'),
(503, 'en', 'clean_url_data_failed', 'diag', '', 'Clean URL data test failed: {data}', '2020-07-30 10:26:43'),
(504, 'en', 'clean_url_test_failed', 'diag', '', 'Clean URL test failed.', '2020-07-30 10:26:43'),
(505, 'en', 'diag_clear_private', 'diag', '', 'Hide private information', '2020-07-30 10:26:43'),
(506, 'en', 'dev_version_live', 'diag', '', 'You are running a development version of Textpattern on a live server.', '2020-07-30 10:26:43'),
(507, 'en', 'diagnostic_info', 'diag', '', 'Diagnostic info', '2020-07-30 10:26:43'),
(508, 'en', 'dir_not_writable', 'diag', '', '{dirtype} is not writable: {path}', '2020-07-30 10:26:43'),
(509, 'en', 'dns_lookup_fails', 'diag', '', 'DNS lookup failed: {domain}', '2020-07-30 10:26:43'),
(510, 'en', 'file_uploads_disabled', 'diag', '', 'File uploads are disabled.', '2020-07-30 10:26:43'),
(511, 'en', 'high', 'diag', '', 'High', '2020-07-30 10:26:43'),
(512, 'en', 'htaccess_missing', 'diag', '', '.htaccess file is missing.', '2020-07-30 10:26:43'),
(513, 'en', 'low', 'diag', '', 'Low', '2020-07-30 10:26:43'),
(514, 'en', 'missing_files', 'diag', '', 'Missing files: {list}', '2020-07-30 10:26:43'),
(515, 'en', 'modified_files', 'diag', '', 'Some Textpattern files have been modified: {list}', '2020-07-30 10:26:43'),
(516, 'en', 'mod_rewrite_missing', 'diag', '', 'Apache module <code>mod_rewrite</code> is not enabled.', '2020-07-30 10:26:43'),
(517, 'en', 'mysql_table_errors', 'diag', '', 'The following errors were detected in your MySQL tables: {list}', '2020-07-30 10:26:43'),
(518, 'en', 'no_temp_dir', 'diag', '', 'No temporary directory defined.', '2020-07-30 10:26:43'),
(519, 'en', 'old_placeholder', 'diag', '', 'Old placeholder file is in the way: {path}', '2020-07-30 10:26:43'),
(520, 'en', 'path_inaccessible', 'diag', '', '<strong>{path}</strong> is not accessible.', '2020-07-30 10:26:43'),
(521, 'en', 'php_diagnostics', 'diag', '', 'PHP configuration', '2020-07-30 10:26:43'),
(522, 'en', 'php_extensions', 'diag', '', 'PHP extensions', '2020-07-30 10:26:43'),
(523, 'en', 'php_version_required', 'diag', '', 'Textpattern requires at least version {version} of PHP to be installed on your server.', '2020-07-30 10:26:43'),
(524, 'en', 'preflight_check', 'diag', '', 'Pre-flight check', '2020-07-30 10:26:43'),
(525, 'en', 'problem_connecting_update_server', 'diag', '', 'There was a problem connecting to the Textpattern update server. Please try again later.', '2020-07-30 10:26:43'),
(526, 'en', 'site_trailing_slash', 'diag', '', 'Site URL has a trailing slash: {path}', '2020-07-30 10:26:43'),
(527, 'en', 'site_url_mismatch', 'diag', '', 'Site URL preference might be incorrect: {url}', '2020-07-30 10:26:43'),
(528, 'en', 'some_php_functions_disabled', 'diag', '', 'The following PHP functions (which may be necessary to run Textpattern) are disabled on your server: {list}', '2020-07-30 10:26:43'),
(529, 'en', 'still_exists', 'diag', '', '<strong>{path}</strong> still exists.', '2020-07-30 10:26:43'),
(530, 'en', 'textpattern_update_available', 'diag', '', 'New Textpattern version {version} <a href=\"https://textpattern.com/download\" rel=\"external\">available for download</a>.', '2020-07-30 10:26:43'),
(531, 'en', 'textpattern_update_available_beta', 'diag', '', 'New Textpattern pre-release version {version} available for download. Please <a href=\"https://textpattern.com/download-beta\" rel=\"external\">visit the Textpattern website</a> for more information.', '2020-07-30 10:26:43'),
(532, 'en', 'tmp_plugin_paths_match', 'diag', '', 'Temporary directory path and plugin cache directory path should <strong>not</strong> match.', '2020-07-30 10:26:43'),
(533, 'en', 'warn_mail_unavailable', 'diag', '', 'Your PHP installation is missing the <code>mail()</code> function. Therefore no emails can be sent from Textpattern, which limits certain functionality.', '2020-07-30 10:26:43'),
(534, 'en', 'article_deleted', 'discuss', '', 'Article deleted.', '2020-07-30 10:26:43'),
(535, 'en', 'comments_deleted', 'discuss', '', 'Comments deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(536, 'en', 'comments_marked_spam', 'discuss', '', 'Comments hidden and marked as spam: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(537, 'en', 'comments_marked_unmoderated', 'discuss', '', 'Comments hidden and marked as unmoderated: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(538, 'en', 'comments_marked_visible', 'discuss', '', 'Comments made visible: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(539, 'en', 'comment_not_found', 'discuss', '', 'Comment does not exist, it may have been deleted.', '2020-07-30 10:26:43'),
(540, 'en', 'comment_save_failed', 'discuss', '', 'The comment was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(541, 'en', 'comment_updated', 'discuss', '', 'Comment <strong>{id}</strong> updated.', '2020-07-30 10:26:43'),
(542, 'en', 'edit_comment', 'discuss', '', 'Edit comment', '2020-07-30 10:26:43'),
(543, 'en', 'hide_spam', 'discuss', '', 'Hide (spam)', '2020-07-30 10:26:43'),
(544, 'en', 'hide_unmoderated', 'discuss', '', 'Hide (unmoderated)', '2020-07-30 10:26:43'),
(545, 'en', 'just_spam_results_found', 'discuss', '', 'Only spam comments found. Use ‘Show spam’ to view them.', '2020-07-30 10:26:43'),
(546, 'en', 'no_comments_recorded', 'discuss', '', 'No comments recorded.', '2020-07-30 10:26:43'),
(547, 'en', 'search_comments', 'discuss', '', 'Search comments', '2020-07-30 10:26:43'),
(548, 'en', 'show_spam', 'discuss', '', 'Show spam', '2020-07-30 10:26:43'),
(549, 'en', 'condition', 'file', '', 'Condition', '2020-07-30 10:26:43'),
(550, 'en', 'edit_file', 'file', '', 'Edit file', '2020-07-30 10:26:43'),
(551, 'en', 'existing_file', 'file', '', 'Existing file', '2020-07-30 10:26:43');
INSERT INTO `txp_lang` (`id`, `lang`, `name`, `event`, `owner`, `data`, `lastmod`) VALUES
(552, 'en', 'file_already_exists', 'file', '', 'File <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(553, 'en', 'file_cannot_rename', 'file', '', 'File <strong>{name}</strong> could not be renamed.', '2020-07-30 10:26:43'),
(554, 'en', 'file_deleted', 'file', '', 'Files deleted: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(555, 'en', 'file_delete_failed', 'file', '', 'Failed to delete files: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(556, 'en', 'file_dir_not_writeable', 'file', '', '<strong>Warning:</strong> cannot write to file directory <code>{filedir}</code>.', '2020-07-30 10:26:43'),
(557, 'en', 'file_not_found', 'file', '', 'Files not found: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(558, 'en', 'file_not_updated', 'file', '', 'File <strong>{name}</strong> not updated.', '2020-07-30 10:26:43'),
(559, 'en', 'file_relink', 'file', '', 'Upload/assign file', '2020-07-30 10:26:43'),
(560, 'en', 'file_status', 'file', '', 'File status', '2020-07-30 10:26:43'),
(561, 'en', 'file_unsynchronized', 'file', '', 'File <strong>{name}</strong> has become unsynchronized with the database. Please manually fix filename.', '2020-07-30 10:26:43'),
(562, 'en', 'file_updated', 'file', '', 'Files updated: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(563, 'en', 'file_uploaded', 'file', '', 'Files uploaded: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(564, 'en', 'file_upload_failed', 'file', '', 'Failed to upload: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(565, 'en', 'invalid_filename', 'file', '', 'Invalid filenames: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(566, 'en', 'invalid_id', 'file', '', 'Invalid ID <strong>{id}</strong>.', '2020-07-30 10:26:43'),
(567, 'en', 'linked_to_file', 'file', '', 'Files linked: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(568, 'en', 'no_files_recorded', 'file', '', 'No files recorded.', '2020-07-30 10:26:43'),
(569, 'en', 'permissions', 'file', '', 'Permissions', '2020-07-30 10:26:43'),
(570, 'en', 'private', 'file', '', 'Private', '2020-07-30 10:26:43'),
(571, 'en', 'public', 'file', '', 'Public', '2020-07-30 10:26:43'),
(572, 'en', 'replace_file', 'file', '', 'Replace file', '2020-07-30 10:26:43'),
(573, 'en', 'reset_download_count', 'file', '', 'Reset download count', '2020-07-30 10:26:43'),
(574, 'en', 'search_files', 'file', '', 'Search files', '2020-07-30 10:26:43'),
(575, 'en', 'all_forms', 'form', '', 'All forms', '2020-07-30 10:26:43'),
(576, 'en', 'changetype', 'form', '', 'Change type', '2020-07-30 10:26:43'),
(577, 'en', 'create_form', 'form', '', 'New form', '2020-07-30 10:26:43'),
(578, 'en', 'form_already_exists', 'form', '', 'Form <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(579, 'en', 'form_clone', 'form', '', 'Duplicate form', '2020-07-30 10:26:43'),
(580, 'en', 'form_code', 'form', '', 'Form code', '2020-07-30 10:26:43'),
(581, 'en', 'form_created', 'form', '', 'Forms created: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(582, 'en', 'form_deleted', 'form', '', 'Forms deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(583, 'en', 'form_name', 'form', '', 'Form name', '2020-07-30 10:26:43'),
(584, 'en', 'form_name_invalid', 'form', '', 'Form name invalid.', '2020-07-30 10:26:43'),
(585, 'en', 'form_save_failed', 'form', '', 'The form was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(586, 'en', 'form_type', 'form', '', 'Form type', '2020-07-30 10:26:43'),
(587, 'en', 'form_type_missing', 'form', '', 'Form type is missing', '2020-07-30 10:26:43'),
(588, 'en', 'form_updated', 'form', '', 'Forms updated: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(589, 'en', 'alt_text', 'image', '', 'Alternate text', '2020-07-30 10:26:43'),
(590, 'en', 'create_thumbnail', 'image', '', 'Create thumbnail', '2020-07-30 10:26:43'),
(591, 'en', 'edit_image', 'image', '', 'Edit image', '2020-07-30 10:26:43'),
(592, 'en', 'image_deleted', 'image', '', 'Images deleted: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(593, 'en', 'image_delete_failed', 'image', '', 'Images could not be completely deleted: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(594, 'en', 'image_details', 'image', '', 'Image details', '2020-07-30 10:26:43'),
(595, 'en', 'image_name', 'image', '', 'Image name', '2020-07-30 10:26:43'),
(596, 'en', 'image_save_error', 'image', '', 'There was a problem saving image data.', '2020-07-30 10:26:43'),
(597, 'en', 'image_save_failed', 'image', '', 'The image was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(598, 'en', 'image_updated', 'image', '', 'Images updated: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(599, 'en', 'image_uploaded', 'image', '', 'Images uploaded: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(600, 'en', 'img_dir_not_writeable', 'image', '', '<strong>Warning:</strong> cannot write to image directory <code>{imgdir}</code>.', '2020-07-30 10:26:43'),
(601, 'en', 'invalid_width_or_height', 'image', '', 'Invalid width or height.', '2020-07-30 10:26:43'),
(602, 'en', 'keep_square_pixels', 'image', '', 'Crop', '2020-07-30 10:26:43'),
(603, 'en', 'no_images_recorded', 'image', '', 'No images recorded.', '2020-07-30 10:26:43'),
(604, 'en', 'only_graphic_files_allowed', 'image', '', 'Only .jpg, .gif or .png file types allowed.', '2020-07-30 10:26:43'),
(605, 'en', 'replace_image', 'image', '', 'Replace image', '2020-07-30 10:26:43'),
(606, 'en', 'search_images', 'image', '', 'Search images', '2020-07-30 10:26:43'),
(607, 'en', 'thumbnail_delete_failed', 'image', '', 'Thumbnail could not be completely deleted.', '2020-07-30 10:26:43'),
(608, 'en', 'thumbnail_deleted', 'image', '', 'Thumbnail deleted.', '2020-07-30 10:26:43'),
(609, 'en', 'thumbnail_not_saved', 'image', '', 'Thumbnail <strong>{id}</strong> not saved.', '2020-07-30 10:26:43'),
(610, 'en', 'thumbnail_saved', 'image', '', 'Thumbnail <strong>{id}</strong> saved.', '2020-07-30 10:26:43'),
(611, 'en', 'upload_image', 'image', '', 'Upload image', '2020-07-30 10:26:43'),
(612, 'en', 'upload_thumbnail', 'image', '', 'Upload thumbnail', '2020-07-30 10:26:43'),
(613, 'en', 'active_language', 'lang', '', 'Site language', '2020-07-30 10:26:43'),
(614, 'en', 'install_from_textpack', 'lang', '', 'Install from Textpack', '2020-07-30 10:26:43'),
(615, 'en', 'install_textpack', 'lang', '', 'Install Textpack', '2020-07-30 10:26:43'),
(616, 'en', 'language_deleted', 'lang', '', 'Language <strong>{name}</strong> removed.', '2020-07-30 10:26:43'),
(617, 'en', 'language_installed', 'lang', '', 'Language <strong>{name}</strong> installed.', '2020-07-30 10:26:43'),
(618, 'en', 'language_not_installed', 'lang', '', 'Language <strong>{name}</strong> not installed.', '2020-07-30 10:26:43'),
(619, 'en', 'language_preamble', 'lang', '', '<strong>You can help us improve Textpattern!</strong> We welcome additional translations (and corrections to current translations) by our user community. Please visit <a href=\"https://textpattern.com/languages\" rel=\"external\" target=\"_blank\">Textpattern language translations <span class=\"ui-icon ui-icon-extlink\">(opens an external link in a new window)</span></a> for further details.', '2020-07-30 10:26:43'),
(620, 'en', 'language_updated', 'lang', '', 'Language <strong>{name}</strong> updated.', '2020-07-30 10:26:43'),
(621, 'en', 'locale_not_available_for_language', 'lang', '', 'No locale available for language <strong>{name}</strong>. Using default locale instead.', '2020-07-30 10:26:43'),
(622, 'en', 'textpack_strings_installed', 'lang', '', '{count} strings installed from Textpack.', '2020-07-30 10:26:43'),
(623, 'en', 'create_link', 'link', '', 'New link', '2020-07-30 10:26:43'),
(624, 'en', 'edit_link', 'link', '', 'Edit link', '2020-07-30 10:26:43'),
(625, 'en', 'links_deleted', 'link', '', 'Links deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(626, 'en', 'link_created', 'link', '', 'Link <strong>{name}</strong> created.', '2020-07-30 10:26:43'),
(627, 'en', 'link_empty', 'link', '', 'Links should not be empty.', '2020-07-30 10:26:43'),
(628, 'en', 'link_saved', 'link', '', 'Link saved.', '2020-07-30 10:26:43'),
(629, 'en', 'link_save_failed', 'link', '', 'Link could not be saved.', '2020-07-30 10:26:43'),
(630, 'en', 'link_updated', 'link', '', 'Links updated: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(631, 'en', 'no_links_recorded', 'link', '', 'No links recorded.', '2020-07-30 10:26:43'),
(632, 'en', 'search_links', 'link', '', 'Search links', '2020-07-30 10:26:43'),
(633, 'en', 'articles_deleted', 'list', '', 'Articles deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(634, 'en', 'articles_duplicated', 'list', '', 'Articles duplicated: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(635, 'en', 'articles_modified', 'list', '', 'Articles modified: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(636, 'en', 'no_articles_recorded', 'list', '', 'No articles recorded.', '2020-07-30 10:26:43'),
(637, 'en', 'search_articles', 'list', '', 'Search articles', '2020-07-30 10:26:43'),
(638, 'en', 'logs_deleted', 'log', '', 'Logs deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(639, 'en', 'no_refers_recorded', 'log', '', 'No hits recorded.', '2020-07-30 10:26:43'),
(640, 'en', 'referrer', 'log', '', 'Referrer', '2020-07-30 10:26:43'),
(641, 'en', 'search_logs', 'log', '', 'Search logs', '2020-07-30 10:26:43'),
(642, 'en', 'all_pages', 'page', '', 'All pages', '2020-07-30 10:26:43'),
(643, 'en', 'create_page', 'page', '', 'New page', '2020-07-30 10:26:43'),
(644, 'en', 'page_already_exists', 'page', '', 'Page <strong>{name}</strong> already exists.', '2020-07-30 10:26:43'),
(645, 'en', 'page_code', 'page', '', 'Page code', '2020-07-30 10:26:43'),
(646, 'en', 'page_created', 'page', '', 'Pages created: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(647, 'en', 'page_deleted', 'page', '', 'Pages deleted: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(648, 'en', 'page_name', 'page', '', 'Page name', '2020-07-30 10:26:43'),
(649, 'en', 'page_name_invalid', 'page', '', 'Page name is invalid.', '2020-07-30 10:26:43'),
(650, 'en', 'page_save_failed', 'page', '', 'The page was not saved due to an error. Please try again.', '2020-07-30 10:26:43'),
(651, 'en', 'page_updated', 'page', '', 'Pages updated: <strong>{list}</strong>.', '2020-07-30 10:26:43'),
(652, 'en', 'page_used_by_section', 'page', '', 'Page <strong>{name}</strong> not deleted; used by {count} section(s).', '2020-07-30 10:26:43'),
(653, 'en', 'bad_plugin_code', 'plugin', '', 'Badly formed or empty plugin code.', '2020-07-30 10:26:43'),
(654, 'en', 'changeorder', 'plugin', '', 'Change order', '2020-07-30 10:26:43'),
(655, 'en', 'edit_plugin', 'plugin', '', 'Edit plugin <strong>{name}</strong>', '2020-07-30 10:26:43'),
(656, 'en', 'edit_plugins', 'plugin', '', 'Edit plugin', '2020-07-30 10:26:43'),
(657, 'en', 'install_plugin', 'plugin', '', 'Install plugin', '2020-07-30 10:26:43'),
(658, 'en', 'order', 'plugin', '', 'Order', '2020-07-30 10:26:43'),
(659, 'en', 'plugin', 'plugin', '', 'Plugin', '2020-07-30 10:26:43'),
(660, 'en', 'plugin_compression_unsupported', 'plugin', '', 'Plugin decompression is not supported by your server. Contact the plugin author for an uncompressed version.', '2020-07-30 10:26:43'),
(661, 'en', 'plugin_deleted', 'plugin', '', 'Plugins deleted: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(662, 'en', 'plugin_delete_entirely', 'plugin', '', 'Delete plugin from disk too', '2020-07-30 10:26:43'),
(663, 'en', 'plugin_dir_not_writeable', 'plugin', '', '<strong>Warning:</strong> cannot write to plugin directory <code>{plugindir}</code>.', '2020-07-30 10:26:43'),
(664, 'en', 'plugin_help', 'plugin', '', 'Plugin help', '2020-07-30 10:26:43'),
(665, 'en', 'plugin_installed', 'plugin', '', 'Plugin <strong>{name}</strong> installed.', '2020-07-30 10:26:43'),
(666, 'en', 'plugin_install_failed', 'plugin', '', 'Plugin <strong>{name}</strong> install failed.', '2020-07-30 10:26:43'),
(667, 'en', 'plugin_saved', 'plugin', '', 'Plugin <strong>{name}</strong> saved.', '2020-07-30 10:26:43'),
(668, 'en', 'plugin_updated', 'plugin', '', 'Plugins updated: <strong>{name}</strong>.', '2020-07-30 10:26:43'),
(669, 'en', 'previewing_plugin', 'plugin', '', 'Plugin preview', '2020-07-30 10:26:43'),
(670, 'en', 'search_plugins', 'plugin', '', 'Search plugins', '2020-07-30 10:26:43'),
(671, 'en', 'upload_plugin', 'plugin', '', 'Upload plugin', '2020-07-30 10:26:43'),
(672, 'en', 'verify_plugin', 'plugin', '', 'Verify plugin', '2020-07-30 10:26:43'),