local.sql 2.9 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. -- MySQL dump 10.13 Distrib 8.0.16, for Win64 (x86_64)
  2. --
  3. -- Host: ::1 Database: local
  4. -- ------------------------------------------------------
  5. -- Server version 8.0.16
  6. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  7. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  8. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  9. SET NAMES utf8mb4 ;
  10. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  11. /*!40103 SET TIME_ZONE='+00:00' */;
  12. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  13. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  14. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  15. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  16. --
  17. -- Table structure for table `wp_commentmeta`
  18. --
  19. DROP TABLE IF EXISTS `wp_commentmeta`;
  20. /*!40101 SET @saved_cs_client = @@character_set_client */;
  21. SET character_set_client = utf8mb4 ;
  22. CREATE TABLE `wp_commentmeta` (
  23. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  24. `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  25. `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  26. `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  27. PRIMARY KEY (`meta_id`),
  28. KEY `comment_id` (`comment_id`),
  29. KEY `meta_key` (`meta_key`(191))
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  31. /*!40101 SET character_set_client = @saved_cs_client */;
  32. --
  33. -- Dumping data for table `wp_commentmeta`
  34. --
  35. LOCK TABLES `wp_commentmeta` WRITE;
  36. /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
  37. /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
  38. UNLOCK TABLES;
  39. --
  40. -- Table structure for table `wp_comments`
  41. --
  42. DROP TABLE IF EXISTS `wp_comments`;
  43. /*!40101 SET @saved_cs_client = @@character_set_client */;
  44. SET character_set_client = utf8mb4 ;
  45. CREATE TABLE `wp_comments` (
  46. `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  47. `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  48. `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  49. `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  50. `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  51. `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  52. `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  53. `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  54. `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  55. `comment_karma` int(11) NOT NULL DEFAULT '0',
  56. `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  57. `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  58. `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  59. `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  60. `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  61. PRIMARY KEY (`comment_ID`),
  62. KEY `comment_post_ID` (`comment_post_ID`),
  63. KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  64. KEY `comment_date_gmt` (`comment_date_gmt`),
  65. KEY `comment_parent` (`comment_parent`),
  66. KEY `comment_author_email` (`comment_author_email`(10))
  67. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  68. /*!40101 SET character_set_client = @saved_cs_client */;
  69. --
  70. -- Dumping data for table `wp_comments`
  71. --
  72. LOCK TABLES `wp_comments` WRITE;
  73. /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
  74. INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2022-12-23 02:12:40','2022-12-23 02:12:40','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'post-trashed','','comment',0,0);
  75. /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
  76. UNLOCK TABLES;
  77. --
  78. -- Table structure for table `wp_e_events`
  79. --
  80. DROP TABLE IF EXISTS `wp_e_events`;
  81. /*!40101 SET @saved_cs_client = @@character_set_client */;
  82. SET character_set_client = utf8mb4 ;
  83. CREATE TABLE `wp_e_events` (
  84. `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  85. `event_data` text COLLATE utf8mb4_unicode_520_ci,
  86. `created_at` datetime NOT NULL,
  87. PRIMARY KEY (`id`),
  88. KEY `created_at_index` (`created_at`)
  89. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  90. /*!40101 SET character_set_client = @saved_cs_client */;
  91. --
  92. -- Dumping data for table `wp_e_events`
  93. --
  94. LOCK TABLES `wp_e_events` WRITE;
  95. /*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
  96. INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2022-12-28T09:00:32.226-08:00\"}','2022-12-28 09:00:32');
  97. INSERT INTO `wp_e_events` VALUES (2,'{\"event\":\"close modal\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2022-12-28T09:02:13.033-08:00\"}','2022-12-28 09:02:13');
  98. /*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
  99. UNLOCK TABLES;
  100. --
  101. -- Table structure for table `wp_links`
  102. --
  103. DROP TABLE IF EXISTS `wp_links`;
  104. /*!40101 SET @saved_cs_client = @@character_set_client */;
  105. SET character_set_client = utf8mb4 ;
  106. CREATE TABLE `wp_links` (
  107. `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  108. `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  109. `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  110. `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  111. `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  112. `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  113. `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  114. `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  115. `link_rating` int(11) NOT NULL DEFAULT '0',
  116. `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  117. `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  118. `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  119. `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  120. PRIMARY KEY (`link_id`),
  121. KEY `link_visible` (`link_visible`)
  122. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  123. /*!40101 SET character_set_client = @saved_cs_client */;
  124. --
  125. -- Dumping data for table `wp_links`
  126. --
  127. LOCK TABLES `wp_links` WRITE;
  128. /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
  129. /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
  130. UNLOCK TABLES;
  131. --
  132. -- Table structure for table `wp_options`
  133. --
  134. DROP TABLE IF EXISTS `wp_options`;
  135. /*!40101 SET @saved_cs_client = @@character_set_client */;
  136. SET character_set_client = utf8mb4 ;
  137. CREATE TABLE `wp_options` (
  138. `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  139. `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  140. `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  141. `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  142. PRIMARY KEY (`option_id`),
  143. UNIQUE KEY `option_name` (`option_name`),
  144. KEY `autoload` (`autoload`)
  145. ) ENGINE=InnoDB AUTO_INCREMENT=422 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  146. /*!40101 SET character_set_client = @saved_cs_client */;
  147. --
  148. -- Dumping data for table `wp_options`
  149. --
  150. LOCK TABLES `wp_options` WRITE;
  151. /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
  152. INSERT INTO `wp_options` VALUES (1,'siteurl','http://shadrin14323.local','yes');
  153. INSERT INTO `wp_options` VALUES (2,'home','http://shadrin14323.local','yes');
  154. INSERT INTO `wp_options` VALUES (3,'blogname','WorldFitness','yes');
  155. INSERT INTO `wp_options` VALUES (4,'blogdescription','Рекламная страница мобильного приложения для занятия фитнесом &quot;WorldFitness&quot;','yes');
  156. INSERT INTO `wp_options` VALUES (5,'users_can_register','0','yes');
  157. INSERT INTO `wp_options` VALUES (6,'admin_email','shadrin.vlad.2001@gmail.com','yes');
  158. INSERT INTO `wp_options` VALUES (7,'start_of_week','1','yes');
  159. INSERT INTO `wp_options` VALUES (8,'use_balanceTags','0','yes');
  160. INSERT INTO `wp_options` VALUES (9,'use_smilies','1','yes');
  161. INSERT INTO `wp_options` VALUES (10,'require_name_email','1','yes');
  162. INSERT INTO `wp_options` VALUES (11,'comments_notify','1','yes');
  163. INSERT INTO `wp_options` VALUES (12,'posts_per_rss','10','yes');
  164. INSERT INTO `wp_options` VALUES (13,'rss_use_excerpt','0','yes');
  165. INSERT INTO `wp_options` VALUES (14,'mailserver_url','mail.example.com','yes');
  166. INSERT INTO `wp_options` VALUES (15,'mailserver_login','login@example.com','yes');
  167. INSERT INTO `wp_options` VALUES (16,'mailserver_pass','password','yes');
  168. INSERT INTO `wp_options` VALUES (17,'mailserver_port','110','yes');
  169. INSERT INTO `wp_options` VALUES (18,'default_category','1','yes');
  170. INSERT INTO `wp_options` VALUES (19,'default_comment_status','open','yes');
  171. INSERT INTO `wp_options` VALUES (20,'default_ping_status','open','yes');
  172. INSERT INTO `wp_options` VALUES (21,'default_pingback_flag','1','yes');
  173. INSERT INTO `wp_options` VALUES (22,'posts_per_page','10','yes');
  174. INSERT INTO `wp_options` VALUES (23,'date_format','d/m/Y','yes');
  175. INSERT INTO `wp_options` VALUES (24,'time_format','H:i','yes');
  176. INSERT INTO `wp_options` VALUES (25,'links_updated_date_format','F j, Y g:i a','yes');
  177. INSERT INTO `wp_options` VALUES (26,'comment_moderation','0','yes');
  178. INSERT INTO `wp_options` VALUES (27,'moderation_notify','1','yes');
  179. INSERT INTO `wp_options` VALUES (28,'permalink_structure','/%postname%/','yes');
  180. INSERT INTO `wp_options` VALUES (29,'rewrite_rules','a:110:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes');
  181. INSERT INTO `wp_options` VALUES (30,'hack_file','0','yes');
  182. INSERT INTO `wp_options` VALUES (31,'blog_charset','UTF-8','yes');
  183. INSERT INTO `wp_options` VALUES (32,'moderation_keys','','no');
  184. INSERT INTO `wp_options` VALUES (33,'active_plugins','a:1:{i:0;s:23:\"elementor/elementor.php\";}','yes');
  185. INSERT INTO `wp_options` VALUES (34,'category_base','','yes');
  186. INSERT INTO `wp_options` VALUES (35,'ping_sites','http://rpc.pingomatic.com/','yes');
  187. INSERT INTO `wp_options` VALUES (36,'comment_max_links','2','yes');
  188. INSERT INTO `wp_options` VALUES (37,'gmt_offset','8','yes');
  189. INSERT INTO `wp_options` VALUES (38,'default_email_category','1','yes');
  190. INSERT INTO `wp_options` VALUES (39,'recently_edited','a:2:{i:0;s:97:\"C:\\Users\\VladOS\\local sites\\shadrin14323\\app\\public/wp-content/themes/twentytwentythree/style.css\";i:1;s:0:\"\";}','no');
  191. INSERT INTO `wp_options` VALUES (40,'template','zeever','yes');
  192. INSERT INTO `wp_options` VALUES (41,'stylesheet','zeever','yes');
  193. INSERT INTO `wp_options` VALUES (42,'comment_registration','0','yes');
  194. INSERT INTO `wp_options` VALUES (43,'html_type','text/html','yes');
  195. INSERT INTO `wp_options` VALUES (44,'use_trackback','0','yes');
  196. INSERT INTO `wp_options` VALUES (45,'default_role','subscriber','yes');
  197. INSERT INTO `wp_options` VALUES (46,'db_version','53496','yes');
  198. INSERT INTO `wp_options` VALUES (47,'uploads_use_yearmonth_folders','1','yes');
  199. INSERT INTO `wp_options` VALUES (48,'upload_path','','yes');
  200. INSERT INTO `wp_options` VALUES (49,'blog_public','1','yes');
  201. INSERT INTO `wp_options` VALUES (50,'default_link_category','2','yes');
  202. INSERT INTO `wp_options` VALUES (51,'show_on_front','posts','yes');
  203. INSERT INTO `wp_options` VALUES (52,'tag_base','','yes');
  204. INSERT INTO `wp_options` VALUES (53,'show_avatars','1','yes');
  205. INSERT INTO `wp_options` VALUES (54,'avatar_rating','G','yes');
  206. INSERT INTO `wp_options` VALUES (55,'upload_url_path','','yes');
  207. INSERT INTO `wp_options` VALUES (56,'thumbnail_size_w','150','yes');
  208. INSERT INTO `wp_options` VALUES (57,'thumbnail_size_h','150','yes');
  209. INSERT INTO `wp_options` VALUES (58,'thumbnail_crop','1','yes');
  210. INSERT INTO `wp_options` VALUES (59,'medium_size_w','300','yes');
  211. INSERT INTO `wp_options` VALUES (60,'medium_size_h','300','yes');
  212. INSERT INTO `wp_options` VALUES (61,'avatar_default','mystery','yes');
  213. INSERT INTO `wp_options` VALUES (62,'large_size_w','1024','yes');
  214. INSERT INTO `wp_options` VALUES (63,'large_size_h','1024','yes');
  215. INSERT INTO `wp_options` VALUES (64,'image_default_link_type','none','yes');
  216. INSERT INTO `wp_options` VALUES (65,'image_default_size','','yes');
  217. INSERT INTO `wp_options` VALUES (66,'image_default_align','','yes');
  218. INSERT INTO `wp_options` VALUES (67,'close_comments_for_old_posts','0','yes');
  219. INSERT INTO `wp_options` VALUES (68,'close_comments_days_old','14','yes');
  220. INSERT INTO `wp_options` VALUES (69,'thread_comments','1','yes');
  221. INSERT INTO `wp_options` VALUES (70,'thread_comments_depth','5','yes');
  222. INSERT INTO `wp_options` VALUES (71,'page_comments','0','yes');
  223. INSERT INTO `wp_options` VALUES (72,'comments_per_page','50','yes');
  224. INSERT INTO `wp_options` VALUES (73,'default_comments_page','newest','yes');
  225. INSERT INTO `wp_options` VALUES (74,'comment_order','asc','yes');
  226. INSERT INTO `wp_options` VALUES (75,'sticky_posts','a:0:{}','yes');
  227. INSERT INTO `wp_options` VALUES (76,'widget_categories','a:0:{}','yes');
  228. INSERT INTO `wp_options` VALUES (77,'widget_text','a:0:{}','yes');
  229. INSERT INTO `wp_options` VALUES (78,'widget_rss','a:0:{}','yes');
  230. INSERT INTO `wp_options` VALUES (79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no');
  231. INSERT INTO `wp_options` VALUES (80,'timezone_string','','yes');
  232. INSERT INTO `wp_options` VALUES (81,'page_for_posts','0','yes');
  233. INSERT INTO `wp_options` VALUES (82,'page_on_front','0','yes');
  234. INSERT INTO `wp_options` VALUES (83,'default_post_format','0','yes');
  235. INSERT INTO `wp_options` VALUES (84,'link_manager_enabled','0','yes');
  236. INSERT INTO `wp_options` VALUES (85,'finished_splitting_shared_terms','1','yes');
  237. INSERT INTO `wp_options` VALUES (86,'site_icon','0','yes');
  238. INSERT INTO `wp_options` VALUES (87,'medium_large_size_w','768','yes');
  239. INSERT INTO `wp_options` VALUES (88,'medium_large_size_h','0','yes');
  240. INSERT INTO `wp_options` VALUES (89,'wp_page_for_privacy_policy','3','yes');
  241. INSERT INTO `wp_options` VALUES (90,'show_comments_cookies_opt_in','1','yes');
  242. INSERT INTO `wp_options` VALUES (91,'admin_email_lifespan','1687313559','yes');
  243. INSERT INTO `wp_options` VALUES (92,'disallowed_keys','','no');
  244. INSERT INTO `wp_options` VALUES (93,'comment_previously_approved','1','yes');
  245. INSERT INTO `wp_options` VALUES (94,'auto_plugin_theme_update_emails','a:0:{}','no');
  246. INSERT INTO `wp_options` VALUES (95,'auto_update_core_dev','enabled','yes');
  247. INSERT INTO `wp_options` VALUES (96,'auto_update_core_minor','enabled','yes');
  248. INSERT INTO `wp_options` VALUES (97,'auto_update_core_major','enabled','yes');
  249. INSERT INTO `wp_options` VALUES (98,'wp_force_deactivated_plugins','a:0:{}','yes');
  250. INSERT INTO `wp_options` VALUES (99,'initial_db_version','53496','yes');
  251. INSERT INTO `wp_options` VALUES (100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes');
  252. INSERT INTO `wp_options` VALUES (101,'fresh_site','0','yes');
  253. INSERT INTO `wp_options` VALUES (102,'user_count','1','no');
  254. INSERT INTO `wp_options` VALUES (103,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes');
  255. INSERT INTO `wp_options` VALUES (104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes');
  256. INSERT INTO `wp_options` VALUES (105,'cron','a:8:{i:1672251164;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1672275629;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1672279963;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1672279964;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1672281100;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1672281102;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1672452763;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes');
  257. INSERT INTO `wp_options` VALUES (106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  258. INSERT INTO `wp_options` VALUES (107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  259. INSERT INTO `wp_options` VALUES (108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  260. INSERT INTO `wp_options` VALUES (109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  261. INSERT INTO `wp_options` VALUES (110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  262. INSERT INTO `wp_options` VALUES (111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  263. INSERT INTO `wp_options` VALUES (112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  264. INSERT INTO `wp_options` VALUES (113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  265. INSERT INTO `wp_options` VALUES (114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  266. INSERT INTO `wp_options` VALUES (115,'nonce_key','k2d[dGah(L__(q}k3rFKH6k2M#V|n?~@^J^:Uo?>j?c`G>kpa1dz`>$<vnPhv*iD','no');
  267. INSERT INTO `wp_options` VALUES (116,'nonce_salt','9*]4[t})Xc6S3QP?$A10Pzj}3_bJ>7Zn|K),o{~]27#o+Zk0v-R,SfI6@w5 iXgq','no');
  268. INSERT INTO `wp_options` VALUES (117,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  269. INSERT INTO `wp_options` VALUES (118,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  270. INSERT INTO `wp_options` VALUES (119,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  271. INSERT INTO `wp_options` VALUES (120,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  272. INSERT INTO `wp_options` VALUES (121,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
  273. INSERT INTO `wp_options` VALUES (123,'recovery_keys','a:0:{}','yes');
  274. INSERT INTO `wp_options` VALUES (126,'theme_mods_twentytwentythree','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1672192312;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}s:18:\"nav_menu_locations\";a:0:{}}','yes');
  275. INSERT INTO `wp_options` VALUES (129,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:38:\"Проверка SSL неудачна.\";}}','yes');
  276. INSERT INTO `wp_options` VALUES (140,'auth_key','bK!m=eu[@B8xlAp~OzyGkMnE,~|lV,CK8I>(V2>;C4rT$Q^DQAGsX`+L?/%$L,?M','no');
  277. INSERT INTO `wp_options` VALUES (141,'auth_salt','>m[cCj H/Q@/|7q;~HSoJiZ6w&6VwH8ClF#M{6YqDD*$YeY~/]-#dO#.d}A0x=?','no');
  278. INSERT INTO `wp_options` VALUES (142,'logged_in_key','S`p/2HG;/9l{=43N0YOZ+_uc:0yXoLjv!<.Er*cm~Ys`hvw[X b.YT[LJ#v>-};E','no');
  279. INSERT INTO `wp_options` VALUES (143,'logged_in_salt','!B>jJ<A$8>|zEd+<M76m*3]-TUR1dlJPX9=~[~h&3e|WZvGW1Bb6]zag*p<DK Fb','no');
  280. INSERT INTO `wp_options` VALUES (144,'_site_transient_timeout_browser_a818ab359804517f2549e94c88d03c0b','1672367501','no');
  281. INSERT INTO `wp_options` VALUES (145,'_site_transient_browser_a818ab359804517f2549e94c88d03c0b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"108.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no');
  282. INSERT INTO `wp_options` VALUES (146,'_site_transient_timeout_php_check_9522db31646a2e4672d744b6f556967b','1672367502','no');
  283. INSERT INTO `wp_options` VALUES (147,'_site_transient_php_check_9522db31646a2e4672d744b6f556967b','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no');
  284. INSERT INTO `wp_options` VALUES (161,'can_compress_scripts','1','no');
  285. INSERT INTO `wp_options` VALUES (168,'finished_updating_comment_type','1','yes');
  286. INSERT INTO `wp_options` VALUES (175,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":4,\"critical\":0}','yes');
  287. INSERT INTO `wp_options` VALUES (180,'_site_transient_timeout_community-events-d41d8cd98f00b204e9800998ecf8427e','1672233150','no');
  288. INSERT INTO `wp_options` VALUES (181,'_site_transient_community-events-d41d8cd98f00b204e9800998ecf8427e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";b:0;}s:6:\"events\";a:0:{}}','no');
  289. INSERT INTO `wp_options` VALUES (182,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1672230856','no');
  290. INSERT INTO `wp_options` VALUES (183,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 16:17:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.2-alpha-55016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 45: State of the Word Reflections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Josepha reflects on this year\'s State of the Word address here on the WP Briefing podcast. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-045.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14480:\"\n<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2020 WordPress Survey!</a><br><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br><a href=\"https://communitysummit.wordcamp.org/2023/\" data-type=\"URL\" data-id=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 12:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14124\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project\'s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13931:\"\n<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14110\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress belongs to all of us, but really we’re taking care of it for the next generation.” Matt Mullenweg A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder Matt Mullenweg. Those who could not join in person joined via livestream [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5677:\"\n<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> and <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> for review and collaboration.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Share Your Experience: The 2022 WordPress Survey is Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2022 16:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14062\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"The 2022 WordPress survey is open for your input and available in English, French, German, Italian, Japanese, Russian, and Spanish.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that your WordPress experience is represented in the 2022 survey results, <a href=\"https://wordpressdotorg.survey.fm/en-2022\">take the 2022 annual survey now.</a></p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/en-2022\">Take the 2022 Survey (English)</a></div>\n</div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/fr-2022\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/de-2022\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/it-2022\">Italian</a>, <a href=\"https://wordpressdotorg.survey.fm/jp-2022\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/ru-2022\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/es-2022\">Spanish</a>, thanks to the efforts of WordPress polyglot contributors. These are the most frequently installed languages based on the number of WordPress downloads. </p>\n\n\n\n<p>The survey will be open through the end of 2022, and then WordPress plans to publish the results sometime in 2023. This year, the survey questions have been refreshed for more effortless survey flow, completion, and analysis. Some questions have been removed, while a few new ones are now present, reflecting the present and future of WordPress. If you’re looking for the analysis of the 2021 survey results, those will also be shared in early 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Spread the word</h2>\n\n\n\n<p>Help spread the word about the survey by sharing it with your network, through Slack, or within your social media accounts. The more people who complete the survey and share their experience with WordPress, the more the project as a whole will benefit in the future.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security and privacy</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you</h2>\n\n\n\n<p>Thank you to the following WordPress contributors for assisting with the annual survey project, including question creation, strategy, survey build-out, and translation:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Huanyi Chuang\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Nov 2022 20:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13562\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"The latest People of WordPress story features Huanyi Chuang, from #Taiwan, on his journey to become a digital marketer and front end developer. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11689:\"\n<p><strong>This month we feature Huanyi (Eric) Chuang, a front end developer from Taiwan, who helps connect local groups to WordPress and the worldwide open source community. He is part of the team helping to make the first WordCamp Asia a success in 2023.</strong></p>\n\n\n\n<p><strong>The People of WordPress series shares some of the inspiring stories of how people&#8217;s lives can change for the better through WordPress and its global network of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Huanyi pictured sitting inside a rock formation.\" class=\"wp-image-13479\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Discovering WordPress and the benefit of child themes </strong></h2>\n\n\n\n<p>Huanyi’s first footsteps in WordPress began in 2017 when he worked for a firm that built blogs and developed ad content for clients.</p>\n\n\n\n<p>After building a few sites using the platform, he discovered child themes and through them opened up a world of possibilities for his clients. To this day, he uses child themes to deliver truly custom designs and functionality for clients.</p>\n\n\n\n<p>Later in his career, Huanyi moved into digital marketing, integrating sites with massive ad platforms like Google and Facebook. This led him to learn to work with tracking code and JavaScript. He also began his learning journey in HTML, CSS, and PHP, to be able to improve his development skills and customize child themes.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Meetups bring together software users to learn together</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?fit=600%2C800&amp;ssl=1\" alt=\"Huanyi and a koala.\" class=\"wp-image-13476\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" /><figcaption class=\"wp-element-caption\"><em>Huanyi pictured in Australia during one of his travels meeting a koala bear.</em></figcaption></figure>\n\n\n\n<p>When Huanyi had a problem with a client&#8217;s site, he looked to WordPress meetups near where he lived in <a href=\"https://www.meetup.com/Taipei-WordPress/\">Taipei</a> to help find the solutions.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard</strong>.&#8221;</p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>At the meetup, he met more experienced WordPress users and developers there, who answered his questions and helped him learn.</p>\n\n\n\n<p>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard. That was my original connection with the local community,” Huanyi said.</p>\n\n\n\n<p>The WordPress community gave Huanyi a chance to connect with people, feed his curiosity about the software, and join a circle of people he could share this interest.</p>\n\n\n\n<p>At first, he thought meetups were an opportunity to source new clients, and he took his business cards to every event. However, he soon found that these events offered him the opportunity to make friends and share knowledge.</p>\n\n\n\n<p>From then on, Huanyi started focusing more on what he could give to these events and networks, making new friends, and listening to people. This led him to share as a meetup speaker his own commercial website management experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The road to WordCamp</strong></h2>\n\n\n\n<p>It was going to his first meetup and then getting involved with WordCamps that changed Huanyi&#8217;s whole relationship with WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Huanyi pictured on an outing, stood next to a white car.\" class=\"wp-image-13477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In 2018, he took the step to help as an organizer, having joined the Taoyuan Meetup in Taiwan. He played several parts across the organizing team, and the welcoming feeling he got in every situation encouraged him to get more involved.</p>\n\n\n\n<p>He recalls meeting new friends from different fields and other countries, which gave him a great sense of achievement and strengthened his passion for participating in the community.</p>\n\n\n\n<p>When the team started this meetup, numbers were much lower than in the group in the city of Taipei, but they were not disheartened and gradually grew the local WordPress community.</p>\n\n\n\n<p>They created a pattern of ‘multiple organizers,’ which spread the workload and grew friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“Being connected to and from meetups is the most valuable part of the community. Having these friends makes me gather more information. We share information and benefit from others’ information, and thus we gain more trust in each other. With such credibility, we share more deeply and build deeper relations.”</strong> </p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>Before the pandemic, the meetup met every month and grew to become the second largest meetup in Taiwan. Huanyi also contributed to the WordPress community as an organizer of WordCamp Taipei 2018 in the speaker team and lead organizer of <a href=\"https://taiwan.wordcamp.org/2021/\">WordCamp Taiwan 2021</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>So why should you join the community?</strong></h2>\n\n\n\n<p>According to Huanyi, you will always have something to take home with you. It might be new information or experiences. It might be plugins or theme ideas. But most of all, it is the chance to meet fascinating people and make new friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Huanyi’s message to other contributors:<br>&#8220;Keep participating, and you will find more you can achieve than you expect.” </p>\n</blockquote>\n\n\n\n<p>He added that long-term participation will &#8216;let you feel the humanity behind the project&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Localize: the road ahead for WordPress</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?resize=900%2C675&#038;ssl=1\" alt=\"Huanyi standing on a sandy beach.\" class=\"wp-image-13478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Huanyi believes WordPress has the power to break down the barriers between designers, project managers, developers, marketers, writers, and publishers. In Taiwan, he said WordPress is &#8216;a common protocol&#8217; that lets people from all of these disciplines work and communicate together more easily than they ever have before.</p>\n\n\n\n<p>That is why he works on and encourages others to localize plugins today. He believes localization of the software is the foundation for the extension of the WordPress community as it enables people to ‘Flex their Freedom’ in a language they speak!</p>\n\n\n\n<p>He has helped to organize online events around previous <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> events.</p>\n\n\n\n<p>Huanyi said: “I think it&#8217;s important to localize WordPress because its very concept of ‘open source’ means that people can access it freely. In another way, free from the monopoly of knowledge and speech. To achieve it, it&#8217;s important that people can access it with their own language.</p>\n\n\n\n<p>“Localization is the foundation of the extension of WordPress community because it helps people using different languages to access the project and lowers the hurdle to understand how things work.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to <a href=\'https://profiles.wordpress.org/no249a002/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>no249a002</a> for sharing his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Adeeb Malik (<a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a>) for research, interviews, and contributing to this feature article.</p>\n\n\n\n<p>The <em>People of WordPress</em> series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP Briefing: Episode 44: Minors, Majors, and Why We Have So Many Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Nov 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=13996\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Hear Josepha Haden Chomphosy highlight the role of major and minor releases in the WordPress open source project in this episode.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/11/WP-Briefing-044.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8637:\"\n<p>In the forty-fourth episode of the WordPress Briefing, our host Josepha Haden Chomphosy highlights the role of major and minor releases in the WordPress open source project. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/12th_man_(football)\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/12th_man_(football)\">Twelfth Man</a><br><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-13996\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:27]&nbsp;</strong></p>\n\n\n\n<p>At the top of November, a new major release for WordPress shipped. That was WordPress 6.1. I know I talked about it basically nonstop. Then two weeks later, there was a new minor release for WordPress. It was WordPress 6.1.1, which I did not talk about at all. Way back in episode four of this podcast, I dug into the overall release cycle and what someone could expect from a high-level logistics aspect.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:05]&nbsp;</strong></p>\n\n\n\n<p>And today we&#8217;re gonna take a quick look at minor releases in particular. Just as a general heads up, I always want to lean into sports metaphors when I&#8217;m talking about releases, and I think it&#8217;s because of the words major and minor. And so, I&#8217;ve done my level best to not include that in any of my explanations today.</p>\n\n\n\n<p>But I do have one, I do have one that&#8217;s a sports thing. So just if you don&#8217;t like sports, know that it&#8217;s just one little bit and we&#8217;ll try to be carefully quick around it together. All right, so minor releases. You may have noticed that I don&#8217;t mention minor releases nearly as often as I mention major releases. And yet, most of the time, when we have a major release of WordPress, there&#8217;s a minor release that gets started almost immediately after.</p>\n\n\n\n<p>So first major versus minor. Major releases in WordPress happen roughly three times a year, give or take a release. Inside a major release, you will find that we include features, so– brand new abilities, enhancements, which you can generally call improvements to existing abilities, and also any bug fix that we can find, big or small, we&#8217;ll take &#8217;em all.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:16]&nbsp;</strong></p>\n\n\n\n<p>So minor releases in WordPress happen about four or five times a year on average. Minor releases include patches for issues introduced in the major release and any bug fix that doesn&#8217;t add or change functionality.&nbsp;</p>\n\n\n\n<p>If you&#8217;re with me so far, you probably have noted that there&#8217;s basically always at least one minor release per major release. And you might have also noted that I said minors include patches for issues we introduced in a major.</p>\n\n\n\n<p>Now, if I were hearing this with fresh ears, the first thing I would wonder is, okay, so if you start working on the minor right after you release the major to deal with issues you know you introduced in the major– why just not ship the major while there are bugs in it? Great question. I&#8217;m glad you asked. So there are a few things worth knowing here.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:09]&nbsp;</strong></p>\n\n\n\n<p>Firstly, there is this concept of “ship and iterate,” which is present in both agile and open source. The idea is that we ship software as soon as we have confidence that what is in the release is non-breaking and represents our best guests at a better experience for our users.</p>\n\n\n\n<p>Once that is out there, we use feedback on the initial release to quickly iterate and ship another release. That way, we don&#8217;t hold back any good features. And since we already planned the immediate minor, any major issues that show up can be fixed in as little as two weeks. Secondly, there is the concept that with many eyes, all bugs are shallow, which is primarily present in open source.</p>\n\n\n\n<p>The idea here is that with enough people looking at a problem, that problem doesn&#8217;t stand a chance. So when a release is shipped in a workable state but with interactions that could use some refinement, the fastest way to find those refinements is to take it to the community of WordPress users and developers and invite them to co-create this CMS with us.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:10]</strong></p>\n\n\n\n<p>Which touches on my final thought. The concept of the user as co-creator.</p>\n\n\n\n<p>If we think about the development and evolution of our software as a team effort, then we can think of the people who use our software as what&#8217;s called the “Twelfth Man” That&#8217;s in quotes, and I will, I&#8217;ll leave a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>In sports, this refers to the fans. And if you&#8217;ve ever been to a live sporting event or played in any, you will know that the cheering and jeering from fans turns into this distinct motivating entity all its own. As a whole team or individual member, you know what you have to do. You know what you need to do in a game, but there&#8217;s something about that chaotic, loud roar of feedback that just brings life to what you&#8217;re doing, and that&#8217;s how I see our community of users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:02]</strong></p>\n\n\n\n<p>So at the end of the day, the answer to the question of ‘why so many releases’ and the follow-up question of ‘why tolerate stable imperfection’ is largely the same. To get features into the hands of our users quickly so that we can always be breathing life into this CMS we care so much about.</p>\n\n\n\n<p>I hope that answers your questions about our release cadence, and if you didn&#8217;t come into this podcast having any questions about release cadences at all, I hope this new information brings a little extra light to the complexity of working in open source.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:32]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things.</p>\n\n\n\n<p>Big thing number one is that the State of the Word has been announced and is scheduled for December 15th. It&#8217;s a little earlier in the day than in past iterations, so I hope we get a new crew of listeners tuning in at the same time. I&#8217;ll leave a link to that in the show notes, or you can pop over to wordpress.org/news to see the announcement for yourself.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>Big thing number two is that team rep nominations are open on most teams right now. So if organization and people wrangling are high on your list of ways you can give back to WordPress, head on over to the team you contribute to and see how you raise your hand for that.&nbsp;</p>\n\n\n\n<p>Then big thing number three is that big-picture goals, hopes, and timelines are being gathered, and I will ship those shortly after the start of the new year.</p>\n\n\n\n<p>It will give us all an idea of where we want to focus our attention to ensure that WordPress continues to grow toward the future. You can keep an eye out for that on make.wordpress.org/project.&nbsp;</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – October 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/the-month-in-wordpress-october-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2022 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13988\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14083:\"\n<p>With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news. It&#8217;s time to catch up on all things WordPress!</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Say hello to WordPress 6.1 “Misha”</h2>\n\n\n\n<p>The third and last major release of 2022, <a href=\"https://wordpress.org/news/2022/11/misha/\"><strong>WordPress 6.1 “Misha,”</strong></a> shipped on November 1, 2022. Named after jazz pianist <strong>Mikhail “Misha” Alperin</strong>, this release comes packed with many improvements that refine the site-building experience introduced earlier this year in WordPress 5.9 and 6.0, as well as <a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">accessibility</a> and <a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">performance</a> upgrades.</p>\n\n\n\n<p>WordPress 6.1 is also bundled with a new default block theme, <a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Twenty Twenty-Three (TT3)</a>, that features <strong>10 style variations</strong> designed by WordPress community members. These intentionally unique designs ensure that you can change the visual details of your site with ease—and within a single theme.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/1w9oywSa6Hw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Learn more about what&#8217;s in 6.1:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/misha/\">WordPress 6.1 “Misha” Announcement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n</ul>\n\n\n\n<p>Following WordPress 6.1 “Misha”, a <a href=\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\">6.1.1 maintenance release</a> landed on November 15, 2022. This minor release includes about 50 bug fixes.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.1.1</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">State of the Word 2022 is coming on December 15</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Decorative blue background with text: &quot;State of the Word 2022. December 15, 2022. 1–2:30 P.M. EST (18–19:30 UTC.) New York City.&quot;\" class=\"wp-image-13956\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>State of the Word 2022</strong>, the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg, will be held on <strong>December 15, 2022</strong>. The event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.</p>\n\n\n\n<p>You can also host or join a <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">State of the Word watch party</a> to enjoy the event with your WordPress friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">Learn more about State of the Word 2022</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\"><strong>Gutenberg 14.4</strong></a> was released on October 26, 2022, with support for a distraction-free mode that allows a more focused writing experience. Other notable highlights include a redesigned pattern inserter, content locking to the Navigation block, and improvements to fluid typography.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\"><strong>Gutenberg 14.5</strong></a> sets the groundwork for future releases with code quality improvements and bug fixes. This version introduces a new “Document Overview” panel for easier access to the list view and document information, expands margin and padding support, and improves spacing visualizers. It was released on November 9, 2022.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Explore some of the latest enhancements to the writing experience in <a href=\"https://make.wordpress.org/core/2022/10/28/core-editor-improvement-advancing-the-writing-experience/\">this Core Editor Improvement post</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Documentation Contributor Day, WordPress.org redesign updates, and more</h2>\n\n\n\n<ul>\n<li>After a <a href=\"https://make.wordpress.org/core/2022/07/27/giving-fse-a-more-user-friendly-name/\">lively discussion</a> around the site editing terminology, WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/updates/2022/11/04/site-editor-a-more-user-friendly-name/\">announced that the term &#8220;Site Editor&#8221; will be used going forward</a> in reference to the suite of site editing tools.</li>\n\n\n\n<li>Last month, the Docs Team successfully held its <a href=\"https://make.wordpress.org/docs/2022/10/28/the-documentation-team-contributor-day-summary/\">first online Contributor Day</a> to collaborate in real-time, help onboard new contributors, and work on backlog tasks.</li>\n\n\n\n<li>Progress and next steps for the WordPress.org website redesign were shared <a href=\"https://make.wordpress.org/meta/2022/10/21/wordpress-org-redesign-update/\">in this post</a>. The following pages that will get a refreshed look and feel soon include <a href=\"https://make.wordpress.org/design/2022/11/11/a-refresh-of-wordpress-org-showcase/\">Showcase</a> and <a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">Documentation (HelpHub)</a>.</li>\n\n\n\n<li>The WordPress.org Theme Directory <a href=\"https://make.wordpress.org/meta/2022/10/20/displaying-style-variations-for-supporting-themes/\">introduced a new feature</a> that allows visitors to preview style variations in block themes.</li>\n\n\n\n<li>Inspired by the Community Team’s efforts to reactivate meetup groups, the Polyglots Team is looking to start a <a href=\"https://make.wordpress.org/polyglots/2022/11/08/starting-a-polyglots-outreach-effort/\">Polyglots outreach project</a> and welcomes help.</li>\n\n\n\n<li>The Training Team shared an <a href=\"https://make.wordpress.org/training/2022/11/01/summary-update-courses-currently-in-development-1-november-2022/\">overview of some of the new Learn WordPress courses</a> they have been recently working on.</li>\n\n\n\n<li>Openverse’s catalog now includes <a href=\"https://make.wordpress.org/openverse/2022/11/16/openverse-now-includes-over-1-million-audio-records/\">more than one million audio records</a>!</li>\n\n\n\n<li>The WordPress Photo Directory also reached a significant milestone by surpassing 5,000 photos! <a href=\"https://make.wordpress.org/photos/2022/11/17/the-road-to-5000-photos-a-retrospective/\">Check out this celebratory retrospective from the Photos team</a>.</li>\n\n\n\n<li>Speaking of Openverse and the Photo Directory, <a href=\"https://wordpress.org/news/2022/11/episode-43-openverse-photo-directory-what-are-they-and-how-are-they-different/\">don’t miss the latest episode of the WP Briefing podcast</a>—it covers the differences between these two resources, and how they work to further openly-licensed media.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/10/people-of-wordpress-raghavendra-satish-peri/\">Raghavendra Satish Peri</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Enjoy a spooky Halloween Mad Libs story completed by community contributors in <a href=\"https://wordpress.org/news/2022/10/episode-42-something-spooky-this-way-comes/\">Episode 42 of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>The <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">Plugin Dependencies feature plugin is available for testing</a>. Provide your feedback by December 1, 2022.</li>\n\n\n\n<li>What does a genuinely sustainable WordPress community look like to you? Share your vision and thoughts in <a href=\"https://make.wordpress.org/project/2022/11/01/sustainability-channel-what-should-we-do/\">this discussion post</a>.</li>\n\n\n\n<li>The new WordPress developer blog is in public beta and <a href=\"https://make.wordpress.org/core/2022/11/21/wordpress-developer-blog-is-in-public-beta/\">ready for feedback</a>.</li>\n\n\n\n<li>The Core Team requests assistance with <a href=\"https://make.wordpress.org/hosting/2022/10/19/call-for-action-testing-rollback-feature/\">testing a new Rollback Feature in WordPress core</a>.</li>\n\n\n\n<li>Version 21.2 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/11/15/call-for-testing-wordpress-for-android-21-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/11/14/call-for-testing-wordpress-for-ios-21-2/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Were you involved in WordPress 6.1? <a href=\"https://make.wordpress.org/core/2022/11/09/wordpress-6-1-misha-retrospective/\">Share your thoughts</a> on the release process by December 15, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li>The WordCamp Asia organizing team is collaborating with WordCamp Central to bring the <a href=\"https://asia.wordcamp.org/2023/apply-for-wordcamp-asia-diversity-scholarship/\">WordCamp Asia Diversity Scholarship</a>. In addition, the team recently announced the <a href=\"https://asia.wordcamp.org/2023/speakers-announcement-round-1/\">first round of speakers</a>.</li>\n\n\n\n<li>Preparations for <a href=\"https://europe.wordcamp.org/2023/the-preparations-for-wordcamp-europe-2023-have-begun/\">WordCamp Europe 2023</a> are underway.</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1f7.png\" alt=\"🇧🇷\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://saopaulo.wordcamp.org/2022/\">WordCamp São Paulo</a>, Brazil on November 26, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kolkata.wordcamp.org/2022/\">WordCamp Kolkata</a>, West Bengal, India on December 17-18, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Boost your speaking confidence in WordPress events. Register for the <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-wpdiversity-tickets-462153532657\">How to Own Your Expertise &amp; Start Speaking at WordPress Events</a> online workshop happening December 7, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this edition of The Month in WordPress:</em> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Nov 2022 17:14:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"sotw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13971\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"Join the WordPress project leaders for State of the Word 2022 in New York City on December 15, 2022. Also live-streamed on social media, you will hear about the WordPress project, open source, and more in this annual event.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18044:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Hello, WordPress!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Mark your calendars</a>; it’s almost time for State of the Word 2022!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, <a href=\"https://ma.tt\">Matt Mullenweg</a>. Every year, the event shares reflections on the project’s progress and the future of open source. Expect this and more in this year’s edition.</p>\n\n\n\n<p>This year’s event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.&nbsp;</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2022, the latest WordPress releases, Site Editor advancements, and a return to in-person events around the globe, among other topics.</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2022</p>\n\n\n\n<p><strong>When:</strong> <a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">December 15, 2022, 1–2:30 P.M. EST (18–19:30 UTC)</a></p>\n\n\n\n<p><strong>How:</strong> If you’re watching from the comfort of your home or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">local watch party</a>, the live stream will be embedded in this post and available through the <a href=\"https://youtube.com/wordpress\">WordPress YouTube channel</a>.</p>\n\n\n\n<p><em>Update December 5, 2022: All in-person seats to State of the Word have been claimed at this time. Please join us online or at a local watch party instead! </em><s>Would you like to join the in-person audience? <a href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2022\">Request a seat by completing this survey</a>.</s></p>\n\n\n\n<h2 class=\"wp-block-heading\">Have a question for Matt?</h2>\n\n\n\n<p>State of the Word will include a Q&amp;A session. If you want to participate, you can either send your question ahead of time to <strong>ask-matt@wordcamp.org</strong> or ask during the event in the live stream chat on YouTube.</p>\n\n\n\n<p>Given the volume of questions that are usually submitted, please note that it may not be possible to answer all of them in the live Q&amp;A. A follow-up post will be published after the State of the Word to answer those not covered at the event.</p>\n\n\n\n<p>First time attending State of the Word? Check out <a href=\"https://wordpress.tv/tag/state-of-the-word/\">previous years&#8217; recordings on</a> <a href=\"https://wordpress.tv/tag/state-of-the-word/\">WordPress.tv</a> to get a sense of the event.</p>\n\n\n\n<p>See you in person or online on December 15!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-default\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"join-a-state-of-the-word-watch-party-near-you\">Join a State of the Word Watch Party near You</h2>\n\n\n\n<p>Can’t make it to New York? No problem, organize or join a watch party in your community in person or online. Like last year, the Community team has resources available to help! Check out <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">this handbook page</a>, which includes event templates, information on requesting a Zoom account, and how to get some swag.</p>\n\n\n\n<p>Gather together to look back on how WordPress has grown in 2022 and what is ahead for 2023. Stay up-to-date as a group on the latest happenings in the WordPress world and collaborate together on any questions you might have for Matt!</p>\n\n\n\n<p>Below you can find a list of State of the Word watch parties that will be updated regularly as the event approaches. If you don’t see a watch party in your region, <a href=\"https://meetup.com/pro/wordpress\">check this page on Meetup.com</a> to see if your local WordPress group is organizing one.</p>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/bali-wordpress-meetup\">Bali</a> – <a href=\"https://www.meetup.com/bali-wordpress-meetup/events/290077585/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup\">Bandung</a> &#8211; <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup/events/290189476/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/demak-wordpress-meetup\">Demak</a> &#8211; <a href=\"https://www.meetup.com/demak-wordpress-meetup/events/290139514/\">Nobar Akbar &#8211; State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup\">Gresik</a> – <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup/events/290094185/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup\">Jakarta</a> – <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup/events/290077621/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/semarang-wordpress-meetup\"></a><a href=\"https://www.meetup.com/semarang-wordpress-meetup\">Semarang</a> – <a href=\"https://www.meetup.com/semarang-wordpress-meetup/events/290078011/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/surabaya-wordpress-meetup\">Surabaya</a> – <a href=\"https://www.meetup.com/surabaya-wordpress-meetup/events/290094201/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup\">Surakarta</a> &#8211; <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup/events/290118717/\">Nobar Akbar &#8220;State of the Word&#8221; 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tangsel-wordpress-meetup\">Tangsel</a> &#8211; <a href=\"https://www.meetup.com/tangsel-wordpress-meetup/events/290134068/\">[ONLINE] Nobar Akbar &#8220;State of the Word&#8221; Indonesia</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Tegal</a> – <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup\">Wonosobo</a> &#8211; <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup/events/290202948/\">Nobar akbar “State of the Word” di Indonesia &#8211; WordPress Meetup Wonosobo #4</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup\">Yogyakarta</a> &#8211; <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup/events/290210890/\">Nonton bareng akbar &#8220;State of the Word&#8221; dengan pembicara Matt Mullenweg</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wpgrandrapids\">Grand Rapids</a> – <a href=\"https://www.meetup.com/wpgrandrapids/events/290039217/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpress-jacksonville\">Jacksonville</a> &#8211; <a href=\"https://www.meetup.com/wordpress-jacksonville/events/290194941/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/learn-wordpress-online-workshops\">Learn WordPress Online Workshops</a> – <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290051844/\">State of the Word Watch Party (Live Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">Oklahoma City</a> – <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/sanjosewp\">San Jose</a> – <a href=\"https://www.meetup.com/sanjosewp/events/290067642/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpressscv\">Santa Clarita</a> &#8211; <a href=\"https://www.meetup.com/wordpressscv/events/290262927/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/santa-cruz-wordpress\">Santa Cruz</a> – <a href=\"https://www.meetup.com/santa-cruz-wordpress/events/290067649/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kochi-WordPress-Meetup\">Kochi – </a><a href=\"https://www.meetup.com/Kochi-WordPress-Meetup/events/289893144/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup\">Vadodara</a> &#8211; <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup/events/290171074/\">State of the Word 2022 &#8211; Vadodara WordPress Meetup (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/meetup-wordpress-ancona\"></a><a href=\"https://www.meetup.com/meetup-wordpress-ancona\">Ancona</a> – <a href=\"https://www.meetup.com/meetup-wordpress-ancona/events/289968378/\">State of the Word Watch Party + Auguri di Natale + Proposte 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/RomaWordPress\">Roma (Rome)</a> &#8211; <a href=\"https://www.meetup.com/RomaWordPress/events/290220630/\">State of the Word Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza\">Vicenza</a> &#8211; <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza/events/290283053/\">Watch party WPVI di &#8220;State of the Word 2022&#8221;</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup\">Kagawa</a> – <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup/events/290076405/\">State of the Word Watch Party + 日本語字幕つけ [オンライン開催]</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup\">Tokyo</a> – <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup/events/289965452/\">State of the Word から来年の WordPress を考えよう!+ 忘年会</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Granada-WordPress-Meetup\"></a><a href=\"https://www.meetup.com/Granada-WordPress-Meetup\">Granada</a> – <a href=\"https://www.meetup.com/Granada-WordPress-Meetup/events/290016526/\">¡Veamos el State of the Word 2022!</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Sevilla</a> – <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Watch Party Meetup y organizando el 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ea.png\" alt=\"🇧🇪\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup\">Antwerp</a> &#8211; <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup/events/290193048/\">Ad hoc meetup: State of the Word 2022 viewing party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\"></a><a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\">Faisalabad</a>&nbsp; – <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup/events/290061682/\">WordPress keynote address</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"🇨🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/geneva-wordpress\"></a><a href=\"https://www.meetup.com/geneva-wordpress\">Genève (Geneva)</a> – <a href=\"https://www.meetup.com/geneva-wordpress/events/289943099/\">State of the Word “Watch Party” et plus/and more (FR/EN) WordPress</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ed-1f1f9.png\" alt=\"🇭🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\">Port-au-Prince</a> – <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup/events/289909938/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ec.png\" alt=\"🇧🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sofia-Meetup\">Sofia – </a><a href=\"https://www.meetup.com/WordPress-Sofia-Meetup/events/289915099/\">“State of the Word 2022” watch party!</a></li>\n</ul>\n\n\n\n<p>If you are planning a watch party for State of the Word and have questions, please email support@wordcamp.org. A member of the WordPress community team will assist you in the best way possible.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.1.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2022 19:51:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"6.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13918\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:244:\"WordPress 6.1.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.1 on 01 November 2022. You can review a summary of the key changes in this release by visiting WordPress.org/news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9925:\"\n<h2 class=\"wp-block-heading\">WordPress 6.1.1 is now available</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.1.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">29 bug fixes in Core</a> and <a href=\"https://github.com/WordPress/gutenberg/compare/ca07aa8354a1131dbabcc36dfcaf70e0c0891f54...6566f5fe9ece6ad5ae550349d3b1f0944a011040\">21 bug fixes</a> for the block editor. WordPress 6.1.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/11/11/wordpress-6-1-1-rc1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-2/\">version 6.2</a> planned for 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.1.1.zip\">download WordPress 6.1.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-6-1-1/\">version 6.1.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.1.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>.</p>\n\n\n\n<p>WordPress 6.1.1 would not have been possible without the contributions of more than 105 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">Andre</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjorn2404/\">bjorn2404</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a>, <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a>, <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">jeffpaul</a>, <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a>, <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a>, <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a>, <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a>, <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, and <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C03LZ88NX6G\">#6-1-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WP Briefing: Episode 43: Openverse &amp; Photo Directory– What Are They, and How Are They Different?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wordpress.org/news/2022/11/episode-43-openverse-photo-directory-what-are-they-and-how-are-they-different/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=13890\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"Join Josepha as she explores the differences between Openverse &#38; Photo Directory, two resources for openly licensed media in the WordPress project.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2022/11/WP-Briefing-043-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9040:\"\n<p>In the forty-third episode of the WordPress Briefing, Josepha Haden Chomphosy explores two resources for openly licensed media in the WordPress project&#8211; Openverse and Photo Directory&#8211; and how they differ from one another!</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/photos/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/photos/\">Photo Directory Make Page</a><br><a href=\"https://wordpress.org/photos/submit/\" data-type=\"URL\" data-id=\"https://wordpress.org/photos/submit/\">Submit a Photo to the Photo Directory</a><br><a href=\"https://make.wordpress.org/openverse/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/openverse/\">Openverse Make Page</a><br><a href=\"https://github.com/WordPress/gutenberg/issues/44496\" data-type=\"URL\" data-id=\"https://github.com/WordPress/gutenberg/issues/44496\">Openverse Call for Contributions: Block Editor Integration</a><br><a href=\"https://wordpress.org/download/\" data-type=\"URL\" data-id=\"https://wordpress.org/download/\">Download WordPress 6.1</a><br><a href=\"https://make.wordpress.org/docs/?p=13761\" data-type=\"URL\" data-id=\"https://make.wordpress.org/docs/?p=13761\">Docs Team Contributor Day Recap Post</a><br><a href=\"https://wp.me/p4FYxH-1XH\" data-type=\"URL\" data-id=\"https://wp.me/p4FYxH-1XH\">Hallway Hangout Block Themes (Video)</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-13890\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:27] </strong></p>\n\n\n\n<p>About 18 months ago, the Openverse project became part of the WordPress open source project, and at roughly the same time, we also welcomed the Photo Directory.</p>\n\n\n\n<p>Since that time, we&#8217;ve seen growth in teams supporting both of these initiatives. But if you&#8217;re not involved in the day-to-day, it can be hard to know how those two things fit together or if they fit together at all.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>Today, let&#8217;s take a brief tour of those two projects and why they came to be.&nbsp;</p>\n\n\n\n<p>In my timeline, work on the Photo Directory started before the work on Openverse, so that&#8217;s where we&#8217;ll start.</p>\n\n\n\n<p>For as long as I can remember, the WordPress community has raised the need for WordPress-first ways to have and host GPL-compatible photos for use in themes, site builds, and marketing efforts as a whole. As recently as 2016, that was still coming up as a question at various flagship events and among the career photographers that contribute their time to WordPress.</p>\n\n\n\n<p>So in 2017 and 2018, as attention started to turn toward rebuilding the CMS using blocks, it dropped down the list of priority items. But it never really went away as a thing that people were hoping we could do for the project as a whole. So in 2019, it was becoming clear that having open source-first tools of all varieties for people whose businesses were built on our software would help broaden the availability of the open source freedoms we believe in.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00]&nbsp;</strong></p>\n\n\n\n<p>This began the work on the Photo Directory with the intention of providing a GPL-friendly, community-driven repository of images. It has since launched, and we have photos in it now. We have a whole team around it. It&#8217;s wonderful. But that is how that all kind of came to be.&nbsp;</p>\n\n\n\n<p>Openverse, on the other hand, was launched as CC Search in 2019 with the laudable mandate to increase the discoverability and accessibility of open access media.</p>\n\n\n\n<p>Late in 2020, while work on the Photo Directory was underway, Matt shared with me that the team was looking for a new project home. When I first met with them, they shared an overview of the product, which they shorthanded as an open source search engine that searches openly licensed images. We were working on a repo of openly licensed images, so clearly, this was all written in the stars. And so you might be asking yourself at this point, great, how does it work together?</p>\n\n\n\n<p>I think for most of us, the timeline there kind of covers the question of what is the difference between these two things.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00]&nbsp;</strong></p>\n\n\n\n<p>But because I never know which of you will want to strike up a conversation about open source on an elevator, I&#8217;ve also got the elevator pitch version.&nbsp;</p>\n\n\n\n<p>Openverse is an open source search engine that searches, indexes, and aggregates copy left media from across the web using sources such as WordPress&#8217;s Photo Directory, Flickr&#8217;s CC Tagged Media, and Wikimedia, to name just a few.&nbsp;</p>\n\n\n\n<p>Another key difference between the Photo Directory and Openverse is that in order to contribute to the Photo Directory, now that it&#8217;s all built, that&#8217;s mostly done by submitting photos or reviewing photos. So you don&#8217;t really need to be a developer to join in.&nbsp;</p>\n\n\n\n<p>Openverse is not only a developer-centric contribution opportunity, but it also uses a different tech stack than WordPress as a whole. So it&#8217;s a good place for folks to go if they&#8217;re looking to broaden their horizons.</p>\n\n\n\n<p>So that&#8217;s your elevator pitch of what Openverse is and how it uses the Photo Directory.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]&nbsp;</strong></p>\n\n\n\n<p>You have a couple of ways that you can get involved with these two projects. For the Photo Directory, as I mentioned at the start, you can always contribute photos, and they could always use more photo contributions.</p>\n\n\n\n<p>I&#8217;ll include a link to the submission guidelines in the show notes below, and as I mentioned, it is a no-code way to give back to the WordPress project. So no code, development environments, and testing skills are required. The Photo Directory team also could always use more contributors to help with the moderating of photo submissions.</p>\n\n\n\n<p>And so I&#8217;ll link to their making WordPress page in the show notes as well so that you can get started there.&nbsp;</p>\n\n\n\n<p>And as I mentioned before, Openverse is an aggregator, so it doesn&#8217;t host any media itself, but it is always accepting suggestions for new GPL-compatible media providers. I&#8217;ll link the area where you can leave suggestions in the show notes as well.</p>\n\n\n\n<p>And if you are more code inclined, there&#8217;s an open issue for adding Openverse browsing to the block editor right now.&nbsp;&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>So I&#8217;ll link that issue in the show notes in case you thought to yourself, gosh, that sounds like my most favorite thing to do. That is where you can go.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:12]</strong></p>\n\n\n\n<p>This leads us now to our small list of big things.</p>\n\n\n\n<p>In case you missed it, WordPress 6.1 is now available. It launched on November 1st. Late, late, late in the day, and so it was easy to miss if you&#8217;re used to seeing it at a particular time. We were about six hours later than usual. But if you go to wordpress.org/download, you can get your own copy there.</p>\n\n\n\n<p>The second thing on our small list of big things is that the Docs team had a contributor day. It was excellent. There&#8217;s a recap post up. I will include that in the show notes.&nbsp;</p>\n\n\n\n<p>And then the final thing is that there was a recent hallway hangout that talked about the site editor and block themes.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:06:00]&nbsp;</p>\n\n\n\n<p>The video for that is also published. I will also share that in our show notes.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 28 Dec 2022 00:34:17 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 22 Dec 2022 12:00:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no');
  291. INSERT INTO `wp_options` VALUES (184,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1672230857','no');
  292. INSERT INTO `wp_options` VALUES (185,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1672187657','no');
  293. INSERT INTO `wp_options` VALUES (186,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1672230859','no');
  294. INSERT INTO `wp_options` VALUES (187,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Post Status: Community Wrap-up Week Ending December 23\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/community-wrap-up-week-ending-december-23/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3120:\"<h2>The WordPress Community is a Wonderful Place to Be</h2>\n\n\n\n<h3 id=\"h-the-wp-community-collective\">The WP Community Collective</h3>\n\n\n\n<p>The WP Community Collective aims to address some of these ongoing challenges by creating community-funded <a href=\"https://www.thewpcommunitycollective.com/fellowships/\">Fellowships</a> to financially support individual contributions to the WordPress project and community.</p>\n\n\n\n<p>“We hope that the WP Community Collective can help bridge the gap between the passion people feel for WordPress, and the very real and practical limits of volunteer contribution,” said founding co-director Sé Reed.&nbsp;&nbsp;</p>\n\n\n\n<p>The WPCC’s first initiative is the <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">WPCC Accessibility Fellowship</a>. They are currently in discussion with an existing unsponsored core contributor to hold the inaugural role of Accessibility Fellow, and have launched the fundraising efforts to fund this Fellowship: <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812</a></p>\n\n\n\n<p>To learn more or to get involved visit <a href=\"https://www.thewpcommunitycollective.com/\">thewpcommunitycollective.com</a></p>\n\n\n\n<h2 id=\"h-post-status-membership-deal-through-december-31\">Post Status Membership Deal through December 31!</h2>\n\n\n\n<p>In the spirit of Black Friday/Cyber Monday, Post Status is offering $100 off any annual membership through December 31. Why? Because we love you! Membership gets you into our Slack community, too!</p>\n\n\n\n<p>Use discount code BFCM for your best Post Status membership deal ever!</p>\n\n\n\n<h2 id=\"h-in-the-spotlight\">In the Spotlight</h2>\n\n\n\n<p>Post Status professional member, <a href=\"https://poststatus.com/member-spotlight-mark-andrew-nordstrom/\">Mark-Andrew Nordstrom</a>. Mark-Andrew is skateboarding across the world and through life, building WordPress websites at no charge, believing in open source everything. And that life should not be transactional.</p>\n\n\n\n<h2 id=\"h-weekly-member-huddles\">Weekly Member Huddles</h2>\n\n\n\n<p>No huddle for the week of December 25. We’ll be back in 2023.</p>\n\n\n\n<p>Wednesdays <a href=\"https://us02web.zoom.us/meeting/register/tZYuf-GrpjksH91MJiGiaIwzpHWzhWSgOrKL\">Sign Up</a></p>\n\n\n\n<h2 id=\"h-quick-links\">Quick Links:</h2>\n\n\n\n<ul>\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> February 17-19, 2023</li>\n\n\n\n<li><a href=\"https://yoast.com/yoastcon/\">YoastCon</a> is back May 10 & 11</li>\n\n\n\n<li>Podcast: <a href=\"https://podcast.lifterlms.com/build-the-coaching-business/\">How to Build the Coaching Business that Lights You Up with Holly Chantal</a> on LMSCast</li>\n\n\n\n<li>Podcast: <a href=\"https://wpbuilds.com/2022/12/20/this-week-in-wordpress-235/\">This Week in WordPress</a> on WPBuilds</li>\n\n\n\n<li>WordCamps are back. <a href=\"https://central.wordcamp.org/schedule/\">Check the schedule online</a>!</li>\n</ul>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Dec 2022 19:37:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"WPTavern: Commercial and Community Categorization Is Live on WordPress.org Theme and Plugin Directories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140559\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/commercial-and-community-categorization-is-live-on-wordpress-org-theme-and-plugin-directories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3508:\"<p>One of Matt Mullenweg&#8217;s announcements at the <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\">2022 State of the Word</a> was the addition of new taxonomies for the theme and plugin directories that will help users more quickly ascertain the purpose of the extensions they are considering. </p>\n\n\n\n<p>With nearly 60,000 free plugins available and more than 10,000 free themes, it&#8217;s not always immediately evident which extensions are officially supported by the community and which have commercial upgrades and support available.</p>\n\n\n\n<p>The new &#8220;Community&#8221; and &#8220;Commercial&#8221; designations were created to demystify the selection process and empower users to find plugins and themes that suit their needs. They were <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">live on WordPress.org</a> last week and plugin and theme authors were invited to opt into the categorization. The categories are visible in the sidebar of the listings. </p>\n\n\n\n<p>In the example below, Akismet, Automattic&#8217;s commercial spam plugin that is bundled with WordPress, has the new Commercial category applied, indicating it is free but offers additional paid commercial upgrades or support. </p>\n\n\n\n<img />\n\n\n\n<p>The categories do not yet seem to be as widely applied to themes, but one example is all the default themes fall under the &#8220;Community Theme&#8221; designation, indicating that they are developed and supported by a community as opposed to being a part of a commercial endeavor.</p>\n\n\n\n<img />\n\n\n\n<p>There are currently just two categories, but meta contributor Samuel (Otto) Wood said this effort is &#8220;the start of a broader categorization of plugins and themes.&#8221; He outlined how plugin and theme authors can opt into the new categorization feature:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>To opt in a plugin or theme, email&nbsp;<a href=\"mailto:plugins@wordpress.org\">plugins@wordpress.org</a>, or&nbsp;<a href=\"mailto:themes@wordpress.org\">themes@wordpress.org</a>, and simply ask to opt into it. This is a manual process for now. In the future, we will be adding a method for plugins and themes to do it themselves.</p>\n\n\n\n<p>Once your plugin or theme is added, you will get a new feature (on the advanced tab for plugins, or at the bottom of the listing page for themes). For both cases, it’s a simple&nbsp;URL&nbsp;entry.</p>\n</blockquote>\n\n\n\n<p>For Commercial extensions the URL is a support link. Community extension URLs will be labeled as a contribute link.</p>\n\n\n\n<p>Several participants in the comments of the announcement suggested that commercial-tagged&nbsp;plugins and themes should also have the option to include a &#8220;contribute&#8221; link since they are open source software. Wood&#8217;s response seems to indicate the URL is more about where to direct support.</p>\n\n\n\n<p>&#8220;This is a matter of categorization,&#8221; he said. &#8220;Community plugins are those that are mainly supported by a community of users. Commercial plugins are those primarily supported by a commercial profit-seeking entity.&#8221;</p>\n\n\n\n<p>Once these categorizations are more widely adopted, it will be interesting to see if the theme and plugin directories will add the ability to filter search results using these tags. This would allow users to narrow down the results to be in line with their expectations for support. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Dec 2022 04:46:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140536\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4073:\"<p><a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> was released today with a major update to the Site Editor&#8217;s interface that makes it feel more unified as a design tool. </p>\n\n\n\n<p>In August, Gutenberg designer James Koster shared some mockups for <a href=\"https://wptavern.com/james-koster-shares-design-explorations-that-transform-wordpress-site-editor-into-a-more-visual-user-friendly-tool\">updating the Site Editor to include a “navigable frame”</a> where users can select from a menu of features and styles on the left. This was one answer to what Koster identified as unbalanced feature weighting, a critical design flaw that he said was negatively impacting users’ experience with the editor. </p>\n\n\n\n<p>In October, contributors began <a href=\"https://wptavern.com/gutenberg-contributors-explore-a-new-browse-mode-for-navigating-the-site-editor\">moving this idea forward</a>, and now the first iteration of the new &#8220;browse mode&#8221; is making its debut in Gutenberg 14.8. Automattic-sponsored contributor Ryan Welcher published a video demonstrating the new UI for navigating the Site Editor:</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> release post\n\n\n\n<p>Version 14.8 also introduces Style Block, which is now nestled into the Global Styles panel. It offers a way to visualize how global style changes will affect blocks by previewing them (both core and third-party blocks) in a resizable panel. This is especially useful when a theme has many style variations that would otherwise be time intensive to save and then preview with various blocks. It helps users answer the question, &#8220;How are these styles going to look with my blocks?&#8221; Styles can also be <a href=\"https://github.com/WordPress/gutenberg/pull/45719\">previewed for individual blocks</a>.</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">Gutenberg 14.8</a> release post\n\n\n\n<p>Users who have been missing the Custom CSS panel from the Customizer will be delighted to know that Gutenberg 14.8 adds custom CSS to the <strong>Styles > Custom</strong> panel in the Site Editor. This first iteration is shipping as Experimental, so users who want to test it can enable &#8220;Global styles custom CSS&#8221; under the Gutenberg > Experiments menu in the admin.</p>\n\n\n\n<p>When checking out patterns in the inserter, hovering over a pattern will now reveal its title. The invisibility of pattern titles <a href=\"https://github.com/WordPress/gutenberg/issues/45595\">becomes an issue when patterns are visually similar to one another</a> with slight variations. Having the title be visible helps users sort through and select the best pattern for their needs.</p>\n\n\n\n<img />\n\n\n\n<p>The Navigation block has several updates that should improve the experience of building and editing menus:</p>\n\n\n\n<ul>\n<li>Navigation block: Add page list to Link&nbsp;UI&nbsp;transforms in Nav block. (<a href=\"https://github.com/WordPress/gutenberg/pull/46426\">46426</a>)</li>\n\n\n\n<li>Navigation block: Add location-&gt;primary to fallback nav creation for classic menus. (<a href=\"https://github.com/WordPress/gutenberg/pull/45976\">45976</a>)</li>\n\n\n\n<li>Navigation block: Update fallback nav creation to the most recently created menu. (<a href=\"https://github.com/WordPress/gutenberg/pull/46286\">46286</a>)</li>\n\n\n\n<li>Navigation block: Add a ‘open list view’ button. (<a href=\"https://github.com/WordPress/gutenberg/pull/46335\">46335</a>)</li>\n\n\n\n<li>Navigation block: Removes the header from the navigation list view in the experiment. (<a href=\"https://github.com/WordPress/gutenberg/pull/46070\">46070</a>)</li>\n</ul>\n\n\n\n<p>Gutenberg 14.8 includes dozens of enhancements and bug fixes beyond these highlights. Check out the <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">release post</a> for the full changelog.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 23:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WordPress.org blog: WP Briefing: Episode 45: State of the Word Reflections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14257:\"<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br /><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br /><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br /><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2020 WordPress Survey!</a><br /><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br /><a href=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br /><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br /><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br /><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br /></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: ClassicPress at a Crossroads, Directors Consider Re-Forking WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/classicpress-at-a-crossroads-directors-consider-re-forking-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8012:\"<p>ClassicPress is <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/80\">polling its users</a> to determine the next step for the software. The project is a pared back fork of WordPress based on version 4.9 that uses the TinyMCE classic editor as the default option with no block editor. It&#8217;s run under a non-profit organization called the ClassicPress Initiative.</p>\n\n\n\n<p>In July 2022, the project <a href=\"https://wptavern.com/classicpress-on-the-rocks-directors-resign-new-leadership-installed\">appeared to be on the rocks</a> when its directors resigned, saying that the community felt they were now hindering the progress of ClassicPress. The organization was struggling to meet its required financial support but has since rallied and is in a more stable place after moving the donation process to <a href=\"https://opencollective.com/classicpress\">Open Collective</a>.</p>\n\n\n\n<p>In a recent forum post titled &#8220;<a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446\">The Future of ClassicPress</a>,&#8221; one of the project&#8217;s directors, Viktor Nagornyy, presented the community with two paths: re-fork ClassicPress using WordPress 6.0, or continue as-is. </p>\n\n\n\n<p>&#8220;Over the past few years, our core team has been working on improving ClassicPress and backporting features from WordPress,&#8221; Nagornyy said. &#8220;As WordPress continued to evolve, ClassicPress got a bit behind in adding new features as the focus became PHP 8+ compatibility.&#8221;</p>\n\n\n\n<p>An exploratory fork of WordPress 6.0 with the block editor removed exists in a GitHub repository called <a href=\"https://github.com/wp-cms/wp-cms\">WP-CMS</a>. It is not finished but could potentially become ClassicPress 2.0. This option has the benefit of helping the project catch up to WordPress and improve compatibility with more recent versions of PHP, and open up more plugins and themes for users that require 5.0+ in order to be compatible. The downside is that it will take months to complete with ClassicPress&#8217; limited number of contributors and ClassicPress 1.x would need to be maintained in terms of security for some time.</p>\n\n\n\n<p>The alternative is continuing to maintain the project as it is with no requirement to maintain separate versions. Nagornyy identified the cons of this approach:</p>\n\n\n\n<ul>\n<li>Our small core team will continue to focus on PHP compatibility</li>\n\n\n\n<li>Backporting from WP is prioritized, so new ClassicPress features might not happen</li>\n\n\n\n<li>We won’t be able to catch up with WordPress, functions/features will be missing</li>\n\n\n\n<li>Plugins/themes compatible with WordPress 5+ would be incompatible with ClassicPress</li>\n</ul>\n\n\n\n<p>The project is now at a crossroads considering the two options, which has forced the community to reexamine the purpose of ClassicPress. </p>\n\n\n\n<p>&#8220;So the real question is ClassicPress a Pre-Wordpress 5.0 or just WordPress without Gutenberg?&#8221; founding committee member Daniele Scasciafratte said.</p>\n\n\n\n<p>&#8220;Considering also that CP is based on a codebase of 5 years ago and the web is moving on, I think that we should move to Re-Fork and find a way to automatize it as much possible and simplify it.&#8221;</p>\n\n\n\n<p>ClassicPress core committer Álvaro Franz, who is also the author of the WP-CMS fork based on WP 6.0, <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/46\">said</a> he is unwilling to help with a continuation of the current version.</p>\n\n\n\n<p>&#8220;I don’t see the point in working on an outdated version of something that has already been improved by many great developers at WordPress (as stated by <a href=\"https://forums.classicpress.net/u/mte90\">@Mte90</a>, there have in fact been A LOT of improvements),&#8221; Franz said. &#8220;But I can take care of v2, since I already am the author of the mentioned fork, I can help with keeping WP-CMS up with WordPress and then using that as a base for CP v2.&#8221;</p>\n\n\n\n<p>WordPress core contributor Joy Reynolds <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/60\">commented</a> on the thread, indicating that ClassicPress has a grim future ahead if it keeps struggling to backport all the improvements made after 4.9. She contends that continuing on the same path leads to a dead end, given the project&#8217;s small contributor base:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>The whole point of backporting from WP is because they have thousands of developers, millions of users testing every combination of version and plugin and host to find problems (plus a testing team), a security team, and a performance team. CP has none of that and it’s kind of silly to not take advantage of their efforts. But the more things we ignore or fall behind on, the harder it is to backport anything.</p>\n\n\n\n<p>There are many things that continue to evolve, outside of WP, like PHP, Javascript, CSS, HTML, and various bundled tools (like jQuery and TinyMCE and PHPMailer and Simple Pie and Requests…).</p>\n\n\n\n<p>CP can’t stand still at 4.9. That’s dead. But if you tried to backport all the PHP8 stuff, you’d find it very difficult because of all the formatting changes they made, plus all the bug fixes, plus all the new features. The new fork bypasses the backport problem by taking it all at once and deleting the block stuff that is unwanted.</p>\n\n\n\n<p>I personally think that CP doesn’t have any features of value that WP doesn’t have. It has a bunch of fixes and a few features from WP, but it’s a dead end, especially with the limited roster of people who contribute code.</p>\n</blockquote>\n\n\n\n<p>In a contrasting comment, ClassicPress founding committee member Tim Kaye distilled why the poll seems to be so divisive.</p>\n\n\n\n<p>&#8220;If all that people want is WordPress without Gutenberg, there’s absolutely no need for ClassicPress at all since there’s already a plugin that provides what you’re looking for,&#8221; Kaye said. &#8220;It’s called <a href=\"http://wordpress.org/plugins/classic-editor-addon/\">Classic Editor</a>.</p>\n\n\n\n<p>&#8220;The idea that the question is whether CP should essentially mirror a stripped-down version of WP or not is therefore entirely misconceived. Those who desire that objective should be using that plugin. It’s really that simple.</p>\n\n\n\n<p>&#8220;CP (and the work that goes into it) only makes sense if it’s its own CMS with its own decision-making process and its own features.&#8221;</p>\n\n\n\n<p>Former ClassicPress contributor @ozfiddler, who likened working on the project to &#8220;polishing the brass on a rudderless ship,&#8221; <a href=\"https://forums.classicpress.net/t/community-poll-the-future-of-classicpress/4446/65\">suggested</a> ClassicPress identify a destination before choosing between two paths. </p>\n\n\n\n<p>&#8220;But then, that’s the problem with CP &#8211; it never really knew where it was going, beyond &#8216;WP-without-Gutenberg,\'&#8221; @ozfiddler said. &#8220;So, it means you get statements like this listed as a <em>con</em> for one of the options: &#8216;We won’t be able to catch up with WordPress.&#8217;</p>\n\n\n\n<p>&#8220;When I was contributing to CP I always thought that the ambitions greatly outweighed the available resources. I occasionally suggested a drastic pruning back of the project, but this was always met with widespread disapproval. I still think that if CP is going to survive at all (and I very much doubt it) then you will need to define a narrower subset of users and focus your limited efforts on catering to them.&#8221;</p>\n\n\n\n<p>ClassicPress&#8217; poll and the 80 comments in the discussion offer a glimpse into the frustrating reality of maintaining a fork of a fast-moving, large project like WordPress. So far there are 31 votes and Nagornyy plans to close it within the next few days if it doesn&#8217;t receive any new votes.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 02:21:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Post Status: Annual Survey • WordPress Playground • Plugins/themes Categorization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=146066\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://poststatus.com/annual-survey-wordpress-playground-plugins-themes-categorization/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16570:\"<h2 id=\"h-this-week-at-wordpress-org-december-19-2022\">This Week at WordPress.org (December 19, 2022)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What are the four freedoms of open source and how do they impact us? Get a look in the Celebration of the Four Freedoms of Open Source. Try out the new WordPress Playground to run WordPress in the browser. <strong>Plugin and Theme developers note the new categorizations: Canonical, Community, and Commercial. </strong> </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_alertTriangle\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Annual Survey, WordPress Playground, Plugins/themes Categorization, Four Freedoms</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"🛝\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/26a0.png\" alt=\"⚠\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\">The Month in WordPress – November 2022</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-3 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2022/12/16/accessibility-team-meeting-agenda-december-16-2022/\">Accessibility Team Meeting Agenda: December 16, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-reps-for-2023/\">Community Team Reps for 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/20/community-team-2022-goals-recap/\">Community Team 2022 Goals Recap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/19/diverse-speaker-training-group-wpdiversity-2022-year-end-report/\">Diverse Speaker Training Group (#WPDiversity) 2022 Year-End Report</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">Report: #WPDiversity Inclusion and Diverse Speaker Workshops October and November 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/16/twitter-links-on-wordcamp-websites/\">Twitter links on WordCamp websites</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/core-team-reps-for-2023-and-beyond/\">Introducing new Core Team Reps for 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/help-us-test-the-sqlite-implementation/\">Help us test the SQLite implementation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/19/a-week-in-core-december-19-2022/\">Two Weeks in Core – December 19, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/21/editor-chat-summary-wednesday-december-14-2022/\">Editor chat summary: Wednesday, December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/dev-chat-agenda-december-21-2022/\">Dev chat agenda, December 21, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/20/building-a-book-review-grid-with-a-query-loop-block-variation/\">Building a book review grid with a Query Loop block variation</a></li>\n</ul>\n\n\n\n<h2 id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2022/12/19/design-share-dec-5-dec-16/\">Design Share: Dec 5–Dec 16</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/documentation-team-update-december-12-2022/\">Documentation Team Update – December 12, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/15/voting-for-hosting-team-reps-2023/\">Voting for Hosting Team Reps 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/19/notes-global-marketing-team-meeting-december-14-2022/\">Notes: Global Marketing Team meeting, December 14, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">Refreshing&nbsp;the WordPress Showcase</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2022/12/20/community-meeting-recap-20-december-2022/\">Community Meeting Recap (20 December 2022)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/20/performance-team-meeting-summary-20-december-2022/\">Performance Chat Summary: 20 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">Polyglots Monthly Newsletter: December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/weekly-polyglots-chat-dec-21-2022-1300-utc/\">Weekly Polyglots Chat – Dec. 21, 2022 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/20/agenda-trac-triage-session-dec-21-2022-900-utc/\">Agenda: Trac triage session – Dec. 21, 2022 (9:00 UTC)</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">Plugins/themes categorization</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/19/plugin-review-team-19-december-2022/\">Plugin Review Team: 19 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2022/12/17/week-in-test-16-december-2022/\">Week in Test: 16 December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">FSE Program Testing Call #19: Running Through Refinements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/test-team-update-12-december-2022/\">Test Team Update: 12 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/themes-team-update-december-13-2022/\">Themes team update December 13, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/21/december-2022-faculty-meeting/\">December 2022 Faculty Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/19/meeting-agenda-for-december-20-2022/\">Meeting Agenda for December 20, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/17/training-team-meeting-recap-for-december-13-2022/\">Training Team Meeting Recap for December 13, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account-2\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=learn-wordpress-end-of-year-social\">Learn WordPress end-of-year social</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-creating-a-photography-website-with-the-block-editor\">APAC: Creating a photography website with the block editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-photography-website-with-the-block-editor\">Creating a photography website with the block editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-patterns-reusable-blocks-and-block-locking\">APAC: Patterns, reusable blocks and block locking</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=patterns-reusable-blocks-and-block-locking\">Patterns, reusable blocks and block locking</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-make-custom-templates-in-the-site-editor-2\">Let’s make custom templates in the Site Editor!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-make-custom-templates-in-the-site-editor\">Let’s make custom templates in the Site Editor!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%B5%E3%82%A4%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BF%E3%83%BC%E3%81%A7%E3%81%AE%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%AB%E6%85%A3%E3%82%8C%E3%82%88-2\">サイトエディターでのテンプレート編集に慣れよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%82%B5%E3%82%A4%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BF%E3%83%BC%E3%81%A7%E3%81%AE%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%AB%E6%85%A3%E3%82%8C%E3%82%88\">サイトエディターでのテンプレート編集に慣れよう!</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/manage-your-block-theme-fonts-with-create-block-theme/\">Manage your block theme fonts with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/the-key-to-locking-blocks/\">The Key to Locking Blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/templates/\">Using Page Templates</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">Streamline your Block Theme development with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/trabalhando-com-estilos-globais/\">Trabalhando com estilos globais</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/padding-versus-margin/\">Padding Versus Margin</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://getcomposer.org/changelog/2.5.0\">Composer 2.5 released</a></li>\n\n\n\n<li><a href=\"https://tek.phparch.com/\">Registration open for PHP Tek</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 16:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: #56 – Chris Badgett on Using WordPress for Online Courses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140510\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/podcast/56-chris-badgett-on-using-wordpress-for-online-courses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52906:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how to use WordPress as an education platform.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from, and hopefully get you or your idea featured on the show. Head over to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Chris Badgett. Chris is behind LifterLMS, which is a learning management system built as a WordPress plugin. He&#8217;s been in the WordPress space since 2008, and has moved his agency away from general website building to concentrate upon e-learning membership sites, course creation and marketing automation.</p>\n\n\n\n<p>He&#8217;s on the podcast today to talk about how WordPress and e-learning are a good fit. Although there&#8217;s a flourishing SaaS side to e-learning, Chris is convinced that WordPress allows you to make your LMS site exactly what you want. You won&#8217;t be facing the limitations imposed upon you by the platform. And can, if you have the time and skills, modify almost anything to suit your brand and niche.</p>\n\n\n\n<p>We begin by talking through how well a WordPress based LMS site can scale. Should your course be a runaway success, you want to be aware of how you&#8217;re going to have to manage the resources that your site will need. There&#8217;s a lot of dynamic content being displayed to your users, and this will affect the tech stack that you&#8217;ll need to deploy.</p>\n\n\n\n<p>We then get into a broad conversation about how online courses have taken off in the last few years. Even before global lockdowns, individuals and businesses were adopting online courses in innovative ways, to educate their customers, staff, and the wider public. Chris&#8217;s data points to the fact that this growth seems set to continue.</p>\n\n\n\n<p>There&#8217;s a real understanding now that in many niches, the course curriculum needs to be adapted and amended continually. This is extremely easy to do with an LMS. You create new content, click publish, and notify your users that the new material is there.</p>\n\n\n\n<p>We also discuss the reality of actually making a course. Like writing a book, the idea of creating a course is easy to conceive, but hard to execute. There&#8217;s the content, the branding, the marketing, the updates, and much more. Chris has some advice to help you get over the bumps in the road if you&#8217;ve decided that you want to dip your feet into online course creation.</p>\n\n\n\n<p>It&#8217;s an interesting podcast and digs into yet another area where WordPress can help people thrive online.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to wptavern.com/podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Chris Badgett.</p>\n\n\n\n<p>I am joined on the podcast today by Chris Badgett. Hello Chris.</p>\n\n\n\n<p>[00:04:16] <strong>Chris Badgett:</strong> Hey, Nathan. Great to be here.</p>\n\n\n\n<p>[00:04:17] <strong>Nathan Wrigley:</strong> Yeah, thank you for joining me. Chris and I have been in touch with one another over many years, but it was very nice in the WordCamp US, which was recently something that I attended to find Chris there. Very nice to meet you in person.</p>\n\n\n\n<p>[00:04:29] <strong>Chris Badgett:</strong> That was great.</p>\n\n\n\n<p>[00:04:30] <strong>Nathan Wrigley:</strong> Chris is on the podcast today. He&#8217;s going to be talking to us about e-learning or LMSs, all of the different ways that you can do that with a WordPress website. But if you don&#8217;t know Chris, you&#8217;re about to find out why he&#8217;s an expert in this and why he&#8217;s got the chops to be talking about it.</p>\n\n\n\n<p>Chris, would you just spend a moment or two orientating our listeners, giving them an idea of, a, your relationship with WordPress. We&#8217;re on a WordPress podcast after all, but also why you are somebody who is an expert in e-learning.</p>\n\n\n\n<p>[00:05:00] <strong>Chris Badgett:</strong> Absolutely. So I&#8217;ve been at WordPress since 2008. Around that time I started blogging. I was actually living in Alaska. I used to run sled dogs up there, and I started on the side building WordPress sites for myself and then later for clients, and I kind of accidentally started an agency. And fast forward the timeline a little bit, I started blogging about some courses that I was creating because I was trying to create some more passive income for my family, my newborn kids and everything.</p>\n\n\n\n<p>I started blogging about how I did that with WordPress, and this is back in 2000 and 11 or so. Over time I built an agency to about 17 people. People started responding to all my, my blogs on building an LMS website, creating online courses with WordPress. A lot of my blogs, nothing ever happened, but I clearly struck a nerve and the market was interested in this information.</p>\n\n\n\n<p>Our agency started focusing on that. Those are the kind of clients we attracted. And ultimately the clients wanted this perfect e-learning membership site, course creation, marketing automation tool that didn&#8217;t exist. So we built that in 2013 and that was the origin of Lifter LMS. Which is one of the leading learning management systems for WordPress. So I&#8217;ve been a course creator. I&#8217;ve been an agency guy, and I&#8217;ve been in this niche for about a decade here.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> Nice. When you initially launched, it sounds like it was held together by sticky tape. You were literally making it up as you went along. This is the first iteration where you were designing it. How did that go? Were you just cobbling together a bunch of disparate plugins and figuring it all out piece by piece?</p>\n\n\n\n<p>[00:06:42] <strong>Chris Badgett:</strong> I would say one of my talents as an entrepreneur is team building, and I&#8217;ve had some really talented developers with me from the agency side. And because I was so close to our ideal customer, as a product guy, working from first principles. We took one of our developers, his name was Mark, off of client work, and gave him a spec to build. He built the first version of Lifter LMS in about 60 days from scratch.</p>\n\n\n\n<p>No cobbling together anything. And then we launched it to the world, for a closed beta period. Opened it for a week. We got 42 customers in that week. We said if we didn&#8217;t get a hundred that we would shut it down and go back to agency work, but I&#8217;m kind of stubborn. So we, uh, we kept going and continued to develop Lifter LMS. I&#8217;m very much as an entrepreneur where the customers kind of pull the product out of you.</p>\n\n\n\n<p>I&#8217;m not trying to push product on the market. So I&#8217;m a really good listener. I&#8217;m a big community guy. I&#8217;m also decent at filtering and focusing and weaving my own vision in with what the market wants. So that&#8217;s how Lifter started.</p>\n\n\n\n<p>[00:07:47] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s really interesting. The WordPress space is obviously full of websites, different things you can do with it, e-commerce, LMSs, you name it. The truth is as well that there&#8217;s a really thriving SaaS side to LMSs. So I&#8217;m just curious if you could give us, being that we&#8217;re on a WordPress podcast, if you could give us a bunch of different reasons why WordPress is a really great fit for an LMS. I mean, obviously we&#8217;re not trying to disparage the SaaS products out there. There&#8217;s going to be a whole bunch of reasons, I&#8217;m sure, why WordPress might be top of your list.</p>\n\n\n\n<p>[00:08:22] <strong>Chris Badgett:</strong> Yeah. And, and this, I&#8217;ll go back to the voice of the customer here. You know, there&#8217;s some great platforms out there, SaaS solutions like Kajabi, Teachable, Thinkific, Podia, there&#8217;s many others. In the early days, a lot of people were putting stuff on course and marketplaces like Udemy. Udemy as an example started enforcing pricing controls where you can only charge up to $50 for your course.</p>\n\n\n\n<p>That upset a lot of people. The SaaS solutions tend to look pretty cookie cutter. So people that really want to build like a unique brand and design get the longing to go to WordPress where they have unlimited brand and design flexibility. And then it&#8217;s really just a functionality thing.</p>\n\n\n\n<p>One of my customers who switched from one of the SaaS solutions, described it this way. He said that the SaaS that he was in, they were trying to conform him to it, like as a course creator and entrepreneur. But over here in WordPress he&#8217;s in the driver&#8217;s seat of what his vision is for his online learning platform.</p>\n\n\n\n<p>He&#8217;s not being put in a box. So that&#8217;s kind of the simple way to say it. Brand flexibility and just this whole ownership and control aspect. Because when you build a site like this, you&#8217;re not just building a brochure, you&#8217;re literally building a business asset. So to have more control over that is something that&#8217;s really important to a lot of people.</p>\n\n\n\n<p>[00:09:37] <strong>Nathan Wrigley:</strong> Yeah, I guess the same could be true in just about every sphere of WordPress, where there&#8217;s commercial rivals that are SaaS products. The customizability. The fact that you can make it your own and do whatever you like with it, given the time and development. Yeah, that&#8217;s the perfect answer really, isn&#8217;t it?</p>\n\n\n\n<p>Does WordPress scale well with LMSs? And what I mean by that is if we took a inexpensive hosting package and we dropped WordPress into that, and then we install one of the LMSs. It&#8217;s doing a lot of work. There&#8217;s a whole bunch of different things going on, and we can get into that a little bit later. Needless to say, there&#8217;s lots and lots of things happening. Are there constraints around the hosting and the tech stack that you need behind WordPress? Or does it actually function pretty well even on modest resources?</p>\n\n\n\n<p>[00:10:25] <strong>Chris Badgett:</strong> Well, not all plugins are created equal. Something like a WooCommerce, or one of the WordPress LMS plugins are, quote, heavier. They require a lot more resources. We have a lot of dynamic content, We have a lot of user interactions. So as platforms themselves, like a platform plugin, they require a lot of resources.</p>\n\n\n\n<p>That being said, performance is something we focused on and, I think the industry in general has to pay attention to because as your customers become more and more successful and get more and more users, the last thing you want to have happen is for your tool to start malfunctioning or cause the site to slow down or whatever.</p>\n\n\n\n<p>The reality is, yeah, you can start with the cheap, low end of the market hosting and you&#8217;re completely fine. When you start getting above like a thousand users, you need to start looking at bigger plans. We actually have a list on our website of the six options that we recommend. But, we have customers that have 50,000. There&#8217;s one person on there, because we have some telemetry data tracking that people opt into, where we collect just non-identifiable information just to see what people are doing.</p>\n\n\n\n<p>I&#8217;ve seen people with 800,000 users in just massive sites. At the end of the day, we work to create a performant plugin and we continually focus on performance. We actually work with hosting companies to improve performance together, which is awesome. There&#8217;s some great hosts out there that take a keen interest in that. Because they themselves as hosts are looking to attract high quality customers, which LMS websites can be, when they&#8217;re successful.</p>\n\n\n\n<p>When you do get into large concurrent users or you&#8217;re doing something really at scale, you are going to be spending a lot more on hosting. That&#8217;s just part of the game. But if you design your business model correctly for your school or your academy, or your membership site, whatever you call it. If you&#8217;re hosting bill jumps up from $30 a month to a hundred dollars a month, you&#8217;re fine. It&#8217;s just the real estate tax for your online business. And if it, even if it jumps up higher than that, you&#8217;re having a ton of people move through your platform and it&#8217;s, it&#8217;s just a cost of doing business.</p>\n\n\n\n<p>[00:12:35] <strong>Nathan Wrigley:</strong> Let&#8217;s just move sort of sideways, away from the tech and possibly away from WordPress just for a moment, and talk about the kind of people who may be interested in this. I&#8217;m imagining just like everybody, there&#8217;s a whole bunch of people who, if you like, they have the New Year&#8217;s resolution. want to do a course. I want to launch a course. I&#8217;ve got this area of expertise and I want the world to know about it. The world will be a better place after I&#8217;ve launched my course.</p>\n\n\n\n<p>And I imagine there&#8217;s quite a high attrition rate, where people have that and then they&#8217;re confronted with the reality of what&#8217;s actually involved. And the course doesn&#8217;t get launched. So just give us some broad outlines of the concerns and considerations you would put in front of people just to say, Okay, if you really are serious about this, bear these things in mind, because I imagine there&#8217;s quite a lot.</p>\n\n\n\n<p>[00:13:25] <strong>Chris Badgett:</strong> Yeah. I kind of think of us as having two markets. One is the WordPress professional who builds sites for clients and stuff like that. And the other is what I call the expert industry. And there&#8217;s other niches within e-learning besides the expert, which we also have, but, for that person who wants to take their knowledge, skills, and life experience and turn that into a product through an online course. I think this is not a new story, it&#8217;s an old story. I don&#8217;t know if you, Nathan, or anybody out there listening has ever had a vision of writing a book one day.</p>\n\n\n\n<p>[00:13:56] <strong>Nathan Wrigley:</strong> Oh yeah.</p>\n\n\n\n<p>[00:13:56] <strong>Chris Badgett:</strong> I have. It&#8217;s that same story. I haven&#8217;t written a book. I don&#8217;t know if you wrote your book Nathan?</p>\n\n\n\n<p>[00:14:01] <strong>Nathan Wrigley:</strong> Failed.</p>\n\n\n\n<p>[00:14:02] <strong>Chris Badgett:</strong> It&#8217;s the same thing, and I would argue, it&#8217;s almost a little harder for courses and stuff than a book, because a book is typing and words. With courses, you got to figure out the website. You start working with video and audio and instructional design and curriculum. All the stuff, it&#8217;s a lot. Really if I look across the patterns of the people that make it, there&#8217;s several things to mention here. One of &#8216;them, which I can go into more detail later, but just to drop it now, is you have to have a baseline of competency across five areas, either within yourself or your team, for it to even work at all.</p>\n\n\n\n<p>And so this is the fundamental thing. I call it the five hats problem. So you have to wear five hats. One is you actually have to have expertise. Two is you have to be an entrepreneur, which includes starting a business, marketing, all that stuff. You have to be a teacher. The ability to not just know something, but help somebody else learn it. You have to be a community builder, before the sale and then after the sale. And then you have to be a driver of technology and be able to use hardware and software and stuff.</p>\n\n\n\n<p>So just know what you&#8217;re getting into. So that&#8217;s one. Number two. The people that really make it, take consistent forward action even though it&#8217;s imperfect. What stops a lot of people in this industry is imposter syndrome, and the people that make it literally ship the course, even if it&#8217;s not perfect, even if the videos aren&#8217;t perfect, even if they&#8217;re unsure of their self worth or whatever, they ship it. and then they make it better over time.</p>\n\n\n\n<p>And then the third thing that&#8217;s really important, I&#8217;ll stop at three points because these are kind of the three biggest that I&#8217;m giving you here, is that a lot of people get really focused on the concept of making money online or building an online business or working from home. And these are all good things and I&#8217;m all for all those things. But they&#8217;re very self focussed. The people that really make it out there, kind of have a service mindset that drives their business. They focus on a particular niche, and they make it about impact and serving others.</p>\n\n\n\n<p>And through all that, they make a lot of money and they build the online business and they work from wherever in the world. But when you flip that script, from a priority standpoint to be like, you know what, I&#8217;m going to focus on this person and help this person be successful. Quick example. One of our customers, Angela Brown, I watched her go from like zero to like 200,000 person YouTube channel teaching house cleaners how to start and grow their businesses. And she&#8217;s hugely successful now.</p>\n\n\n\n<p>She&#8217;s really famous in that niche. And, basically she just was targeting people that were just starting out trying to run a cleaning company with cleaning supplies in the trunk of their car, and helping them become professionals. And through all that, she&#8217;s made a bunch of money and everything, but she&#8217;s given everything to her industry and she&#8217;s really focused on helping her core customer.</p>\n\n\n\n<p>[00:16:57] <strong>Nathan Wrigley:</strong> That&#8217;s a really fascinating story actually. I&#8217;m really taken by that. I do like the, the story of the underdog. That&#8217;s brilliant. So let&#8217;s go back to your five hats, of which I think you mentioned the first three. There&#8217;s a lot in there, isn&#8217;t there? There really is a lot in there. You mentioned expertise, entrepreneurship. The fact that you&#8217;ve got to be a teacher, an educator. Got to build a community. And then you&#8217;ve got to be somebody who&#8217;s presumably on some level, you described it as a driver of tech, but basically a geek.</p>\n\n\n\n<p>Would you say that if you don&#8217;t satisfy all of those things, you are kind of asking for trouble? I mean, let&#8217;s say for example that I&#8217;m not particularly good at tech. Presumably there are some of these things which you can farm out? You could hire somebody to do the tech for you and so on. But the other ones really do feel like, that&#8217;s got to be a part of your core being, your soul if you like.</p>\n\n\n\n<p>[00:17:44] <strong>Chris Badgett:</strong> It really depends on the person. I kind of think of it as like a personality type matrix. And by the way, I mentioned one of our major customer set is people who build these kind of sites for clients. So a lot of people are not trying to do this all themselves. They partner with a WordPress professional to be the tech person to actually build the site.</p>\n\n\n\n<p>So that&#8217;s a common one that, an expert, especially a really established expert who&#8217;s not in a technical field, maybe it&#8217;s a yoga instructor or some kind of cooking thing or parenting thing. We see a lot of people just partnering with a WordPress professional, I&#8217;ll say that.</p>\n\n\n\n<p>When it comes to the entrepreneurship piece, I call our ideal customer an education entrepreneur. They&#8217;re both driven by teaching some subject matter, but also being an entrepreneur, which literally is somebody who creates value out of nothing and gets it out into the world by their sheer will.</p>\n\n\n\n<p>It&#8217;s one thing to be a teacher. It&#8217;s one thing to be an entrepreneur. Not all entrepreneurs want to be teachers. Not all teachers want to be entrepreneurs. But when you have both together, that&#8217;s kind of the core that you can&#8217;t really outsource. You can hire in pieces of the entrepreneurship, I see people hire marketers to help with content, or ads, or taxes and things like that. But at its core, for someone to be successful in this endeavor, there&#8217;s that overlapping of the teacher entrepreneur in one. It&#8217;s kind of a common thread.</p>\n\n\n\n<p>[00:19:10] <strong>Nathan Wrigley:</strong> Okay, so let&#8217;s imagine that I want to do a course. I&#8217;ve got this area of expertise. Let&#8217;s imagine that I&#8217;m a, I don&#8217;t know, fabulous guitarist or something like that. And I want to spread the word, and teach people how to play the guitar successfully and enjoy it.</p>\n\n\n\n<p>Talk to me about the process that you would advise somebody like me to go through. In order to get this thing off the ground, because the first thing I&#8217;m going to do is not shoot myself a video of me playing the guitar. That may be quite high on the list, but I&#8217;m imagining there&#8217;s a whole bucket load of other things that need to be done, in terms of market research, and branding, and coming up with the structure of the course and so on.</p>\n\n\n\n<p>So, just run us through a typical, different in every case I&#8217;m sure, but a typical way of mapping out the journey from just the idea, just saying you&#8217;re going to do it, to finally having all of the bits and pieces so that you are ready to do it.</p>\n\n\n\n<p>[00:20:05] <strong>Chris Badgett:</strong> You know, I&#8217;ve seen so much failure or just slow progress on this question here that I&#8217;ve created a system to help people figure this all out. I call it the five day course plan challenge, it&#8217;s on our website. But basically what happens on those five days. My whole point is give me an hour, for five days in a row and then you&#8217;re going to be ready to actually approach this.</p>\n\n\n\n<p>So on day one we get into a lot of the inner game stuff like your purpose and your vision. Getting some of the mindset stuff straight. Day two, we get into designing your ideal customer avatar. So for you, who are we teaching? Are we teaching other guitar teachers? Are we teaching kids? Are we teaching a specialized style of guitar. Nicheing and doing the avatar work is super important. Then there&#8217;s the actual, this is the fundamental thing that the entrepreneur does, which is, the core of what entrepreneurs do is they create an offer, right?</p>\n\n\n\n<p>An iPhone is an offer. A Tesla car is a offer. A WordCamp as an example, there&#8217;s like a promise there. And what a lot of course creators and coaches and things like that do, is they get really focused on their mechanism, which for your example, is a guitar playing. Okay, that&#8217;s a mechanism. But what is the offer? I have a whole thing where I teach about how to develop this, but basically what it boils down to is, I help X person achieve X result through my mechanism. Offer construction is the key, and if you don&#8217;t nail that, everything else will be inefficient or potentially fail.</p>\n\n\n\n<p>Once you have your offer on the next day, I give people, because a lot of experts have no training in how to be a teacher or a coach. So I have some training in instructional design after a decade in this space of like how to think about chunking down your skills and your, what you want to teach, and the result your avatar wants, into an actual framework that has a high likelihood of actually working. So I help people become instructional designers.</p>\n\n\n\n<p>And then the last step, that sometimes people overlook, is it&#8217;s not just about content. You want to design some kind of success system. So if you look at like a popular online course that you can buy, that you hear ads for all the time called Masterclass. This is like $15 a month and you can learn comedy from Steve Martin, and all this stuff from all these famous people, but it&#8217;s only $15 a month. The reason why those courses from the best in the world are so cheap is because they lack any kind of support or connection with the creator.</p>\n\n\n\n<p>So when you design a success system, and I have a whole system of how to think about that and map it to your personality style and preferences, but it could include things like group coaching, email access, office hours, phone support, live events in person. When you combine that success element, and not think of your product as not just organized content, that&#8217;s when you really create a winning course. So my advice to you, Nathan the guitar teacher, is to go through that pre-work of those five steps I just laid out.</p>\n\n\n\n<p>[00:23:16] <strong>Nathan Wrigley:</strong> I should probably learn to play the guitar first.</p>\n\n\n\n<p>[00:23:19] <strong>Chris Badgett:</strong> That too. Hey, expertise is one of the five hats. So if you don&#8217;t have it. You know, sometimes people see a business opportunity. Maybe I&#8217;ll teach people how to trade crypto or whatever. But they see the opportunity, but they lack the expertise. But that&#8217;s still possible, by the way. One of my first courses was in organic gardening and permaculture.</p>\n\n\n\n<p>And I had all the hats except for the expert. My wife was skilled at this, but, I actually went out into the world and found some of the best people in the world. I flew to Costa Rica and traveled to a bunch of places, and I was filming these people doing permaculture design workshops in the jungle or in different places.</p>\n\n\n\n<p>And so I went and I got an expert, right? And I was taking an industry that was predominantly offline. I was trying to get it online because I could see how many people on YouTube were looking for this information and everything. So, you don&#8217;t have to have the expertise, is what I&#8217;m saying. Nathan, you can go find you a guitar player, you guys partner, and you can make it happen.</p>\n\n\n\n<p>[00:24:18] <strong>Nathan Wrigley:</strong> You were talking earlier about writing a book, and how so many people have this thought and it never happens. I&#8217;m sure that there&#8217;s quite a few people who get halfway through a book and then it never gets across the finish line. They&#8217;ve written the first 25,000 words and it&#8217;s all going great, and then for some reason the atrophy sets in and the word processor never comes out again and it just tails off and gets forgotten about. I&#8217;m sure the same is true of courses, you know, people they decide that they&#8217;re going to set up some kind of LMS.</p>\n\n\n\n<p>They&#8217;ve thought through carefully all of the bits and pieces, but at some point the project gets derailed. And I&#8217;m wondering if, as somebody in this space whose job it is, not only to sell an LMS, but obviously to coach people around how to do that. Are there communities of like-minded LMS-ers, if you like, who can help you through this bit?</p>\n\n\n\n<p>In other words, if you, if you hit a roadblock, if you find yourself getting distracted and you never get it across the finish line. Are there mechanisms in place, communities, online or otherwise of people who can help you, support you, try to get you through the bit that you&#8217;re stuck on?.</p>\n\n\n\n<p>[00:25:26] <strong>Chris Badgett:</strong> Yeah, a hundred percent. I have a podcast called LMSCast, and we&#8217;re about 400 episodes deep. And part of the reason I created that podcast is I wanted to interview people, not just about the tech and WordPress, but around all these other challenges that people face around the five hats, and things like instructional design and marketing and community building and all this.</p>\n\n\n\n<p>So, that&#8217;s a resource, but there&#8217;s also a lot of great Facebook groups, as an example out there. The whole course creator, entrepreneur thing is definitely a niche. Coaching. Some people kind of use different words around the space. You&#8217;ll hear course creator, I&#8217;m a coach, I have a membership site, I have a paid community.</p>\n\n\n\n<p>You can do all those things and kind of mix and match whichever variables you want in your online learning platform. But there&#8217;s definitely communities and content around these types of people. And you can find the ones that resonate with you. What we find here in WordPress, or just in software in general, is that sometimes people buy the tool before they&#8217;re ready, right?</p>\n\n\n\n<p>It&#8217;s one of the reasons why I&#8217;ve made that five day challenge course for people to be more ready for the tool, and not just the tool, but for the business. And there&#8217;s a lot of people out there who teach around course creation. You just have to be careful though, because there is a lot of over promise snake oil stuff about how easy it is and, you know, follow these easy steps and all this stuff.</p>\n\n\n\n<p>It&#8217;s a big commitment. If you&#8217;re going to create a course, it&#8217;s not easy, I&#8217;m just being honest with you. Just like writing a book is not easy. And starting a business, especially if you don&#8217;t already have an online platform or website and e-commerce system and everything. It&#8217;s going to take a little bit of time.</p>\n\n\n\n<p>There&#8217;s a lot of people on this journey. The online industry is booming. People becoming entrepreneurs and wanting to be entrepreneurs and want to work remotely and digitally and be digital nomads and all this stuff, it&#8217;s all booming. It is an emerging trend, and you can find others on the same path.</p>\n\n\n\n<p>[00:27:22] <strong>Nathan Wrigley:</strong> Yeah, it strikes me that it could be quite a lonely journey being a course creator, because if you&#8217;re doing it by yourself, you may struggle to make those connections, so it&#8217;s nice to hear that there are different communities and groups out there which will help you through that. Yeah, that&#8217;s great.</p>\n\n\n\n<p>In terms of LMSs and all of that, the technology behind it all. I don&#8217;t know how to phrase this question because it brings up Covid, but during the last few years Covid happened. And I&#8217;m guessing, I have no data to back this up, it just is a thought in my head, that online courses became more of a thing.</p>\n\n\n\n<p>More people creating them. More people consuming them. And whilst nobody wants to celebrate Covid, it might be interesting to get into that conversation about whether or not that was in fact the case. Did people swell to LMSs and were there more courses being put out and consumed? And also, what&#8217;s the trend since the world has gone a little bit more back to normal? Since we&#8217;ve been able to go back to in-person events? Has it declined or has it kept its growth?</p>\n\n\n\n<p>[00:28:28] <strong>Chris Badgett:</strong> There was a huge boom that I could say from our company, in terms of new users, new customers due to Covid. And also just to talk about a little more, there&#8217;s some different flavors to it. Yes, there&#8217;s some people that want a side income or a full-time income from home now, that wanted to become course creators or coaches and they needed an LMS. But we also saw a big influx of trainers, people that would go places and train people at a company, or they would deliver some kind of event thing from the stage, and now they want to package it inside of a LMS in a course format. They literally had to, to keep their businesses going.</p>\n\n\n\n<p>So there was a lot of, there was a lot of both those aspiring entrepreneurs, but also just trainers and events and regular schools. A big, small, traditional alternative, whatever, that we&#8217;re trying to figure this all out. Yeah, it caused a huge boom in the industry, and I guess it&#8217;s been, I don&#8217;t know, has it been almost three years now? Something like that. The initial parabolic rise, if you will, has slowed, but the industry continues to grow, from what I can see.</p>\n\n\n\n<p>So, that caused a big spike, but we&#8217;re seeing the industry just continue to grow. And also new, if you look broadly across the online learning SaaS space and the online community SaaS platforms, and the Zoom alternatives and everything, like the whole industry is just continuing to expand.</p>\n\n\n\n<p>[00:30:00] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s something which I can identify in my life at least anyway. Before the last five years, shall we say, I was probably far less willing to enroll in courses just because, I hadn&#8217;t really done it before. It was still a new thing. Much more likely now, personally, to do that because I now see this as a really legitimate thing. People now have the expertise to do it. There&#8217;s platforms like yours which enable them to do it. And it, it is no longer the thing held together by sticky tape. It can be a really professional enterprise, even just a one person enterprise can do it really professionally, given the arrangement of tools that are out there now.</p>\n\n\n\n<p>And now people can download all sorts of clever software, which will enable the video editing process to be slightly more painless, if you know what I mean. And you can download software which enables you to do the marketing side of things and all of this kind of stuff. What I&#8217;m basically trying to say is, I feel that it&#8217;s become part of the landscape now. Online courses is now a thing, and it feels like it&#8217;s a thing that&#8217;s here for good.</p>\n\n\n\n<p>[00:31:02] <strong>Chris Badgett:</strong> It is, and I&#8217;ll just throw a few more trends kind of on top that are happening. One is the transition from just in case, to just in time education. So what I mean by that is, you know, if we go to college and we get a degree, we learn a lot of stuff just in case we might need it or whatever.</p>\n\n\n\n<p>And I&#8217;m a fan of college. I&#8217;m not bashing college, but just in time education, as our world has become more complex and dynamic, and the rapid changing of things for example, um, if you need to learn how to use a new software tool or, you know, you go to YouTube the tech training at universities and community colleges has a hard time keeping up with just independent, online learning platforms for fast changing and emerging technologies, just as an example. So, just in time education.</p>\n\n\n\n<p>The other trend that&#8217;s happening is called micro learning, and that&#8217;s where it gets really important to chunk down your content so that it&#8217;s as effective and efficient as possible, without wasting time. So, back in the earlier days of the online course industry, it was all about, I&#8217;m speaking to the expert, entrepreneur kind of subject matter expert courses. It was all about how much stuff you could cram in the membership site. Like, okay, we got 200 hours of videos, 500 PDFs, all these bonuses. The trend we have now is people don&#8217;t have time for that. So, it&#8217;s got to be good. It&#8217;s it&#8217;s got to work.</p>\n\n\n\n<p>People will be forgiving on production quality to a degree, like video, audio, whatever PDFs you&#8217;re doing, if you&#8217;re doing that. But the best stuff is like, super targeted, super efficient, very clear offer. There&#8217;s just so much opportunity out there in the world. Anytime I see a friction point in anything, that could be a course. And if you&#8217;re going to, if you as an entrepreneur, are going to jump on that friction point, make it as frictionless as possible for the person to achieve the result.</p>\n\n\n\n<p>[00:33:02] <strong>Nathan Wrigley:</strong> I really hadn&#8217;t thought about the just in time piece, and that makes so much sense. Especially when you think about the landscape of the industry that we are in, technology, specifically WordPress. Things are changing all the time. And something that you may have wished to learn last year might now be completely obsolete.</p>\n\n\n\n<p>There really is no rival than the internet for that. Online based learning can be updated now, this second, and I will immediately receive the fruits of all of those changes. Yeah, that&#8217;s really remarkable. I hadn&#8217;t really made the connection there.</p>\n\n\n\n<p>[00:33:35] <strong>Chris Badgett:</strong> And just a quick marketing insight on that too, is if you&#8217;re going to do it, this is why doing the avatar work and stuff is so important, because once you get into this, it&#8217;s going to be a long road, and it&#8217;s not always going to be easy. But my best advice is if once you decide who you&#8217;re going to help, and who that avatar is, and what you&#8217;re going to teach, I would build the course business and a YouTube channel in parallel, because, just in time education, a lot of it happens on YouTube, where people go.</p>\n\n\n\n<p>I of course want to see people helping people for free on YouTube, from my perspective, across all these tens of thousands of course creators is, YouTube is a really strong marketing channel to get people, you on their radar and then them into your marketing funnel.</p>\n\n\n\n<p>[00:34:20] <strong>Nathan Wrigley:</strong> This leads me to another thought, and it wasn&#8217;t necessarily where I wanted to go, but I&#8217;m going to ask this anyway. If I was a course creator and something seismic happened that meant that my course needed to be amended, adapted, maybe something extra needs to be added. What do we do with that?</p>\n\n\n\n<p>Because it feels almost like a course is a package, it&#8217;s a parcel. It&#8217;s finished. I&#8217;m handing it over, I&#8217;ve put it in the LMS, and there it is. That&#8217;s the thing. But presumably there has to be modifications made. Let&#8217;s say for example something in WordPress suddenly, let&#8217;s say there&#8217;s a virus which goes around and we need to disseminate the news about that quickly. Just a silly example.</p>\n\n\n\n<p>I would need to put that into the course somewhere. What would the advice be about amendments? Do you normally ask people to substitute one video for another in place, or do you say, Look, add extra content? How does that amending on the fly, nature of online learning go?</p>\n\n\n\n<p>[00:35:15] <strong>Chris Badgett:</strong> Well, there&#8217;s lots of options. It rolls back to the business model. So you can sell a course that has lifetime access, and then in that case you just update the content or add the additional resource. But if you&#8217;re selling a course that has a monthly recurring cost to it, and this is where the success systems come into play too.</p>\n\n\n\n<p>The easiest way to add recurring revenue to a course, the lowest friction way for you to do it, is to once a month do a one hour ask me anything office hours, right. Now you have recurring value. It&#8217;s time boxed to just that hour. And you can help people in ways that they decide to stay and you continually get recurring revenue.</p>\n\n\n\n<p>So if we have a model like that, you need another reason to stay on the subscription is to get the updated content when it comes out. And then a third option, there&#8217;s more, but I&#8217;m trying to give you the basics, is, there&#8217;s this concept of cohort based courses. So we&#8217;re doing this one in the spring, this one in the summer. They&#8217;re kind of separate and they just go with that time period. It is all just thinking through the time, the finances, the business model, what you&#8217;re willing to commit to as well in terms of updating content. Like one of our great customers, Sean Heskith from WP101, one of the largest, I think it might be the largest WordPress education site on the internet. He&#8217;s constantly updating his course content when new versions of WordPress come out and stuff. And he is super professional with it. So he is constantly polishing the asset, if you will.</p>\n\n\n\n<p>And then I&#8217;ll just throw one more concept out there. Which is that there&#8217;s these two personality types. One, I call the serial course creator. They] just, they create a membership site and they create a course in November, then they launch a new course in December, and a new course in January, and they just keep adding new courses. The old stuff never really gets updated.</p>\n\n\n\n<p>We have a guy who teaches people how to tie animal balloons. And he makes six figures with his courses. He&#8217;s got, they&#8217;re like child entertainer and magician type people is his avatar. It&#8217;s called Balloon Artist College. It&#8217;s awesome. But he&#8217;s got like 200 courses on there or something like that at this point. But then there&#8217;s the other entrepreneur, kind of like Sean with his WordPress 101 course, that they&#8217;re just continually just updating the course, right?</p>\n\n\n\n<p>One of the old school, like internet marketer guys that I followed back in the day, his name&#8217;s Jeff Walker. He has a course called Product Launch Formula that I think I first saw in 2007, 2008. He still launches it twice a year or once a year. Same course. He just keeps polishing it every year. But every time he launches it, I believe it&#8217;s a new product. So different ways to tackle that.</p>\n\n\n\n<p>[00:38:03] <strong>Nathan Wrigley:</strong> It occurs to me that so far we&#8217;ve spoken as if the target audience of the course is individuals. So, you&#8217;re trying to sell out there into the market. You&#8217;ve put a website together and you&#8217;re trying to encourage people, individuals to sign up. But, I&#8217;m wondering if there&#8217;s different audiences out there for your courses, or should I say different ways of implementing them?</p>\n\n\n\n<p>So, for example, you might go after an entire business and offer a hundred seats at your course, or maybe you would just be implementing it as something to train your employees. There doesn&#8217;t have to be an audience of people who are willing to pay. An LMS might just be the perfect way of training your employees. So essentially, I&#8217;m just opening up the conversation to alternative uses of LMSs rather than, okay, I have a course, I&#8217;m going to sell it to a bunch of individuals, one at a time.</p>\n\n\n\n<p>[00:38:53] <strong>Chris Badgett:</strong> Yeah. At Lifter LMS we have a groups feature where you can do exactly what you described. Where you offer the training into a school or a business and a certain number of seats. And the leader at that place can keep tabs on the analytics and reporting for their students that they invite into the platform.</p>\n\n\n\n<p>That&#8217;s absolutely possible. I highly recommend that too. If you can figure that out in your business model, because it can create a serious amount of revenue when you can do deals at scale like that. Doing it for internal training, we do that at Lifter LMS as an example. We have a site that&#8217;s protected from the outside world, where we have all our customer success, marketing, sales, product, operational, like processes and stuff documented.</p>\n\n\n\n<p>We use our own tool to train our people, as new people come in and so on. I&#8217;ve seen people get really creative with it, and I&#8217;m thinking of a guy who uses it for tutors. The tutor licenses the course, but then the uses that content with their students up on a screen in the classroom and stuff.</p>\n\n\n\n<p>So there&#8217;s all kinds of ways to do it. I saw one guy run like a pay per view sporting event through Lifter LMS. You know, people get really creative. WordPress, what you can put inside the membership site, it&#8217;s up to you. A course creates structured content. Some people will use it like a course to just hold, like a webinar vault, like a library kind of thing. So there&#8217;s lots of different ways to use it.</p>\n\n\n\n<p>[00:40:20] <strong>Nathan Wrigley:</strong> Yeah, and it goes back to what you said right at the beginning about WordPress. Maybe that&#8217;s one of the reasons why a WordPress solution is so desirable, is that you really can take it in whichever way you like.</p>\n\n\n\n<p>I have just a couple of final questions, if that&#8217;s all right. It occurs to me that the listenership to this podcast, not everybody is going to be shouting, I want to make a course. But they may be saying, I have a web design business, and it occurs to me that, well maybe maybe selling courses could become a part of my revenue. Is there a niche out there? Is it a successful niche? Does it even exist of web designers implementing LMSs?</p>\n\n\n\n<p>[00:41:02] <strong>Chris Badgett:</strong> Absolutely. yeah, I mean, literally half of our customers, the people that buy the tool are freelancers and agencies, right? So it&#8217;s a split market. And then you have the DIY, do it yourself expert, or maybe that expert just buys the tool and then they hire somebody. So, a lot of people in this space are working with a WordPress professional to make it happen.</p>\n\n\n\n<p>We&#8217;ve known that for a very long time. So we created this experts program where we, it&#8217;s not like a paid thing, we&#8217;re not trying to monetize it. We just constantly get asked for like, hey, do you know anybody that can help me build this site? Or, who do you recommend? So we built a list of people that have experience with Lifter.</p>\n\n\n\n<p>It kind of happened to me as an example. Early on, I had this agency, people just needed all this stuff for their, their online learning business. It&#8217;s a great niche to focus on. They&#8217;re great customers. They often have recurring needs. The site build is complex, from a standpoint that it&#8217;s, it&#8217;s just not static pages and it&#8217;s incredibly valuable, which helps with your pricing as an agency owner.</p>\n\n\n\n<p>And these people often need ongoing work or they want to have like a tech person aside the business, in case they ever need anything, or they have a new idea they want to implement, stuff like that. So it&#8217;s a great, it&#8217;s a great niche if you&#8217;re looking to diversify into it. And I&#8217;ll also say that a lot of times, I&#8217;ve seen a lot of people who are WordPress professionals, and they implement for a client, and then once they see how it all works, possibly see their client make a bunch of money or whatever, then they&#8217;re like, you know what, I&#8217;m going to, I&#8217;m going to launch a course.</p>\n\n\n\n<p>So, uh, there&#8217;s a lot of that, that goes on when you really fall in. When you fall in love with the niche, it&#8217;s hard not to start releasing some courses yourself. And as a WordPress professional, one of the things I know from my agency days is that sometimes it&#8217;s a little frustrating or slow to train a client on how to use the website. So as part of your handoff, if you create like a course that they can then stop, rewind, play seven times to get it or whatever, and then make that as part of your handoff package. That can actually add a lot of value and save a lot of time on your end just to kind of use that course in that way.</p>\n\n\n\n<p>Another counterintuitive way we use courses at Lifter is for marketing. We have several free courses, but particularly this one that teaches, quick start course, that teaches you how to use the 5% of the tool that gives you 80% of the value.</p>\n\n\n\n<p>So with that one course, it lets people that are curious about the product, in about 40 minutes, see how it works, see what it does, to see if it&#8217;s a fit for their requirements. While simultaneously acting as an onboarding, at your own pace, at your own time resource. So super effective in that way. So using courses for marketing and customer success is also another counterintuitive way to, to do them.</p>\n\n\n\n<p>[00:43:58] <strong>Nathan Wrigley:</strong> It strikes me that the more that you do this, the less impediments there would be. So, it may be that you launch your guitar course and it&#8217;s not a runaway success, but there are takeaways there. You know, you&#8217;ve learned how to use an LMS. You&#8217;ve learned how to do some video editing. You&#8217;ve made some mistakes in your email campaigns, and all of those things, and the next time around there&#8217;s probably going to be a little bit less friction. So, I guess one of the messages that you would have for people is, if it doesn&#8217;t work first time, if at first you don&#8217;t succeed, try, try again.</p>\n\n\n\n<p>[00:44:29] <strong>Chris Badgett:</strong> Yeah, just like anything. Learning is what makes us human, right? So when we double down on like a business model or a tool or a business, failure is just feedback. That&#8217;s why that trait we see in our successful community members, whether they&#8217;re a WordPress professional or more of a subject matter expert, is that consistent, imperfect action moving forward with an open mind That&#8217;s the through line through the people that find the best success.</p>\n\n\n\n<p>[00:44:56] <strong>Nathan Wrigley:</strong> If people want to reach out to you, Chris, if they&#8217;ve been inspired by what you&#8217;ve said and they want to just get a little bit more advice, personal advice, maybe one to one or something, are you available? And if so, where&#8217;s the best place to find you, or best places?</p>\n\n\n\n<p>[00:45:10] <strong>Chris Badgett:</strong> I am available. I&#8217;m a big community guy. Community building&#8217;s always been important to me. You can easily find me on Twitter @ChrisBadgett. And then also in our Facebook group. It&#8217;s another great place to reach out. So if you just do a search for Lifter LMS, courses, WordPress, you&#8217;ll find our Facebook group, and that&#8217;s a great place to connect as well.</p>\n\n\n\n<p>[00:45:30] <strong>Nathan Wrigley:</strong> Chris Badgett, thanks for joining me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:45:34] <strong>Chris Badgett:</strong> Thanks for having me, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/chrisbadgett\">Chris Badgett</a>.</p>\n\n\n\n<p>Chris is behind <a href=\"https://lifterlms.com/\">LifterLMS</a>, which is a learning management system built as a WordPress plugin. He’s been in the WordPress space since 2008, and has moved his agency away from general website building to concentrating upon e-learning membership sites, course creation and marketing automation.</p>\n\n\n\n<p>He’s on the podcast today to talk about how WordPress and e-learning are a good fit. Although there’s a flourishing SaaS side to e-learning, Chris is convinced that WordPress allows you to make your LMS site exactly what you want. You won’t be facing the limitations imposed upon you by the platform, and can, if you have the time and skills, modify almost anything to suit your brand and niche.</p>\n\n\n\n<p>We begin by talking through how well a WordPress based LMS site can scale. Should your course be a runaway success, you want to be aware of how you’re going to have to manage the resources that your site will need. There’s a lot of dynamic content being displayed to your users, and this will affect the tech stack that you’ll need to deploy.</p>\n\n\n\n<p>We then get into a broad conversation about how online courses have taken off in the last few years. Even before global lockdowns, individuals and businesses were adopting online courses in innovative ways to educate their customers, staff, and the wider public. Chris’ data points to the fact that this growth seems set to continue. There’s a real understanding now that in many niches, the course curriculum needs to be adapted and amended continually. This is extremely easy to do with an LMS. You create new content, click publish and notify your users that the new material is there.</p>\n\n\n\n<p>We also discuss the reality of actually making a course. Like the writing of a book, the idea of creating a course is easy to conceive, but hard to execute. There’s the content, the branding, the marketing, the updates and much more. Chris has some advice to help you get over the bumps in the road if you’ve decided that you want to dip your feet into online course creation.</p>\n\n\n\n<p>It’s an interesting podcast and digs into yet another area where WordPress can help people thrive online.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://lifterlms.com/\">LifterLMS website</a></p>\n\n\n\n<p><a href=\"https://www.facebook.com/groups/lifterlmsvip\">LifterLMS Facebook Group</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"HeroPress: Manifesting Our Life – Manifestare la nostra vita\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4981\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://heropress.com/essays/manifesting-our-life/#utm_source=rss&utm_medium=rss&utm_campaign=manifesting-our-life\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20223:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/12/122022-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I joined the most dedicated and inspiring community I have ever met: the WordPress community.\" />\n<p><a href=\"https://heropress.com/feed/#italian\">Questo saggio è disponibile anche in italiano.</a></p>\n\n\n\nHere is Isotta reading her own story aloud.\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Every morning from Monday to Friday, when I open up my laptop to start my working day, I smile. Every single day. Multiple times per week, I take a moment to acknowledge the gratitude I feel for living my dream life. I&#8217;ve always been an optimistic person, and in the last few years, I&#8217;ve also become very aware of the beauty of my life, but there is a date that pivoted everything. January 17th, 2022, is the day I joined Automattic to become a sponsored full-time contributor to the WordPress community.</p>\n\n\n\n<h3 id=\"h-let-s-rewind-it-a-little-bit\">Let&#8217;s rewind it a little bit!&nbsp;</h3>\n\n\n\n<p>I was born in a middle-class family in Savona, a small city on the North-west coast of Italy. I had a marvelous and carefree childhood in a caring and fun family that gave me more love and support than I could have asked for. Everyone would always encourage me to follow my dreams, and I&#8217;d rarely receive a NO to my requests. Nevertheless, Savona is a small city, and in the 90s, the people who set an example for me pursued careers that had nothing to do with the digital world; there were butchers, warehouse supervisors, and local business secretaries. I remember how cool my mother looked when she spoke English, as no one else in the family could speak any foreign language! I carried this admiration with me when I started wondering about learning languages and being able to travel the world and engage in conversations with people from different places, cultures, and backgrounds. Fortunately, there was the perfect academic path to follow my dream. Studying translation and interpreting at Genoa University. I specialized in Spanish and French, and took a job in Madrid that brought me to live in Spain, France, Morocco. It got to travel to different headquarters far away from home, including India. I learned so much during those years and met good friends who are still in my life.</p>\n\n\n\n<p>Unfortunately, that company&#8217;s values didn&#8217;t align with mine, and brought them to terminate my contract in 2018. This unfair and immoral dismissal is the first of a list of blessings in disguise that happened in my life since then! For the first time, I could decide what my future job would be, instead of passively accepting a position because of the fear of remaining unemployed. I&#8217;ve always loved cooking. Cooking with others was my favorite way to become closer to new people and friends, learn from their culture, and share mine. I hadn&#8217;t really thought that this could be a profession, until my wife encouraged me to explore this possibility to create the workspace that aligns with my values and help me pursue my mission.</p>\n\n\n\n<p>We founded Eatsperience Madrid to welcome in our home people from different backgrounds and create a community of open-minded and caring people who shared a passion, wanted to learn and share their skills, and were welcoming to each other. Andrea (my wife) and I were living far from our families, so we decided to offer a space to rediscover those family moments where people gather together to cook, eat, and share quality time. What a wonderful period! We hosted dinners, cooking classes, culinary events up to 5 days per week and met people from all around the world. Andrea was still working full-time for a marketing agency, and I would be working for the culinary business countless hours a day. We were so tired, whenever we weren&#8217;t working, we were sleeping. 2020 was going to be the year when Eatsperience finally would start making money, I had been hired to cook at international fairs and to private events, and we had our own events booked for the entire year. Of course, March 2020 put an end to all of it.&nbsp;</p>\n\n\n\n<p>I immediately switched online and offered virtual cooking classes for individuals, private groups, and remote teams. It was tough to pivot and try to save everything in those uncertain times, while Andrea was dealing with uncertainty at her working place as well. From our career&#8217;s standpoint, it was another blessing well disguised at first.&nbsp;</p>\n\n\n\n<h3 id=\"h-meeting-wordpress\">Meeting WordPress</h3>\n\n\n\n<p>We had our WordPress website built by a professional in 2019, but now I had to revamp the site entirely according to the new business&#8217; needs. With the help of an online business manager, we understood the new path we wanted Eatsperience to take, and I got closer to WordPress. We built the online shop on WooCommerce, I learned how to update and customize it, and I fell in love with email automation. I didn&#8217;t realize that there was a huge community behind it, though. Now I wonder if, in 2020, online events showed up in the WP dashboard, but I was too absorbed in learning and worrying about my business to see them. I would land in the forums sometimes, but I didn&#8217;t understand the terminology used in questions and answers, so I got scared and decided to not engage with it.</p>\n\n\n\n<h3 id=\"h-the-turning-point\">The turning point</h3>\n\n\n\n<p>2020 made us realize that life is too short to live out of worryings, focus on our frustrations, and compromise for jobs and people who don&#8217;t make us happy. So, Andrea and I decided we&#8217;d keep pursuing our dream of working remotely. At the beginning of 2021, Andrea enrolled in a learning program to become a frontend web developer while I focused on consolidating my online business. Nevertheless, the universe had another plan for me, but I still didn&#8217;t know! Alongside Eatsperience Madrid, since 2019 I have been managing an online community, and in 2021 I followed the advice of formalizing those skills I gained as a community manager. I studied and got the Facebook community manager certification because.. why not? For me, it&#8217;s always worth it to keep learning and have a &#8220;piece of paper&#8221; to certify your skills.</p>\n\n\n\n<p>By the summer of 2021 it was clear that Eatsperience Madrid couldn&#8217;t survive. Sales dropped since 2020, I had invested all my unemployed fund, and Andrea started to suffer of strong panic attacks. She had been working full-time, studying every evening and saturday, and supported me for the past 2 years. I needed to change that situation and be the one to provide for the family instead. I discontinued Eatsperience, it was like dealing with a loss in a certain way, but this was the third blessing in disguise. I wrote down the list of the characteristics that I wanted for my next company and job, and started applying to full-time positions in remote companies. A few days later, I joined the hiring process for a company that looked perfect to me but when I arrived to the last of many steps, I got rejected. Another defeat, another hidden blessing.&nbsp;</p>\n\n\n\n<p>During those same days, the turning point. A friend sent me the link for a position at an American remote company called Automattic, which I didn&#8217;t know about. They seemed to be looking for someone with my skills to donate to a non-profit project. Their values seemed perfectly aligned with mine, so I applied and got into the hiring process. The more I learned about the company, the open-source world, and the WordPress community, the more I felt I belonged to it.</p>\n\n\n\n<p>Well, my feeling was right! I found a place where people are heard, valued, and respected. I found teammates who uphold and support me. And I joined the most dedicated and inspiring community I have ever met: the WordPress community. Thanks to all WordPressers around the world, I learn something new every day, and I grow by watching them shape their world to make it a better place for everyone and the generations to come. I feel lucky and thankful for having the privilege to dedicate my entire week to such a meaningful, fun, and inspiring mission! I feel proud to be a WordPress contributor myself.</p>\n\n\n\n<h3 id=\"h-living-the-life-that-we-want\">Living the life that we want</h3>\n\n\n\n<p>Since I joined the community in January 2022, I&#8217;ve participated in the impact that we have on our ecosystem as individuals and a community. I gained new technical knowledge and new soft skills. I grew as a professional and as a human being. I&#8217;ve supported my wife while she left her company, became a front-end developer, and is looking for her first job in this industry. We can travel and visit our families, and I can work from everywhere. I&#8217;ve never been happier. I&#8217;ve spent many moments manifesting what I truly wanted for my life, and it has always come true, even if it means going through some defeats first.&nbsp;</p>\n\n\n\n<p>I hope that my story reaches those who haven&#8217;t yet experienced the power of manifestation, of stating what they want and being truthful to their hopes and values. I believe in abundance and I believe that we attract what we feel. So let&#8217;s open up to our desires, connect with people, do some good, and live our best lives!&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p></p>\n\n\n\n<h1 id=\"italian\" class=\"kt-adv-heading_39bac8-8e wp-block-kadence-advancedheading\">Manifestare la nostra vita</h1>\n\n\n\nEcco Isotta che legge ad alta voce la sua storia.\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p>Ogni mattina, da lunedì a venerdì, quando apro il mio portatile per iniziare la mia giornata lavorativa, sorrido. Ogni giorno. Più volte alla settimana, mi prendo un momento per riconoscere la gratitudine che provo per star vivendo la vita dei miei sogni. Sono sempre stata una persona ottimista e negli ultimi anni sono anche diventata molto consapevole della bellezza della mia vita, ma c&#8217;è una data che ha cambiato tutto. Il 17 gennaio 2022 è il giorno in cui mi sono unita ad Automattic per contribuire full-time alla comunità di WordPress.</p>\n\n\n\n<h3>Facciamo un salto indietro!&nbsp;</h3>\n\n\n\n<p>Sono nata in una famiglia di classe media a Savona, una piccola città sulla costa nord-occidentale dell&#8217;Italia. Ho avuto un&#8217;infanzia meravigliosa e spensierata in una famiglia dolce e divertente che mi ha dato più amore e sostegno di quanto avrei potuto chiedere. Tutti mi hanno sempre incoraggiata a seguire i miei sogni e raramente ho ricevuto un NO alle mie richieste. Tuttavia, Savona è una piccola città e negli anni &#8217;90 le persone che rappresentavano un esempio per me avevano intrapreso carriere che non avevano nulla a che fare con il mondo digitale: c&#8217;erano macellai, magazzinieri e segretari di aziende locali. Ricordo che mia madre sembrava fighissima quando parlava inglese, nessun altro in famiglia sapeva parlare una lingua straniera! Questo sentimento di ammirazione mi accompagnava quando ho iniziato a desiderare di imparare lingue straniere e di poter viaggiare per il mondo, per poter parlare con persone provenienti da posti, culture e contesti diversi. Fortunatamente, c&#8217;era il percorso accademico perfetto. Studiare traduzione e interpretariato all&#8217;Università di Genova. Mi sono specializzata in spagnolo e francese e ho accettato un lavoro a Madrid che mi ha permesso di vivere in Spagna, Francia e Marocco. Ho avuto modo di viaggiare in diversi uffici, tra cui in India. Ho imparato tanto in quegli anni e ho incontrato buoni amici che sono ancora nella mia vita.</p>\n\n\n\n<p>Purtroppo, i valori di quell&#8217;azienda non erano allineati con i miei e nel 2018 sono stata licenziata. Questo licenziamento ingiusto e immorale è il primo di una lista di quelle che chiamo benedizioni mascherate che mi sono capitate da quel momento in poi! Per la prima volta, ho potuto decidere quale sarebbe stato il mio prossimo lavoro, invece di accettare passivamente una posizione per la paura di rimanere disoccupata.&nbsp;</p>\n\n\n\n<p>Ho sempre amato cucinare. Cucinare con gli altri era il mio modo preferito per avvicinarmi a nuove persone e amici, imparare dalla loro cultura e condividere la mia. Ma non avevo mai pensato che questa potesse essere una professione, finché mia moglie non mi ha incoraggiata a esplorare questa possibilità per creare uno spazio di lavoro che fosse in linea con i miei valori e mi aiutasse a seguire la mia missione.</p>\n\n\n\n<p>Abbiamo fondato Eatsperience Madrid per accogliere nella nostra casa persone provenienti da contesti diversi e creare una comunità di persone dalla mentalità aperta, e interessate a altri esseri umani, che condividessero una passione, volessero imparare l’un l’altro condividendo le proprie competenze. Io e Andrea (mia moglie) vivevamo lontane dalle nostre famiglie, così abbiamo deciso di ricreare quei momenti familiari in cui ci si riunisce per cucinare, mangiare e condividere del tempo di qualità e offrirli nella nostra casa a chiunque volesse partecipare. È stato un periodo meraviglioso! Organizzavamo cene, corsi di cucina, ed eventi culinari fino a 5 giorni a settimana e conoscevmo persone provenienti da tutto il mondo. Andrea lavorava ancora a tempo pieno per un&#8217;agenzia di marketing e io lavoravo per il nostro business innumerevoli ore al giorno. Eravamo stanchissime: ogni momento in cui non lavoravamo, dormivamo. Il 2020 sarebbe stato l&#8217;anno in cui Eatsperience avrebbe finalmente iniziato a prosperare. Ero stata ingaggiata per cucinare a fiere internazionali ed eventi privati, e avevamo i nostri eventi prenotati per tutto l&#8217;anno. Ovviamente, il mese di marzo del 2020 ha messo fine a tutto ciò.&nbsp;</p>\n\n\n\n<p>Siamo passate immediatamente all&#8217;online e ho iniziato ad offrire eventi di cucina virtuali per singoli, gruppi privati e team remoti. È stato duro cambiare tutto e cercare di salvare l’attività in quei tempi incerti, mentre anche Andrea affrontava momenti di incertezza nel suo posto di lavoro. Dal punto di vista della nostra carriera, è stata un&#8217;altra benedizione inizialmente ben mascherata.</p>\n\n\n\n<h3>L&#8217;incontro con WordPress</h3>\n\n\n\n<p>Nel 2019 ci eravamo affidate a un professionista che aveva creato il nostro sito web su WordPress, ma ora dovevo rinnovarlo completamente in base alle esigenze della nuova attività. Con l&#8217;aiuto di una online business manager, abbiamo capito il nuovo percorso che volevamo far intraprendere a Eatsperience e mi sono avvicinata io stessa a WordPress. Abbiamo costruito il negozio online con WooCommerce, ho imparato ad aggiornarlo e personalizzarlo e mi sono appassionata alle automatizzazioni di e-mail. Non avevo però capito che c&#8217;era un&#8217;enorme comunità alle spalle. Ora mi chiedo se, nel 2020, gli eventi online apparissero nella dashboard di WP, ma io fossi troppo occupata ad imparare ad usare quel nuovo strumento, e dalle preoccupazioni per la mia attività, per vederli. A volte entravo nei forum, ma non capivo la terminologia usata nelle domande e nelle risposte, quindi mi spaventavo e decidevo di cercare le soluzioni di cui avevo bisogno altrove.</p>\n\n\n\n<h3>La svolta</h3>\n\n\n\n<p>Il 2020 ci ha fatto capire che la vita è troppo breve per vivere di preoccupazioni, per pensare solo alle nostre frustrazioni e scendere a compromessi per lavori e persone che non ci rendono felici. Così, Andrea e io abbiamo deciso di continuare a inseguire il nostro sogno di lavorare da casa. All&#8217;inizio del 2021, Andrea si è iscritta a un corso per diventare uno frontend developer, mentre io mi concentravo sul consolidare la mia attività online. Tuttavia, l&#8217;universo aveva degli altri piani per me, ma non lo sapevo ancora! Oltre a Eatsperience Madrid, dal 2019 mi occupo di una comunità online e nel 2021 ho seguito un ottimo consiglio di un’amica e ho formalizzato le competenze acquisite come community manager. Ho studiato duro e passato l’esame per ottenere la certificazione di Facebook community manager perché&#8230; perché no? Per me vale sempre la pena continuare a imparare e avere un &#8220;pezzo di carta&#8221; che certifichi le mie competenze non nuoce mai.</p>\n\n\n\n<p>Poi, nell&#8217;estate del 2021 era diventato chiaro che Eatsperience Madrid non poteva sopravvivere. Le vendite erano calate dal 2020, io avevo investito tutto il mio fondo di disoccupazione e Andrea aveva iniziato a soffrire di forti attacchi di panico. Lavorava a tempo pieno, studiava tutte le sere e i sabati, e mi aveva sostenuta negli ultimi due anni. Dovevo cambiare la situazione e prendermi cura io della famiglia. Così ho chiuso Eatsperience, ed è stato un po’ come affrontare un lutto, ma questa era la terza benedizione arrivata sotto mentite spoglie.&nbsp;</p>\n\n\n\n<p>Ho fatto un elenco delle caratteristiche che volevo per la mia prossima azienda e il mio prossimo lavoro e ho iniziato a fare domanda per posizioni a tempo pieno in aziende che lavorano in remoto. Pochi giorni dopo, ho iniziato un processo di selezione per un&#8217;azienda che sembrava perfetta, ma quando sono arrivata all&#8217;ultima delle tante fasi, sono stata respinta. Un&#8217;altra sconfitta, un&#8217;altra benedizione nascosta.&nbsp;</p>\n\n\n\n<p>In quegli stessi giorni, la svolta. Un’amica mi aveva inviato il link di una posizione presso un&#8217;azienda americana chiamata Automattic, che lavorava in remoto e che io non conoscevo. Sembrava che stessero cercando qualcuno con le mie competenze da donare a un progetto senza scopo di lucro. I loro valori sembravano perfettamente in linea con i miei, così mi sono candidata e ho iniziato il processo di selezione. Più cose conoscevo dell&#8217;azienda, del mondo open-source e della comunità di WordPress, più sentivo di aver trovato la mia realtà.</p>\n\n\n\n<p>Quella sensazione era giusta! Ho trovato un posto in cui le persone sono ascoltate e rispettate. Ho trovato colleghe e colleghi che mi apprezzano e mi appoggiano. E sono entrata a far parte della comunità più potente e motivatrice che abbia mai conosciuto: la comunità di WordPress. Grazie a tutti e tutte le WordPressers del mondo, ogni giorno imparo qualcosa di nuovo e cresco osservandoli mentre plasmano le loro città per renderle un posto migliore per noi e per le generazioni a venire. Mi sento fortunata e grata di avere il privilegio di dedicare il mio tempo a una missione così importante, divertente e stimolante! Sono orgogliosa di contribuire al progetto open source, e di far parte della comunità di WordPress.</p>\n\n\n\n<h3>Vivere la vita che vogliamo</h3>\n\n\n\n<p>Da quando sono entrata a far parte della community a gennaio 2022, ho partecipato all&#8217;impatto che abbiamo sul nostro ecosistema come individui e come comunità. Ho acquisito nuove conoscenze tecniche e nuovi soft skills. Sono cresciuta come professionista e come essere umano. Ho sostenuto mia moglie mentre lasciava la sua azienda, diventava una frontend developer e adesso mentre cerca il suo primo lavoro in questo settore. Possiamo viaggiare e visitare le nostre famiglie, e io posso lavorare da qualsiasi luogo. Non sono mai stata così felice. Ho passato molti momenti a manifestare ciò che volevo veramente per la mia vita, e si è sempre avverato, anche se questo ha comportato alcune sconfitte lungo la strada.&nbsp;</p>\n\n\n\n<p>Spero che la mia storia raggiunga persone che non hanno ancora sperimentato il potere della manifestazione, dell&#8217;affermare ciò che si vuole e dell&#8217;essere sinceri con le proprie speranze e i propri valori. Credo nell&#8217;abbondanza e credo che attiriamo ciò che sentiamo. Quindi apriamoci ai nostri desideri, entriamo in contatto con altre persone, facciamo del bene e viviamo la nostra vita migliore!&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/manifesting-our-life/\">Manifesting Our Life &#8211; Manifestare la nostra vita</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 07:00:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Isotta Peira\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: Block Protocol Announces New WordPress Plugin Coming in 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/block-protocol-announces-new-wordpress-plugin-coming-in-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6532:\"<p><a href=\"https://blockprotocol.org/\">Block Protocol</a>, a project that <a href=\"https://wptavern.com/block-protocol-project-aims-to-create-universal-block-system-may-collaborate-with-gutenberg\">launched earlier this year</a> that aims to build a universal block system, has <a href=\"https://blockprotocol.org/wordpress\">announced a new WordPress plugin</a> coming in early 2023. It will allow users to embed interactive blocks that are compatible with Gutenberg. Given WordPress&#8217; footprint on the web (43% by W3Tech&#8217;s estimate), this plugin is a major milestone on the project&#8217;s roadmap for supporting a more interoperable and open web with blocks that can be shared through a standardized protocol. </p>\n\n\n\n<p>The Block Protocol plugin will give users access to the <a href=\"https://blockprotocol.org/hub\">global registry of interoperable blocks</a>. These include interactive blocks for drawing, a GitHub pull request overview, a timer, calculation, and more. Once installed, users will see these blocks available in the inserter. The newest versions of the blocks are always available to users without having to update the plugin. Creators of the Block Protocol are also releasing a few new blocks alongside the plugin, including an OpenAI DALL-E-powered image generation block and a GPT-powered block for generating text.</p>\n\n\n\n<img />\n\n\n\n<p>This announcement comes just days after Matt Mullenweg&#8217;s <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\">2022 State of the Word</a> address, where he was asked about Gutenberg potentially collaborating with the Block Protocol project. </p>\n\n\n\n<p>&#8220;Sometimes developers don’t like to work together on the same thing,&#8221; Mullenweg said in response to the question. &#8220;And so it’s part of why there’s like 200 CMS&#8217;s and stuff like that. Sometimes there might be a stylistic or a technical change that when you look at it, you say, &#8216;I can’t use this thing that exists. I’m going to start something that’s different.&#8217; And I think that’s a little bit what’s happening with Gutenberg and the Block Protocol.&#8221;</p>\n\n\n\n<p>Mullenweg confirmed that the projects have been communicating but were not able to get onto the same page. </p>\n\n\n\n<p>&#8220;They feel like there’s some things, either choices in Gutenberg or ways we develop things, that just are incompatible with how they see it happening,&#8221; he said. &#8220;We’ll see where that goes in the future. We’ve tried to make it CMS-agnostic so it can be embedded in anything and re-skinned, like you saw with the Tumblr example, it can be totally different. Everything we’re doing is open, so I would hope that wherever they end up, Gutenberg blocks could maybe be embedded, if there’s a translation layer or something like that.&#8221; </p>\n\n\n\n<p>Mullenweg sounded optimistic about the possibility of interoperability between Gutenberg and Block Protocol&#8217;s specification where users could copy and paste blocks across applications. </p>\n\n\n\n<p>&#8220;Maybe they create something really cool, that’s open source,&#8221; he said. &#8220;And then we’re like, &#8216;oh, let’s bring that over to Gutenberg,&#8217; so the innovation can flow both ways, and sometimes that’s only possible if you’re starting something from scratch.&#8221;</p>\n\n\n\n<p>Since the Block Protocol project is open source and designed to be an open protocol, Mullenweg said he considers it &#8220;like a cousin project,&#8221; and hopes that WordPress can integrate more in the future.</p>\n\n\n\n<p>&#8220;If not, that’s okay too,&#8221; he said. &#8220;Maybe this will just be an alternative ecosystem that can experiment with new ideas or maybe things we would say no to, they can try. And then we see how it’s adopted by users.&#8221; </p>\n\n\n\n<p>The initial draft of the Block Protocol spec is being incubated by the team at <a href=\"https://hash.ai/blog/announcing-the-block-protocol\">HASH</a>, an open source data, modeling, and simulation platform. HASH is using the protocol in beta. The current version of the spec will be deprecated as of v0.3, which is anticipated to arrive in February 2023 alongside the WordPress plugin.</p>\n\n\n\n<p>&#8220;I obviously can’t speak to what Automattic are officially thinking about the Block Protocol, but we&#8217;ve been energized by the community&#8217;s continued interest,&#8221; HASH CEO David Wilkinson said. </p>\n\n\n\n<p>&#8220;Thanks to WordPress&#8217; open architecture we can prove out the Block Protocol first as a plugin, giving users today the ability to access Block Protocol blocks within WordPress, and build blocks themselves that work not only in WordPress, but in <a href=\"https://hash.ai/\">HASH</a> and other Block Protocol embedders, as well. In time we think that the value in having a standard way to write blocks which work across apps will become self-evident.&#8221;</p>\n\n\n\n<p>Wilkinson said WordPress was the most requested CMS from Block Protocol users, as it is the most widely used, but he also has a personal connection with the software.</p>\n\n\n\n<p>&#8220;WordPress is near and dear to my heart,&#8221; he said. &#8220;I built my first websites with it, have worked with it for more than half my life (!), and have a huge amount of respect for the organization and operation behind it. It&#8217;s the obvious platform to start with.&#8221;</p>\n\n\n\n<p>The Block Protocol team has received requests for support from users of more than 50 block-based applications, and the project is currently <a href=\"http://blockprotocol.org/wordpress\">running a poll</a> to help identify the next one on the roadmap.</p>\n\n\n\n<img />\n\n\n\n<p>Even though the Block Protocol and Gutenberg projects did not find an acceptable way to combine efforts, WordPress users will get the best of both worlds with the new upcoming plugin. At the moment, access to Block Protocol&#8217;s Hub of blocks doesn&#8217;t offer any functionality that is superior to what is found in core WordPress and other native block plugins. The addition of the OpenAI-powered blocks will help make it more compelling, and the protocol&#8217;s ability to work across apps may bring an influx of more interesting blocks in the future.</p>\n\n\n\n<p>The Block Protocol is currently onboarding beta testers for the new WordPress plugin. Those who are interested can <a href=\"https://blockprotocol.org/wordpress#availability\">sign up for early access</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 03:19:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WordPress.org blog: The Month in WordPress – November 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13587:\"<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sereedmedia</a>, and <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 12:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: WordPress.com Launches Newsletter Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140414\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wptavern.com/wordpress-com-launches-newsletter-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5978:\"<p>WordPress.com has <a href=\"https://wordpress.com/blog/2022/12/19/write-and-publish-your-newsletter-on-wordpress-com/\">launched</a> a newsletter product just in time to capture those escaping <a href=\"https://twitter.com/shl/status/1603954292834328577\">Gumroad&#8217;s price increase</a> and editors displaced by <a href=\"http://help.getrevue.co/en/articles/6819675-we-ve-made-the-difficult-decision-to-shut-down-revue\">Revue shutting down</a>. Newsletters, which were already booming as a communication tool in recent years, have become more critical than ever, as the uncertainty around Twitter has people scrambling to find reliable ways to stay connected.</p>\n\n\n\n<p>WordPress.com (and Jetpack users) have had the ability to send published posts to email subscribers for years. This isn&#8217;t usually marketed as a newsletter (as you can see below) but functions in the same way.</p>\n\n\n\n<img />\n\n\n\n<p><a href=\"https://wordpress.com/setup/newsletter/intro\">WordPress.com Newsletter</a> is a new streamlined product for scheduling and publishing newsletters using WordPress. It uses the same underlying infrastructure as subscribing to sites via email, offering users unlimited email subscribers. During setup, newsletter creators can import up to 100 subscribers from other newsletter services by uploading a CSV file. </p>\n\n\n\n<img />\n\n\n\n<p>A theme designed for newsletters is put in place with additional <a href=\"https://wordpress.com/blog/2022/11/18/new-patterns-subscriptions-link-in-bio-wireframes-and-more/\">newsletter-focused block patterns</a> for the Subscribe box. Users can take advantage of the Site Editor to further customize the site&#8217;s background, site icon, and accent colors. This type of website showcases the versatility of the block editor, as newsletter creators can quickly design their own unique websites, without editing any code.</p>\n\n\n\n<p>With all the activity in the newsletter product space lately, I had to give myself a tour of WordPress.com&#8217;s new product to see how it stacks up to creating campaigns with other dedicated email services. In the first part of the setup process, users will upload a logo, specify a site name and description, and select a color. </p>\n\n\n\n<img />\n\n\n\n<p>The next section displays pricing options with a plain link at the top for the free plan. Paid plans are ad-free and allow users to send unlimited emails. In the future, the premium plan will allow users to monetize their newsletters in various ways, such as selling subscriptions or collecting donations.</p>\n\n\n\n<img />\n\n\n\n<p>After selecting a plan and free or paid domain name, users have the opportunity to upload up to 100 emails from other newsletter services. I selected the free plan, so that number may be unlimited with the paid plans. The site setup is fairly quick, as it puts the default theme in place, and users are encouraged to start writing. It&#8217;s a simple flow entirely geared towards publishing newsletters. Depending on the readiness of the post, newsletter authors can have their first issue landing in subscribers&#8217; inboxes in minutes.</p>\n\n\n\n<img />\n\n\n\n<p>The default newsletter site theme doesn&#8217;t come with additional style variations but users can easily edit the templates to expand, reduce, or further customize what is shown on the frontend. </p>\n\n\n\n<img />\n\n\n\n<p>The default theme is very minimalist but looks nice out of the box on both desktop and mobile. The subscribe form is front and center and recent posts, or newsletter &#8220;issues,&#8221; show up underneath with a featured image.</p>\n\n\n\n\n\n\n\n<p>If you are familiar with WordPress, using the block editor is likely far easier than any newsletter campaign editor out there, as these tend to be clunky and limited in options. Publishing directly from WordPress.com also eliminates the need to copy the content over into a newsletter service and reformat it for email, a problem that services like <a href=\"https://newsletterglue.com/\">Newsletter Glue</a> have set out to solve for self-hosted WordPress sites.</p>\n\n\n\n<p>if you are a subscriber of <a href=\"https://indieweb.org/principles#:~:text=%F0%9F%97%BD%20The%20IndieWeb%20Community%20is,platform%20agnostic%20platforms%2C%20plurality%20over\">IndieWeb principles</a>, one of the most important considerations in launching a newsletter is that you own your own data and have the opportunity to practice POSSE (Publish (on your) Own Site, <a href=\"https://indieweb.org/Category:syndication\">Syndicate</a> Elsewhere). WordPress.com&#8217;s new offering makes it effortless to follow this workflow for newsletter publishing. </p>\n\n\n\n<p>One bonus feature, which is lacking with major newsletter service providers, is that subscribers can reply to the email to leave a comment on the published post, furthering the public conversation around each issue of the newsletter.</p>\n\n\n\n<p>Although WordPress.com has experience sending millions of emails at scale, the newsletter product&#8217;s pricing and sales copy doesn&#8217;t mention anything about deliverability rates. This is a major selling point for people coming from other services which haven&#8217;t performed as well on deliverability. There is also no comparison chart showing the limitations of the free account, which may be an important consideration for those who are just testing the waters.</p>\n\n\n\n<p>For those who are not hosting their sites at WordPress.com, there are a myriad of diverse plugins for self-hosted WordPress that can make newsletter publishing a seamless process. It requires knowing which ones to install, setup, and configure. For non-technical publishers, WordPress.com&#8217;s newsletter product is the most approachable entry point to WordPress-based newsletter publishing that exists on the market right now. If the company can add the monetization features fast enough, this product has the potential to become a major contender among newsletter services jostling to capture the creator economy.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 06:56:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Do The Woo Community: A State of the Word Dinner with Some Woo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/a-state-of-the-word-dinner-with-some-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>As some WordPress people gathered in NYC for the WordPress State of the Word, the night before a few of us gathered for a dinner and drinks.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-state-of-the-word-dinner-with-some-woo/\">A State of the Word Dinner with Some Woo</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Dec 2022 10:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"Gutenberg Times: Design System Bridge to WordPress, Fonts management, Playground and more – Weekend Edition #239\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22982\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://gutenbergtimes.com/design-system-bridge-to-wordpress-fonts-management-playground-and-more-weekend-edition-239/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28376:\"<p>Howdy, </p>\n\n\n\n<p>Welcome to the last edition of the year 2022! It&#8217;s been a fantastic year for the block editor with many new features. What is your most favorite feature that gives you joy whenever you use it? Please let me know pauli@gutenbergtimes.com or use the comments. </p>\n\n\n\n<p>For me, it&#8217;s the little things, like drag &amp; drop (🐉 + 💧) an image from a screenshot right into the post or the [[ -shortcut to link to other posts and pages on the same site or the gallery block that now has individual image blocks, or the nicely revamped color-picker to assign colors. I am excited about the next WordPress version, to see great enhancements of the Site Editor. It will feel much more natural to use and easier for a user to orient oneself. </p>\n\n\n\n<p>This last edition of the year has a lot of interesting content for all WordPress users, developers, site builders and designers. </p>\n\n\n\n<p>Wishing you and yours Happy Holidays, and a happy, healthy and prosperous New Year!</p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: With all the talk about collaborative editing, I just came across a great article by the CKEditor team. (Thank you, <a href=\"https://twitter.com/nomad_skate\">Mark Andrew</a>) There are quite a few considerations and decisions to make. If you want to start thinking deeply about the problem, this is one article for you. <a href=\"https://ckeditor.com/blog/Lessons-learned-from-creating-a-rich-text-editor-with-real-time-collaboration/\"><strong>Lessons learned from creating a rich-text editor with real-time collaboration</strong></a>, by <strong><a href=\"https://twitter.com/scofalik\">Szymon Cofalik</a></strong>, Collaboration Features Technical Leader and <strong>Anna Tomanek</strong>, Documentation &amp; Content Manager at CKEditor.</p>\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Reserve your seats!</a></strong>&nbsp;The next&nbsp;<strong>Gutenberg Live Q &amp; A</strong>&nbsp;will take place on January 11th, 2023 at 5pm ET / 22:00 UTC .</p>\n\n\n\n<p>In this show,&nbsp;<strong>Isabel Brison</strong>,&nbsp;<strong>Andrew Serong</strong>&nbsp;and&nbsp;<strong>Justin Tadlock</strong>&nbsp;will discuss the opportunities and challenges of the Layout features for site builders, and they will be available to answer your questions. Isabel Brison will also give us a demo of various layout scenarios.&nbsp;<strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Join us!</a></strong></p>\n\n\n\n<p><em>This is also a preview on&nbsp;<a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison’s talk at WordCamp Asia</a></em>&nbsp;i<em>n February 2023</em></p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\"><img /></a>\n</div></div>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-state-of-the-word\">State of the Word</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-7\">Gutenberg 14.7</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#4-tutorial\">Tutorials on WordPressTV</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><br /><strong>Anne McCarthy</strong> posted a new <strong><a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">FSE Program Testing Call #19: Running Through Refinements</a></strong>. The test instructions have you focus on several changes to the site editing experience, including an easier way to navigate between content, the ability to change menus from within the block settings sidebar, and the addition of block inspector tabs to make blocks with numerous controls easier to configure and customize. </p>\n\n\n\n<p>The goal of these changes is to make it easier to navigate, see changes at scale, create an easier navigation editing/creation experience, and have a more intuitive experience when editing individual blocks. The testing instructions outline how to use a prebuilt test site or set up your own test site and then walk through the steps of exploring the browse mode, editing navigation, and updating the homepage and overall styling.</p>\n\n\n\n<h3 id=\"1-state-of-the-word\">State of the Word</h3>\n\n\n\n<p>In his <em>State of the Word</em>, <strong>Matt Mullenweg</strong> spoke about the big things in 2022 and 2023. The Q &amp; A was also recorded. You can watch the <a href=\"https://www.youtube.com/watch?v=VeigCZuxnfY\">recording on YouTube</a>. The fine folks at various WordPress News outlets, already published their recap articles: </p>\n\n\n\n<p><strong>Emily Schiola,</strong> editor at the <em>Torque Magazine</em> wrote in <a href=\"https://torquemag.io/2022/12/open-for-all-state-of-the-word-2022/\"><strong>Open for All: State of the Word 2022</strong></a>, &#8220;Some themes were familiar such as the power of the community, and the importance of keeping open-source open. But others like collaborative editing within the dashboard and new plugin taxonomies spoke to an exciting and vibrant future of the project that couldn’t have been imagined when it was created 20 years ago.&#8221;</p>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote in her article, <a href=\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\"><strong>State of the Word 2022: Matt Mullenweg Highlights Gutenberg’s Progress, Announces New Community Tools</strong></a>, &#8220;Mullenweg said he is hoping Gutenberg can create an “open block standard that can be used anywhere,” where users learn it on one system, and it can be applied in other apps.” Gooding also explains more on the &#8220;Tools Coming to the Community: New Taxonomies for the Plugin and Theme Directories and Staging “Playground” that Runs WordPress in the Browser&#8221;.</p>\n\n\n\n<p><strong>Matt Mederios</strong> published a recap on <em>The WPMinute</em>, with a great list of bullet points, links to mention activities and sites, and a transcript: <a href=\"https://thewpminute.com/state-of-the-word-2022/\"><strong>State of The Word 2022</strong></a></p>\n\n\n\n<p>In addition, I just want to point out the gigantic numbers around contributors in 2022.</p>\n\n\n\n<a href=\"https://www.youtube.com/watch?v=VeigCZuxnfY\"><img /></a>\n\n\n\n<p>These are very impressive numbers of unique contributors on releases in 2022. </p>\n\n\n\n<ul>\n<li>1,399 &#8211; unique count of contributors to releases in 2022</li>\n\n\n\n<li>652 &#8211; first time contributors, that&#8217;s almost half! 🤯 That&#8217;s a huge amount of onboarding work by the teams! </li>\n\n\n\n<li>424 &#8211; contributed in 2021 and returned in 2022</li>\n\n\n\n<li>322 &#8211; who took a break in 2021 and returned in 2022</li>\n\n\n\n<li>204 &#8211; contributed to all releases in 2022</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<a href=\"https://www.pewresearch.org/\"><img /></a>\n\n\n\n<p>On a side note: The <a href=\"https://www.pewresearch.org/\">Pew Research Center</a> received a shout-out for their &#8220;Politology&#8221; Quiz, built with blocks and over 1 Million people taking it. <strong>Seth Rubenstein</strong>, lead web developer, was a guest on a Gutenberg Times Live Q &amp; A and gave a great demonstration about the team&#8217;s work with the block editor. </p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n \n <div class=\"ngl-articles-wrap ngl-articles-webview\">\n \n \n <div class=\"ngl-article-mobile\">\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td valign=\"top\">\n <div class=\"ngl-article-mob-wrap\">\n <div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2022/07/Screen-shot-Pew-Research-Center-july-0222-.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-block-first-approach-at-pew-research-center/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Block-First Approach at Pew Research Center</span></a></div><div class=\"ngl-article-excerpt\">On July 22, 2022, Michael Piccorossi, Head of Digital Strategy and Seth Rubenstein, Lead Developer at Pew Research Center talked to co-hosts Anne McCarthy, WordPress Product Liaison and Birgit Pauli-Haack,…</div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\n \n \n </div>\n\n</div>\n\n\n\n\n<h3 id=\"2-gutenberg-14-7\">Gutenberg 14.7</h3>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the <a href=\"https://wptavern.com/gutenberg-14-7-introduces-color-coding-for-template-parts-and-reusable-blocks-adds-media-tab-to-inserter\"><strong>Gutenberg 14.7 release Gutenberg 14.7 Introduces Color Coding for Template Parts and Reusable Blocks, Adds Media Tab to Inserter</strong></a>. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://github.com/WordPress/gutenberg/releases/tag/v14.8.0-rc.1\">Gutenberg 14.8 RC</a></strong> candidate is already available for testing. Stable release is scheduled for December 21st, 2022. Release lead is <strong>Ryan Welcher</strong>. </p>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><a href=\"https://wordpress.tv/2022/12/12/creating-a-call-to-action/\"><strong>Create a Call to Action</strong></a> is the recording of a recent workshop by <strong>Wes Theron</strong>, WordPress Training team. A Call To Action (CTA) is an element on your site that asks people to take a specific action. In this session, you will look at how you can create your own CTA by only using the block editor.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> was a guest on Press This the WordPress Community Podcast. <strong>Doc Pop</strong> discussed with McCarthy what&#8217;s <a href=\"https://torquemag.io/2022/12/press-this-whats-next-6-2/\"><strong>beyond Site Editing, What’s Next for WordPress 6.2?</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><a href=\"https://stunningdigitalmarketing.com/episode-285-talking-all-things-wordpress/\"><strong>In Episode 285</strong></a> <strong>Rob Cairns</strong>, of Stunning Digital Marketing and host of the podcast with the same name, sat down with Birgit Pauli-Haack and Matias Ventura to talk all things WordPress</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding </strong>reports on the latest release of WooCommerce Blocks. <strong><a href=\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\" target=\"_blank\" rel=\"noreferrer noopener\">WooCommerce Blocks 9.1.0 Introduces Products Block in Beta</a>.</strong> <a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks</a> is a plugin that helps users to create and customize online stores using blocks. The latest version, 9.1.0, includes the beta release of a new Product Query-powered Products block, which allows users to arrange and display products using preset options and control the layout. The Products block is based on the core Query Loop block and is intended to eventually replace all the plugin&#8217;s current product-displaying blocks. </p>\n\n\n\n<p>In addition to the Products block, version 9.1.0 introduces three new &#8220;product-adjacent&#8221; block patterns, which focus on presentation rather than store data. It also includes support for alignment settings in the Add to Cart Button and Product Rating elements.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Doc Pop</strong> hosted the <a href=\"https://torquemag.io/2022/12/torque-social-hour-learning-to-use-the-site-editor/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Torque Social Hour: Learning to use the Site Editor</strong></a>. This week&#8217;s episode features Brian Gardner teaching Doc how to edit a block-based WordPress theme with the new Site Editor. Gardner designed one of the Style Variations in the new Twenty Twenty Three theme</p>\n\n\n\n<h3 id=\"4-tutorial\">Tutorials on WordPressTV</h3>\n\n\n\n<ul>\n<li><a href=\"https://css-tricks.com/adding-box-shadows-to-wordpress-blocks-and-elements/\">Training team published a few more videos on WordPressTV</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/15/exploring-category-templates-and-the-query-loop-block/\" target=\"_blank\" rel=\"noreferrer noopener\">Exploring Category Templates and the Query Loop Block</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/15/displaying-the-comments-block-in-block-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">Displaying the comments block in block themes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/07/using-the-navigation-block-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Using the navigation block</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/30/using-page-templates/\" target=\"_blank\" rel=\"noreferrer noopener\">Using page templates</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/08/the-key-to-locking-blocks/\" target=\"_blank\" rel=\"noreferrer noopener\">The key to locking blocks</a></li>\n</ul>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> invites you to a <a href=\"https://make.wordpress.org/core/2022/12/16/hallway-hangout-performance-considerations-for-block-themes/\"><strong>Hallway Hangout: Performance Considerations for Block Themes</strong></a> on <strong>January 10, 2023 at 9:30 ET / 14:30 UTC.</strong> She wrote: &#8220;As more is being done to work on performance as it relates to block themes, a hallway hangout has been planned to bring together folks from various backgrounds to see what else can be worked on, unblocked, and better understood. This is meant to be both a knowledge sharing and alignment creating session between folks from various areas&#8221;. The Zoom link will be shared in the <a href=\"https://make.wordpress.org/core/tag/core-performance/\">#core-performance</a> Slack channel before starting<strong>.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In this article, <strong><a href=\"https://wpvip.com/2022/12/09/figma-to-wordpress/\">Exporting Design System Tokens From Figma to WordPress</a>,</strong> <strong>Alec Geatches</strong>, and <strong>Gopal Krishnan</strong>, both software developers at Automattic walk you through their process &#8211; in great detail &#8211; to connect the design system created in Figma with the WordPress theme to keep both in sync. With the assistance of two plugins one for Figma and one for WordPress, they showed how you can import your design system from Figma into the theme.json of a WordPress theme. The two plugins are <a href=\"https://www.figma.com/community/plugin/843461159747178978/Figma-Tokens\">Figma Tokens plugin</a> and <a href=\"https://github.com/Automattic/vip-design-system-bridge\">Design System Bridge</a></p>\n\n\n\n<p>In a new two-part series, Geatches and Krishan build on that foundation by showing you how you can use imported design tokens from theme.json in the block editor. This allows you to better organize your WordPress site to reflect your design system.&nbsp;The first part of the series is already published: <a href=\"https://wpvip.com/2022/12/15/using-a-design-system-with-the-wordpress-block-editor-pt-1-theme-json/\"><strong>Using a Design System with the WordPress Block Editor Pt. 1: theme.json</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his article on the Developer Blog,<strong> Justin Tadlock</strong>, outlined how theme developers can <strong><a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">leverage theme.json and per-block styles for more performant themes</a>.</strong> The block system in WordPress also allows for per-block styles to be loaded, in-lining the CSS for specific blocks in the front-end view. It is recommended for theme developers to utilize <code>theme.json</code> and per-block styles to ensure a performant theme, and to check for available settings and styles before using custom CSS.</p>\n\n\n\n<p>In this workshop recording, <strong>Jonathan Bossenger</strong> took participants on a <strong><a href=\"https://wordpress.tv/2022/12/15/wordpress-theme-template-tour/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress theme template tour</a>.</strong> Templates are the WordPress theme files used to render website pages. Getting acquainted with templates is an important step in learning to build themes for WordPress.</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In his video, <strong><a href=\"https://wordpress.tv/2022/12/09/manage-your-block-theme-fonts-with-create-block-theme/\" target=\"_blank\" rel=\"noreferrer noopener\">Manage your block theme fonts with Create Block Theme</a>,</strong> <strong>Jonathan Bossenger</strong>, shows you how you can add external fonts to your block theme by using the updated plugin <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme</a>. Whether you want to download a font from Google fonts, or install a font you’ve downloaded elsewhere, Create Block Theme makes it painless to add them to your block theme.</p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>With his post, <a href=\"https://css-tricks.com/saving-settings-for-a-custom-wordpress-block-in-the-block-editor/\"><strong>Saving Settings for a Custom WordPress Block in the Block&nbsp;Editor</strong></a> on CSS Tricks, Manoj Kumar, published the fourth part of the series <em>Working With External APIs in WordPress Blocks</em>. Kumar covers saving the settings options, so they persist the next time someone edits a post that contains the custom block, that was created and expanded in the last three post of the series. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his recent live streams, Ryan Welcher started <a href=\"https://www.youtube.com/watch?v=cGsAfBMZzhw\"><strong>building an Advanced Query Loop plugin</strong></a>. Part one is now available on his YouTube channel. This plugin introduces a Query Loop block variation that will empower users to be able to do much more complicated queries with the Query Loop block, such number of posts to display and post meta. The <a href=\"https://github.com/ryanwelcher/advanced-query-loop\">source code</a> is already available on GitHub. Part 2 will be posted in the next couple of weeks. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The latest article on the WordPress Developer Blog, come from <a href=\"https://twitter.com/dsas\"><strong>Dean Sas,</strong></a> JavaScript wrangler at Automattic. It&#8217;s an introduction of <a href=\"https://developer.wordpress.org/news/2022/12/13/application-state-managed-withdispatch-withselect-and-compose-101/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Application state managed withDispatch, withSelect and compose 101</strong></a>. <code>withDispatch</code>, <code>withSelect</code> and <code>compose</code> are a triad of Gutenberg methods that are often used together to manage application state. This article briefly explains why these methods are important, what they’re used for and how to use them.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> continues is series of videos <em>Developing blocks without React! &#8212;</em> The video on <a href=\"https://wordpress.tv/2022/12/12/lets-code-developing-blocks-without-react-block-supports/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Block Supports</strong></a> is the latest of the series. He wrote: &#8220;So far, we’ve built a WordPress block using plain JavaScript which supports custom styles via a stylesheet, uses block attributes and the RichText component to allow the user to edit the block content, and uses a custom toolbar control to allow the user to align the RichText content. Next, we will look at adding additional support for managing the block styles, via the Block Supports API.&#8221; </p>\n\n\n\n<p>The other editions </p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\">Controls</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/25/lets-code-developing-blocks-without-react-part-2-take-2/\">Attributes and&nbsp;RichText</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/18/lets-code-developing-blocks-without-react-all-about-attributes/\">All about Attributes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/11/lets-code-developing-blocks-without-react-part-1/\">Block&nbsp;Basics</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the latest <a href=\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\"><strong>Drupal Gutenberg 2.6 Released with Drupal 10 Compatibility</strong></a>. The module allows users to build landing pages and save reusable blocks using a block-based editor without needing to know code &#8211; Over 3,300 Drupal installations currently use Gutenberg, and the module has been regularly updated for over 4 years &#8211; Gutenberg ships with 60+ blocks and access to a cross-platform community library for custom blocks. M<a href=\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\">ore info is available in the article. </a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The <strong>WordPress Playground</strong> was mentioned in the State of the Word this week. It was renamed from the former WordPress Sandbox title, as it was too close to a commercial product in the WordPress space. <strong>Sarah Gooding</strong> reported on it in here article <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\" target=\"_blank\" rel=\"noreferrer noopener\">Project Demos: Test-Drive Themes and Plugins in the Browser</a>. The <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a> project uses WASM to provide in-browser IDE and test environment for theme and plugin development. <strong>Adam Zieliński,</strong> core contributor sponsored by Automattic, introduced the project in September wiith his post on the Make Blog: <a href=\"https://make.wordpress.org/core/2022/09/23/client-side-webassembly-wordpress-with-no-server/\">Client-side WebAssembly WordPress with no server</a>. <a href=\"https://wordpresswasm.readthedocs.io/en/latest/\">Documentation and API reference</a> is also available </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>January 11, 2023 – 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justing Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>December 21, 2022 – 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170454/\"><strong>Creating a Theme with the Create Block Theme Plugin Session 1</strong></a></p>\n\n\n\n<p>December 21, 2022 – 3 am ET / 8 am UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170469/\">Creating a Theme with the Create Block Theme Plugin Session 2</a></strong></p>\n\n\n\n<p>January 19, 2023 &#8211; 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290363952/\"><strong>Let’s make custom templates in the Site Editor!</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Imajinn AI &#8211; Holidays-at-futuristic-Times-Square</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Dec 2022 08:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Drupal Gutenberg 2.6 Released with Drupal 10 Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140392\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/drupal-gutenberg-2-6-released-with-drupal-10-compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3317:\"<p>Drupal Gutenberg, the <a rel=\"noreferrer noopener\" href=\"https://www.drupal.org/project/gutenberg\" target=\"_blank\">Gutenberg module for Drupal</a> that was created by <a rel=\"noreferrer noopener\" href=\"https://www.frontkom.no/\" target=\"_blank\">Frontkom</a>, has released <a href=\"https://www.drupal.org/project/gutenberg/releases/8.x-2.6\">version 2.6</a> with compatibility for Drupal 10. The module offers Drupal users a better authoring experience using blocks, allowing them to quickly build landing pages and save reusable blocks inside the editor without any code required. </p>\n\n\n\n<p>There are more than 3,300 active Drupal installations using Gutenberg, and the module has been receiving regular updates for more than four years. It ships with 60+ blocks as well as access to the <a href=\"https://gutenbergcloud.org/\">Gutenberg Cloud</a>, a cross-platform community library for custom Gutenberg blocks. Since the blocks are JavaScript-only, they work across both Drupal and WordPress sites alike. </p>\n\n\n\n<p>&#8220;Installing Gutenberg slashed our content creation time by 80%,&#8221; a content creator at <a href=\"https://www.fortum.com/\">Fortum</a>, a Finnish state-owned energy company, reported to the Drupal Gutenberg maintainers. &#8220;We are able to create more content in a shorter time, allowing us to be much more agile than we used to.&#8221; </p>\n\n\n\n<p>Version 2.6 includes the following fixes and enhancements:</p>\n\n\n\n<ul>\n<li>Handle translations for mapped fields&nbsp;<s><a href=\"https://www.drupal.org/project/gutenberg/issues/3320395\">#3320395: Handle translations for mapped fields</a></s></li>\n\n\n\n<li>Support for field groups&nbsp;<s><a href=\"https://www.drupal.org/project/gutenberg/issues/3096002\">#3096002: Support Field Groups</a></s></li>\n\n\n\n<li>Fixes for Claro&nbsp;<a href=\"https://www.drupal.org/project/gutenberg/issues/3142400\">#3142400: Compatibility with Claro/Gin theme</a></li>\n</ul>\n\n\n\n<p>Drupal Gutenberg has removed support for Drupal 8 in this release. Version 2.6 is fully compatible with Drupal 10, released yesterday. Drupal 10 was previously scheduled for June 2022 but pushed back to December. This release shipped with all the new features of <a href=\"https://ckeditor.com/ckeditor-5/\">CKEditor 5</a>, which boasts a more modular architecture, but it is a complete rewrite of the previous version with no backwards compatibility. </p>\n\n\n\n<p>CKEditor is the most popular editor among Drupal users and is now the default editor. Drupal users can easily swap out their editor on per content-type basis, and the Gutenberg module can be enabled as an alternative to CKEditor. The module is superior to CKEditor when it comes to design controls and building layouts.</p>\n\n\n\n<p>The maintainers of Drupal Gutenberg hold periodic contributor meetings on a bi-weekly basis, every second Friday at 15-16 CET on <a href=\"https://meet.google.com/afp-yive-gio?authuser=0\">Google Meet</a>. They have fully embraced the vision of Gutenberg as a platform where blocks can be used to edit content and design across a variety of applications. If you are a user of the Drupal Gutenberg module, the maintainers are requesting feedback through a <a href=\"https://docs.google.com/forms/d/e/1FAIpQLScfprFqqc9luZYzXDclSTNeQOXa82thu3TlFbA0uIEx7sXwNg/viewform\">30-second survey</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:43:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WordPress.org blog: State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4480:\"<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" />\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\"https://profiles.wordpress.org/laurlittle/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>laurlittle</a> and <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a> for review and collaboration.</em></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"BuddyPress: BuddyPress 11.0.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=327475\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://buddypress.org/2022/12/buddypress-11-0-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3223:\"<p>The first release candidate for BuddyPress 11.0.0 is now available!</p>\n\n\n\n<div class=\"is-horizontal is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-RC1.zip\">Let&#8217;s test it!</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>&#8220;Release Candidate&#8221; means that we think the new version is ready for release, but with a bit less than 200,000 active installs, hundreds of BuddyPress plugins and Thousands of WordPress themes, it’s possible something was missed. BuddyPress 11.0.0 is slated for release&nbsp;on&nbsp;<strong>January 5, 2023</strong>, but&nbsp;<em>your</em>&nbsp;help is needed to get there — if you haven’t tried 11.0.0 yet,&nbsp;doing it now is a great idea!</p>\n\n\n\n<p>You can test the&nbsp;<a href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-RC1.zip\">11.0.0-RC</a>&nbsp;pre-release in 4 ways :</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-RC1.zip\">Download the release candidate here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>A detailed changelog will be part of our official release note, but&nbsp;you can get a quick overview by reading the post about the&nbsp;<a href=\"https://buddypress.org/2022/11/buddypress-11-0-0-beta1/\">11.0.0 Beta1</a>&nbsp;release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against BuddyPress 11.0.0. If you find compatibility problems, please be sure to post to this specific&nbsp;<a href=\"https://buddypress.org/support/topic/buddypress-11-0-0-release-candidate/\">support topic</a>&nbsp;so we can figure those out before the final release. We strongly advise you to have a look at the&nbsp;<a href=\"https://bpdevel.wordpress.com/category/development-notes/11-0/\">11.0.0 developer notes</a>&nbsp;to figure out what to focus on during your testing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>How you can help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">Help us translate BuddyPress into as many languages as possible!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a>&nbsp;point of the 11.0.0 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can share it with us replying to this <a href=\"https://buddypress.org/support/topic/buddypress-11-0-0-release-candidate/\">support topic</a> or if you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">file one on BuddyPress Trac</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 05:51:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: State of the Word 2022: Matt Mullenweg Highlights Gutenberg’s Progress, Announces New Community Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140361\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/state-of-the-word-2022-matt-mullenweg-highlights-gutenbergs-progress-announces-new-community-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6540:\"<p>State of the Word (SOTW) watch parties kicked off around the world this afternoon as Matt Mullenweg delivered his annual address to the WordPress community. A small group of people gathered live in New York City to participate while the majority of enthusiasts watched via the livestream. Mullenweg spent an hour reviewing and celebrating the work done across the project in 2022 before taking questions from the audience.</p>\n\n\n\n<p>At last year’s SOTW, Mullenweg spoke about how Gutenberg adoption is growing beyond WordPress and how he believed it could become &#8220;bigger than WordPress itself.&#8221; In addition to Gutenberg <a href=\"https://wptavern.com/the-block-editor-is-coming-to-wordpress-support-forums\">getting rolled out on the bbPress support forums</a> this week to modernize the WordPress support experience, the block editor has found its way into more apps in 2022. </p>\n\n\n\n<p>Mullenweg cited a few examples including <a href=\"https://engineawesome.com/\">Engine Awesome</a> (a Laravel-based SaaS application), the Pew Research Center&#8217;s Political Typology Quiz, the web version of Automattic&#8217;s Day One app, and the Tumblr post form. He noted that in Tumblr, 99% of the editor is hidden &#8211; there&#8217;s no sidebar, everything happens inline. Mullenweg said he is hoping Gutenberg can create an &#8220;open block standard that can be used anywhere,&#8221; where users learn it on one system and it can be applied in other apps.</p>\n\n\n\n<p>For those who had been missing WordCamps, one of the major highlights of 2022 was the return to in-person events. From 2021 to 2022, the number of meetup groups doubled. Only one WordCamp was held in 2021 but that jumped to 22 WordCamps in 2022. Mullenweg highlighted how WordCamps have historically been &#8220;the magical ingredient&#8221; for onboarding people to contribute and teaching them about WordPress culture. </p>\n\n\n\n<p>For being just one year back into in-person events, WordPress has done well in 2022 with 1,399 release contributors and 652 contributing for the first time. There were 204 people who contributed to all releases in 2022 and 424 who contributed in 2021 and returned in 2022. Some 322 contributors took a break in 2021 and returned in 2022.</p>\n\n\n\n<img />\n\n\n\n<p>People are also contributing to Openverse, which has indexed more than 22 million images, 1.1 million audio files, and has handled more than 59 million requests in the last 30 days.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Tools Coming to the Community: New Taxonomies for the Plugin and Theme Directories and Staging &#8220;Playground&#8221; that Runs WordPress in the Browser</h3>\n\n\n\n<p>It wouldn&#8217;t be the State of the Word without a few exciting announcements. Mullenweg unveiled a plan to add new taxonomies for the theme and plugin directories that will help users more quickly ascertain the purpose of the extensions they are considering. </p>\n\n\n\n<p>For example, there would be a tag for the type of plugins that a developer might create to solve a problem but may not be intended for wide public use and may not come with dedicated support. Another tag would be designated for &#8220;Community&#8221; plugins, which Mullenweg said is for software that &#8220;belongs to all of us&#8221; with the lead developers stewarding it for the next generation. This tag is for plugins that do not have any upsells and invite contributions. Some of these plugins will be <a href=\"https://wptavern.com/matt-mullenweg-renews-push-for-canonical-plugins\">canonical plugins</a>, those that are officially supported by core developers and receive attention from the security team. Gutenberg and the importer plugins are a few examples.</p>\n\n\n\n<p>Another tag would be designated for commercial plugins that have some sort of upsell and often include commercial support. Anything with a pro version will fall within this category. Mullenweg said he wants WordPress.org to create an environment where commercial and non-commercial plugins can exist together harmoniously.</p>\n\n\n\n<p>The new taxonomies will be launching in the directories this month and will also eventually make their way into the plugin and theme screens inside the WordPress admin. This will be a major improvement that will give users of all experience levels a better understanding of the extensions they are examining, making it easier to select the right type for their needs. </p>\n\n\n\n<p>Mullenweg also announced WordPress&#8217; official support for the <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\">WordPress Sandbox project</a>, which we featured earlier this month. He outlined a plan for what will officially be called &#8220;WordPress Playground.&#8221; The experimental project uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser without a PHP server</a>, making it possible to spin up new playgrounds in just a couple of seconds. This will enable things like a guided, interactive WordPress landing experience where developers can edit code live and see the results right away. It will also make it possible for users to try plugins directly from the directory and may someday be used to allow people to contribute to WordPress core.</p>\n\n\n\n<p>A new website for WordPress Playground is located at <a href=\"https://developer.wordpress.org/playground/\">https://developer.wordpress.org/playground/</a> where anyone interested can check out the experimental project for running a WordPress instance entirely in your browser. There&#8217;s also a new #meta-playground Slack channel for those who want to join the conversation.</p>\n\n\n\n<img />\n\n\n\n<p>WordPress turns 20 next year. Mullenweg noted that not many software projects make it that long but WordPress is also growing faster than ever, currently powering 43% of websites according to W3Techs and 32% according to Builtwith. A new website at <a href=\"https://wp20.wordpress.net/\">wp20.wordpress.net</a> will be headquarters for the festivities, including swag, merchandise, and a new Milestones book for the most recent 10 years of WordPress&#8217; history. </p>\n\n\n\n<p>If you didn&#8217;t have the chance to catch the State of the Word this afternoon, check out the recording below to hear Mullenweg&#8217;s vision for the next phases of WordPress and see demos of all the progress made on block themes and full-site editing in 2022.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 01:42:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"Post Status: The WP Agency Journey with Krissie VandeNoord of North UX — Post Status Draft 134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145935\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://poststatus.com/the-wp-agency-journey-with-krissie-vandenoord-of-north-ux-post-status-draft-134/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42735:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/krissierae\">Krissie VandeNoord</a>, founder of <a href=\"https://www.northuxdesign.com/\">North UX</a>, talks with Cory Miller about their work in creating people-first solutions for the nuanced needs of ecommerce and membership site owners. Krissie shares her story from her early days as a designer and blogger to launching her own agency. Her work and energy will encourage you to think beyond what is to build the possibilities that make things work better. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Cory Miller is joined by North UX founder, Krissie VandeNoord to discuss her journey of agency ownership. Their work contributes to the businesses they serve, winning big and experiencing new levels of growth from the unique solutions they bring. From hearing about her background as a natural problem solver to her experiences engaging client needs with creative solutions, you will be inspired to break through limitations into the land of possibility.</p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Building for Nuance: </strong>North UX likes to hone in on what makes a business really unique and find solutions to highlight those things so they are experienced as an asset instead of a detractor.</li>\n\n\n\n<li><strong>Problem Solving Spiral:</strong> Poking around, asking questions, and figuring out ways to develop solutions spiraled Krissie from seeing and experiencing challenges to being a solution-building developer. Navigating and figuring things out is the work it takes to give you the experience to increase your confidence threshold. This can act as a springboard to making great connections and solving more complex problems.</li>\n\n\n\n<li><strong>Impact of Creating Efficiency: </strong>This isn’t just about creating solutions that get customers to take certain actions. It is also about saving hours or weeks of time spent on manual processes. As a small business owner, I know this makes a BIG difference, and that is exciting. Time can be invested in growth, making the impact exponential. Initial solutions fuel inspiration to shift from survival to ongoing enhancements.</li>\n\n\n\n<li><strong>Empowering DIY-ers:</strong> Rather than viewing self-build solutions as a threat or an indication of impending obsoletion, Krissie frames this as an opportunity to educate and become a trusted expert who will be there when more complex solutions are needed.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.northuxdesign.com/\">North UX</a></li>\n\n\n\n<li><a href=\"https://geovin.com/\">Geovin</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/krissierae\">Krissie VandeNoord</a> (Team Lead, <a href=\"https://twitter.com/northuxdesign\">North UX</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Tes Draft. Um, this is another great story in our agency journey series. Uh, we\'ll be talking to Chrissy, one of our great agency owners. At post status about her journey today, and I got to a couple weeks ago, get to know Chrissy and more about her story, and I\'m really excited to, uh, be able to share her story with you.</p>\n\n\n\n<p>So Chrissy, thanks so much for being on the draft podcast, talking about your journey and what you\'re doing with WordPress.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Thank you so much for having me. I\'m super, super excited. Um, yeah, I couldn\'t be, I couldn\'t be more excited to just kind of be engaged in this community and seeing kind of.</p>\n\n\n\n<p>Communities, specifically around agencies kind of start to develop.</p>\n\n\n\n<p><strong>Cory Miller:</strong> It\'s really exciting. There\'s so many good people, members of post status doing great work, and I love when I get to talk to people like you and just see what cool things you\'re doing in the world. So could you tell us, uh, a little bit about [00:01:00] your agency and where you\'re at now and what you do for your clients in the world?</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> absolutely. So, um, I own North. And, um, my last name is Van De nor, which actually means from the North and, um, which is where North UX came from. When I started, I knew I didn\'t, I wanted to be more than just me. Um, and so I didn\'t want to just like, use my name. And so that\'s, that\'s how we got to North ux.</p>\n\n\n\n<p>And ux obviously. That\'s just very much the center of what we try to do is we\'re really trying to deliver, um, a development experience that very much is considerative of um, how real people are going to engage with what we\'re, what we\'re doing and what we\'re creating, and. [00:02:00] Very, very much like a people first kind of</p>\n\n\n\n<p><strong>Cory Miller:</strong> approach.</p>\n\n\n\n<p>Yeah. I love that there\'s real humans that actually have to use the web, so it\'s kinda good to have that experience. I love, I love the, the basis for the name. Um, so what kind of work do you do at your agency? Yeah. Basis,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> we typically, um, find, I would say, you know, right now, 99% of our work is, is WordPress in some regard, most of it is some kind of e-commerce, whether it\'s a membership type e-commerce, or whether it\'s actual like a product WooCommerce, um, setup and.</p>\n\n\n\n<p>I would say that we specialize in, uh, working with clients who need something that doesn\'t exist in an off-the-shelf plugin right now. Um, sometimes that\'s just a, a really custom user flow. Like they\'re, they\'re going to use WooCommerce, but they want to really walk their customers through in [00:03:00] a very set, set way.</p>\n\n\n\n<p>Um, sometimes it\'s custom functionality, um, like extending subscriptions or, um, We\'ve done a project with Restrict Content Pro where um, instead of renewing on, um, like a normal annual, like one year from when they signed up, we needed everybody to renew at the exact same time every year. Uh, little things like that that, um, really kind of, I think help businesses and set themselves apart in an industry to be able to just extend kind of like what\'s just out there and accessible to the general business population.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And so I, I\'m sorry, I was writing a note, but if, if I missed it. So a lot of your work is membership site projects,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> um, either memberships or Woo</p>\n\n\n\n<p><strong>Cory Miller:</strong> commerce. Woo commerce. Okay. Yeah. Um, and, and particularly helping with the experiences and some of those custom things that don\'t happen out of the box that I know [00:04:00] from my experience, Christy, and you know, this way better than me building the e-Commerce Pro product back in the day.</p>\n\n\n\n<p>There are a thousand flavors of e-commerce times infinity because everyone has like you. I was trying to imagine when would somebody want to start the first day or whatever that could be, you know, probably a hundred different things, but like there\'s so much nuance in e-commerce and memberships that why organizations, agencies like yours exist because there\'s so many nuanced needs out there.</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> I mean, it\'s impossible for a plug and developer to be able to truly like be all things to all people and you know, arguably, Trying to do that to a certain extent is going to like water down or bloat, um, what they\'re actually offering. And so we tend to work with plugins that are built in a way and intended to be easily extended by another developer.</p>\n\n\n\n<p>Um, because what we just found is like businesses, [00:05:00] even though, you know, it\'s interesting cuz I think businesses. There are, there are definitely, they\'re buckets. You can put businesses, you know, you\'re direct to consumer, you\'re selling a physical product, you\'re selling, um, you know, digital content. And, but at the same time, like they\'re so different and so nuanced and they have such unique needs, um, that it\'s just really fun to kind of like hone in on what makes businesses really unique and then like work to highlight that and, and make that be an asset instead of a detractor.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, we would always have this example like, okay, you, you sell a t-shirt, but you want a membership with it. And oh, by the way, you want a 14 day trial, or you want them to pay a dollar for a 14 day trial. And, uh, I mean, you know, oh, and then you wanna be able to add consulting time or a coaching thing to it.</p>\n\n\n\n<p>And that\'s the day and age we we\'re, we\'re in right now is, The web enabling these businesses with [00:06:00] vast setups to be able to offer those things online where it was picking up the phone call and say, okay, well I\'ll take one of those, one of those, one of those. Well, this is technology doing that. So I love that you all are helping people with that, because I see that need so often with these vastly nuanced, uh, needs.</p>\n\n\n\n<p>Yeah,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> and I feel like that level of nuance was really only available at enter. Like, I mean, even like five, 10 years ago, you know, you, if you were a small business like you, you just had to try to make do, um, because it just wasn\'t as accessible. And there are so many tools now that get you, you know, 70% of the way there, that that extra 30% you can bite that off and it\'s no big deal, um, to a small business.</p>\n\n\n\n<p>Whereas before it just wasn\'t even. , you know, something they were really considering as a possibility.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And that\'s so great, like you said, with the enterprise, [00:07:00] um, you know, with huge budgets, Disney or some other big can code that probably for, to code that. Mainly now we have some tools and great agencies like yours now.</p>\n\n\n\n<p>So tell me a little bit about your team set up and how you work.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so, um, I have. One official employee, um, and she\'s a project manager and she has been, oh my goodness, that was such a, I can\'t believe I waited so long to hire a project manager, . I should have done that a long time ago. Um, and then everyone else currently right now is a contractor.</p>\n\n\n\n<p>Um, they are either in Europe or in the us and I find that it works best for us to kind of just work on. Hourly model. That\'s how we structure our projects. Um, we give people estimated ranges and we bill hourly. And so I just do the same for, for my people. Um, and I, I just feel like that, [00:08:00] that for me, I\'ve found has been the best setup.</p>\n\n\n\n<p>I\'ve tried a few other things, but as far as like really like paying people for like the value that they\'re bringing, Really doing a true straight up hourly has been the best, best situation. And so right now we have got, um, A freelance designer and UX person, um, that contributes regularly. And then we\'ve got, um, a front end developer that contributes regularly.</p>\n\n\n\n<p>And, um, we have two backend developers beyond just myself. I\'m a full stack develop. I started as a designer and then quickly kind of moved into the development world cause I wanted to control what things looked like and, and now somehow a full stack developer. So, um, And, and just kind of wear all of the hats.</p>\n\n\n\n<p>But yeah, that\'s kind of the makeup of the team at the current moment. And we\'re honestly at the spot now where I\'m I. [00:09:00] Very much looking towards January and having meetings with clients and them saying, we wanna do this, we wanna do that. And I\'m like, okay, I need to figure out who I\'m hiring on , who I\'m gonna bring on</p>\n\n\n\n<p>Cause we\'re not gonna be able to cover</p>\n\n\n\n<p><strong>Cory Miller:</strong> all of this. That\'s a great reflection of doing good work, you know? Yeah.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> I\'m a, it\'s a really, it\'s, it\'s an exciting place to be, but it\'s also, um, I feel like whenever I bring somebody new on, there\'s this trade off. Um, my productivity decreases because I\'m spending time training them and getting up them up to speed and they\'re not like immediately productive.</p>\n\n\n\n<p>And so there\'s this like dip of like, Okay, now we\'re</p>\n\n\n\n<p><strong>Cory Miller:</strong> great. . Yes. Yes. Well, um, okay, so that\'s how you work and you started getting in a little bit to your journey. So that\'s where you are now. Um, working with WordPress obviously, but also membership sites, WooCommerce, and how your team kind of set up and how you work with clients.[00:10:00]</p>\n\n\n\n<p>Tell us how you got here.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so like I said, I started as a designer, um, and. It was just like early two thousands, mid two thousands, somewhere there, , where, you know, blogs were super popular and everybody had a blog and um, and so I. I had a blog, but I was a designer, so I wanted to make the blog look like I wanted it to look like, especially if it\'s like representing like myself.</p>\n\n\n\n<p>And so I just, it, it happened to be in WordPress and I just got in there and started like poking around and figuring things out. And that was really kind of like my first experience with code was kind of just. Poking things. And, you know, fast forward, you know, a few years I started with a very small agency.</p>\n\n\n\n<p>Um, and so we, we all wore a lot of hats. And when [00:11:00] I started it was, oh, you know, can, you know, doing a lot of design, but it was, oh, can you, you know, tweak this, you know, h t l newsletter or can you tweak this webpage or whatever. And after a few years, I would start to ask them questions and they\'d be like, you know, more than we do about development right now,</p>\n\n\n\n<p>And, and it just kind of spiraled into. Becoming the queen of web, um, and, and grew from there. I\'ve just always been a natural problem solver. And so that idea of, Hmm, can I do this? I wanna find out , like I wanna figure out how I can do that. Um, and so it, yeah, it just kind of spiraled from there. And then, um, I was with that small agency for I think about eight years, and it just was a real obvious, um, You know, they weren\'t bringing in the business to fill my plate.</p>\n\n\n\n<p>And, um, and so we parted ways, but, and at, at [00:12:00] first they were like, let\'s, you know, keep this relationship going. We\'ll use you as a contractor. But I was like, ah, I just really want a job . Um, I was at that point in time, um, when I started my business, I had a one, I, not even a one year old, he wasn\'t even one years old.</p>\n\n\n\n<p>my second kid. and my daughter was three at the time. So like, I had small children and I was just like, I just want something like nice and consistent and reliable. Um, but it, I did end up starting my business and it\'s been fantastic. Um, and I\'ve never looked back. Um, and it\'s been just, uh, like in some regards, my fear of it, lacking the stability I\'m feeling.</p>\n\n\n\n<p>I\'ve got these young kids, um, Has like the other side of that coin is it\'s offered me the flexibility to like be fully invested in work and at the same time feel like I can be present with my kids and my family. Um, [00:13:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> do good work and also live life, like Right. Live and manage life. Yeah, absolutely. Now what, what year was it when you started North ux?</p>\n\n\n\n<p>Uh, 2016. 2016. And then how, how did it evolve to, to get into where you\'re really focusing on a lot of commerce and membership projects? Um,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> you know, it kind of just happened. Organically. One of my first clients was, um, I took over a project that was WooCommerce, um, from someone else. And that was the first time I think I\'d done anything with WooCommerce that really involved extending it in any way.</p>\n\n\n\n<p>Um, and so I just like dove right into the deep end. And, um, man, I, I learned a lot about Woo Conversa in that project cuz we were migrating them. From a whole other system and subscriptions. And so it was, it was just a beast of a [00:14:00] process, um, that took way longer than we thought it was going to. But, um, I gained so much from the experience that then it just was a springboard towards doing more and more along those lines.</p>\n\n\n\n<p>And I also made some really great connections and working on that project, kind of like. Space. Um, and so it just was kind of like a natural extension. And then I think also because I am such a, I just, I really love the problem to solve. Um, I think that e-commerce space just tends to offer the problem a lot.</p>\n\n\n\n<p>And so I naturally gravitate towards like, Ooh, that\'d be fun, .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Um, you, you have to have that mindset and attitude, I think for that because I think of those subjects, I go, oh my gosh. Every possibility, every possible problem. But you have to be somebody that loves that rub. Rubrics cube, you know,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> kinda problem solving.</p>\n\n\n\n<p>Oh yeah. Yeah. I used to say, um, and I don\'t think this is true anymore, but especially like when I was still working at that agency now as I transitioned into my own business, that when somebody [00:15:00] would come to me and say like, can this be done? I would do just enough research to feel like 60% confident that the answer was yes,</p>\n\n\n\n<p>And then I\'d be like, yeah, we can do it. And then I would just figure it out. Um, and I\'m also just a very much like a, I will finish it. Like it may take longer than I wanted it to. Um, but I\'m kind of like, I can\'t let it go until like I actually solved the problem. And so I don\'t think there\'s any, there\'s ever been something where I like was like 60% and then got into it and was like, oh, nope.</p>\n\n\n\n<p>Nevermind. Can\'t do it. . Um, and I would say anymore, like I. My confidence threshold is much higher just because from experience. Um, so I\'ve never, I think at that 60% mark, but that\'s definitely where I started</p>\n\n\n\n<p><strong>Cory Miller:</strong> that I think that\'s good though. And that\'s the beauty of everything we\'re doing with talented people like yourself is if you have that much confidence, confidence, at least, you know, the other part is part of [00:16:00] just navigating and figuring it out.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Exactly.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Exactly. Can you, can you share, um, and you don\'t have to say the name, of course. We want to, you know, I know sometimes we, we need to be careful sharing clients and names and stuff. We can, can you talk about a recent project you\'re really proud of, or you really appreciated what you did, uh, with, with some of your clients?</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> stick out. Oh my goodness. Like so many of them. So many of them. And I don\'t think I have any, well, I\'ve got one that I\'m currently working on that I can\'t really talk about, but the rest are all out there for anybody to experience. Um, trying to think what\'s the best, like, I think the most recent one, um, that has just like a real kind of feel, good sense to it is, um, and I talked about it in, um, the woosh, um, presentation that I.</p>\n\n\n\n<p>Goodness. When was that? Beginning of October. Um, but it\'s this furniture company, Giovan, and we did [00:17:00] a implementation, well, we, they were on a very static site. Um, they sh they sold through dealers and so they, for a long time just didn\'t have the need for e-commerce because it, you know, dealers are pay, we\'re placing large orders, that sort of a thing.</p>\n\n\n\n<p>But we essentially moved them into, like, we moved them from like way old to like way new. And to watch them kind, kind of like step into this, um, digital world has been really fun. And, um, we created, you know, a 3D model that connects to the WooCommerce attribute so people can like customize their furniture pieces and like see it like in real time, um, which is really cool.</p>\n\n\n\n<p>But, Like, the part that I\'m loving about it is how much we are like equipping, like the people inside the company and like how it boosts [00:18:00] their excitement about what they\'re doing and then, um, like how that then trickles out to like their customers. And just like having all these like improved experiences and being able to do things so much more efficiently.</p>\n\n\n\n<p>I love it. We like, create efficiency for a business, like almost more so than, um, you know, when we design a great landing page and the, you know, we look at the analytics and we\'re like, oh, the users are doing exactly what we wanted them to do. That\'s, that\'s rewarding, but, I think that I get a little bit more of like a rewarding sense when I\'m like, I just saved you like 20 hours of work every month.</p>\n\n\n\n<p>Um, that to me, I\'m, I think just because I am a small business owner, I know how big of a difference that makes to a small business that I get really excited about this stuff.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh yeah. Anytime you can save time like that, I hope they value and understand that like you just took a big swath of our time out, that we can focus [00:19:00] on other things now.</p>\n\n\n\n<p>And particularly like a furniture company that might, that you know, more traditional sales thing and being able to have that ability now on the web I think is pretty, pretty amazing. Oh</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> yeah. And they do. I mean that\'s, um, I need to figure out how to better quantify those things when I get those calls cuz they\'re harder things to try to quantify is like when you\'re talking about like employees time.</p>\n\n\n\n<p>But we built one system that has um, an integration that tracks like continuing education credits. And this organization put on a conference every year and they\'ve got, their members are tracking their credits score. The way that they were trying to process that. It was literally like manual assignment sheets and then somebody was like data entering, like all of this stuff.</p>\n\n\n\n<p>And after we transitioned to this new digital system, and it\'s like the conference was over and like all of the credits were entered like in real time as people attended because it happened digitally. He was just like, I don\'t even know what to do with myself. I mean, I would\'ve spent six [00:20:00] weeks trying to process all of these c e credits.</p>\n\n\n\n<p>And I don\'t have to, like, it\'s done. I don\'t, like it was just mind blowing to him of like, oh my goodness, I don\'t have to do</p>\n\n\n\n<p><strong>Cory Miller:</strong> this. I\'ve got experience helping a mental health organization, um, offer CEUs. And, and they do have that same thing, so I need to refer them on to you to do something like that because, um, she was the point of content.</p>\n\n\n\n<p>Their marketing director would spend some, probably half a day on the back end after we did a C E U. Um, To like, you know, get all the paperwork and everything ready to go. Yeah. And</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> it\'s, it\'s always somebody like that. It\'s always like, why is the marketing director having to do this? Because like there isn\'t somebody that is, I, you know, there\'s nobody else to do it and just has to get done.</p>\n\n\n\n<p>And cuz you know, they do the website and so, you know, whatever, like it somehow falls in their lap. But those are the people that I think appreciate the most when you save them time too. Cuz they\'re like, I didn\'t wanna be doing this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Yeah. Uh, it seems very much [00:21:00] too is like if you\'re an organization business that is trying to do more of those things online to reach more people and probably secondarily don\'t fully realize it efficiently, um, that\'s how you help people navigate that and then build the result they\'re trying to get.</p>\n\n\n\n<p>That helps save time and increase the, and grow the.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> And honestly, I think that in some regards, when small businesses can see like that kind of a direct value, it\'s easier for them to bite off a more sizable project, like financially speaking, because they\'re like, oh shoot, I don\'t have to hire somebody.</p>\n\n\n\n<p>Well, that\'s a lot of money that I\'m. Saving, like sure, that\'s not a big deal if I am gonna pay you, you know, 30 or $40,000 to build this, you know, site for us. Um, cuz now I don\'t, I\'m not hiring another person. Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> and so it\'s a, it\'s a big win. We see that all the time at post status with our members trying to hire hiring\'s tough.</p>\n\n\n\n<p>Not even now. It\'s just tough in general because [00:22:00] mm-hmm. , um, there are some tech companies that can throw lots of money at someone. You, the person wants to stay engaged with interesting projects, and I think that\'s where our agencies like yourself, um, really have a great solution in that. Why hire a full-time person?</p>\n\n\n\n<p>That might not have the training excu, uh, skills experience that you all have access to and, and have, um, to do that. Where I, I hear a lot of our agencies, you know, they\'re the support, summer support for just, you know, basic website updates, but then someone like you all just to, you know, manage, I know from my own, our own business projects, You know, when I, when we add in an e-commerce option, I\'m like, who\'s gonna babysit it?</p>\n\n\n\n<p>Who\'s gonna be there when we need to do something more than the base software might do for us? Cuz we have those new odds setups and things like that. And then having someone like North UX where you can rely on them without having this, there\'s so much overhead. Like we talked just a minute ago of hire having [00:23:00] a full-time employee, but someone who knows WordPress and web stuff.</p>\n\n\n\n<p>That\'s even a higher bar, I think.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Oh yeah. Oh. Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> do you do ongoing, um, support retainers, things like that? Yes.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yes, we do. And what I, what\'s interesting is I was, I was just actually just sharing the story the other day that about a client, um, that like when they came to us, and this is, this is the same client with the, uh, CU credits.</p>\n\n\n\n<p>Like when they came to us, um, they had it, they had a WordPress site, but Oh my word. It was so outdated and it was, There was, there was p h P in the content editor. Like, I mean, it was just like, and I\'m like, I dunno what, like it\'s, it was so like, Not great. And so it was very much like, and, and they were very kind of like, oh, trepidatious about, you know, spending money.</p>\n\n\n\n<p>And so like, we started them on this like super small monthly plan where we\'re [00:24:00] literally just like, we\'re just gonna duct tape things to kind of like keep this thing going. And then I, you know, gave them proposal for a new site. Really like pared it down to try to get it to this point where it, it was a digestible cost for them.</p>\n\n\n\n<p>Um, and so it was like a really limited scope. Um, and like, you know, that first plan they were on, I think was like $500 a month or something like that. And, um, now they\'ve turned into clients and like once we launched their site, they\'re like, we can automate that. And they, I mean, we probably. On a given month, do 30 to 50 hours worth of work for them because there\'s just something else that they\'re like, Ooh, let\'s make.</p>\n\n\n\n<p>New and shiny. Let\'s make that new and shiny. Let\'s do this. And you know, and they have really bought into like the value of what we\'re doing for them. And so it\'s not even so much like, uh, a support plan or a retainer from [00:25:00] just like a, keeping the site going. It\'s very much like an ongoing enhancements.</p>\n\n\n\n<p>And we find that a lot of our clients kind of, once we do like the first big project, they. Start to kind of move into this, like, oh, we just want to continue to iterate and add more features and functions and, um, and just make it bigger and better and, and whatnot. So it\'s, it\'s even beyond just the support of it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Be that backstop, be that partner ally when let them do what they do best and you all do what you do best and that seems to work fantastically. Um, okay. So, you know, with all of your experience with, with e-commerce, Myriad of versions of this. I\'d love to get your thoughts on where it\'s going, what trends and things and themes you see.</p>\n\n\n\n<p>You know, during C O D. Um, I was just talking to an agency owner yesterday that, you know, they were working with, let\'s say yoga studio studio business owners, and [00:26:00] their, their business and business model got flipped on its head. So then they transitioned to use web, which I think is such a, if there\'s positives that come outta Covid, I would mm-hmm.</p>\n\n\n\n<p>or, or the pandemic. I would say it\'s this. Did you know the whole world exists out here for your. From an e-commerce and all these type of things, perspective, what are you seeing? What are you looking forward to, you know, out there as, as you know, particularly as you work daily with clients doing these, these cool projects for them to grow their businesses.</p>\n\n\n\n<p>What, what things are you seeing that stand out to you?</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Um, yeah, so I think that there are a lot of people that are kind of like jumping into. Um, online business kind of a thing like for the first time. Um, and at the same time, like as so many companies have kind of come out with these, and even as work processes moved more towards like a, a, um, an actual usable like [00:27:00] page builder, like d i y kind of a website thing, um, I think that.</p>\n\n\n\n<p>You know, I think you could either look at that from, a couple of, you can look at it like, oh, it\'s almost like, well, we\'re just not needed anymore. People can just do it themselves. Um, but the reality is like, that\'s not true. But I think that the way that we are, um, engaging with the people that do want to do it themselves, um, I think there\'s opportunity there and I\'m kind of excited about some of the things cause I.</p>\n\n\n\n<p>As nor as an agency, we\'ve really served these very, um, like small businesses, but very established small businesses. Like they\'ve been around for a while. They have, you know, 10 to 20 employees. Um, you know, they\'ve got money to invest in a sizable project. Um, But I\'ve kind of always wanted to figure out, um, a better way to catch people, like catch businesses as they\'re [00:28:00] just starting because of what I\'ve, I mean, so many of our clients made poor tech decisions in the beginning and are with us because we are unraveling something.</p>\n\n\n\n<p>And so how can, how can with this new. Uh, you know, it\'s so easy to do, like no code or page builders or whatever, like how can I walk people through, like just when they\'re just starting to give them resources so they understand the decisions that they\'re making and are when they\'re comparing apples to apples or apples to oranges.</p>\n\n\n\n<p>Cuz sometimes they don\'t even know. And, um, they\'ve got a cucumber and they had no idea, um, , but it\'s technically a fruit. So, Um, but like give them the resources and the knowledge about technology in a way that they feel empowered to make some decisions and like also establish ourselves as, um, as experts in this area so that [00:29:00] then when they get to the point where they need the one little extra piece, like were there to help.</p>\n\n\n\n<p>Um, and so I think that there is definitely almost like that, um, moving towards like a. Partner with you around some of the stuff you can do for yourself, um, as opposed to just, we\'re gonna do it all for you.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I can see that. You know, we, we, we have a great friend who we helped start, get her off the ground and she was doing a physical product and, um, it was interesting trying to look at all the options out there.</p>\n\n\n\n<p>And I know a little bit more than most people, uh, when it comes to these. But what we found too was like there\'s a graduation point you may start selling here and it helps fill a need, but then you get into more complex, and if you\'re like me, I go, I don\'t do this all day, every day. I wanna find somebody, an expert to lead and guide me through these things.[00:30:00]</p>\n\n\n\n<p>I\'ve talked to a lot of our agency members like yourself and go, there\'s this shift from, it\'s not just Technic delivery. That\'s part of it for sure. But there\'s also this thing, I hope clients are more and more valuing that having a guide like yourself who has been there, done that do, does this every day to help you not make those big pitfalls.</p>\n\n\n\n<p>So when there\'s those steps, it seems like there might be a. , you know? Mm-hmm. , maybe we get on this thing, it\'s the software as a service software solution, and it gets \'em to a step, but then they\'re like, we\'re ready to graduate. We wanna do all these things. Then they can come to North UX and say, guide me, lead me, and deliver the project too.</p>\n\n\n\n<p>Yeah. Are, are you seeing that more and more to, it seems like that\'s what you\'re saying.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, exactly. And I think what I\'m, what I\'ve seen is I feel like, um, I\'ve encountered so many businesses that kind of, you know, they did the steps and then they got to a point where they were like, we wanna take the next step, but we can\'t figure out how to do it from where we\'re at.</p>\n\n\n\n<p>And [00:31:00] by the time that they\'re actually starting to engage with someone who knows this space, it\'s like, oh, well we actually need to go all the way back. Square one because you have reached the top of where these stairs were going. Yeah. Um, and so helping them to make the decisions along the way that are really paving the way for their future, even before they really know what their future holds, um, I think is just, it\'s huge.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Oh yeah. And there\'s so much complexity there and, and I say that\'s a byproduct of success. You\'ve gotten to this point that you need to come to Christy and other, other, our agency owners and help you guide them because you\'ve gotten to this complexity and hopefully that\'s called success. Well, you\'re ready.</p>\n\n\n\n<p>Yeah. You need, you need this. You\'re ready to take this new step and blow your business out the doors for the next stage. Yeah.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> And we also, like, we\'ve even. Taken clients through to where they\'re, they\'ve now they\'ve grown enough that they\'ve hired an in-house developer and like we\'ve partnered with them to help them figure out like, how do we hire, should [00:32:00] we hire an in-house developer?</p>\n\n\n\n<p>Um, and how do we hire and then continue to have a collaborative relationship to like supplement. , you know, their developer and like also just helping business understand like, you know, it\'s unrealistic to think that you\'re gonna hire one person that\'s going to be able to truly do everything. Exactly.</p>\n\n\n\n<p>You know, and so helping them understand like what is the range of skills and where\'s like the 80% mark in a role that you could carve out? And where is this 20% like? Somebody that actually could do the 20% and then you\'re still stuck with , the 80% that they\'re not skilled for having to outsource, um, those kinds.</p>\n\n\n\n<p>Of things of like really just walking everybody through from the point of like DIYing your first website to your big enough business that you have an in-house developer and we\'ve held your hands the whole way</p>\n\n\n\n<p><strong>Cory Miller:</strong> through . It seems like that\'s a trend in a lot of business, not just in the technical side, but where you might have somebody, that person, and I\'m not [00:33:00] trying to devalue that person, but is a coordinator of these things that works with great groups and partners.</p>\n\n\n\n<p>I don\'t wanna say vendors, but partner. Yeah, that can come in and do those, and they\'re air traffic control. I need to get these things done. We talk about a lot with the marketing side of things, Matt. You might have some that coordinates all these other things, but if you, like you said, if you expect that person to do everything, you\'re wishing for a unicorn.</p>\n\n\n\n<p>Yeah. Yeah. All right. Well, Christy, this has been awesome. I want to ask finally, um, what you\'re excited. Coming up next year or so, um, with your work and your agency work in the world.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah. Um, oh my goodness. I\'m like, what, what do I pick? . Yeah. Right. I\'m excited about a lot. Um, I think the thing that I\'m most excited, and I\'ve not said this like out loud publicly yet, I don\'t think, um, but kind of along these lines of [00:34:00] this, like to helping people start at the beginning is, um, I\'m getting ready to kind of launch like a pilot program of what I\'m calling like a e-commerce website in a day where, um, we have like some really specific.</p>\n\n\n\n<p>Steps that like we walk them through that they engage with like some forms and like, you need to gather this and you need to gather that and you need to do that. And where they kind of like walk them through prepping all the things that they need and making some of the preliminary decisions. And then, um, they literally schedule a day with us where we\'re just gonna crank out, um, you know, we\'re gonna start with our, our skeleton theme and just be able to get them.</p>\n\n\n\n<p>A site up and going because they\'ve done all of the preliminary work, will import their products, you know, all of that stuff, and it\'ll happen on that day, and then they\'ll have a website. Um, that\'s fantastic. I\'m really excited about it. I [00:35:00] did kind of a really, a trial project with someone last year and, um, she, she does pottery and so this is again, Our, we\'ve been with these really established small businesses, but starting to kind of find some people that are just getting started on their business.</p>\n\n\n\n<p>And after we launched her site, she was like, I just did a new product drop and I made $4,000 at a time of the year where I wouldn\'t have done an in-person event and would not have made any money. You know? And she\'s like, Like, I can\'t believe I waited this long to have my own website. Um, and so I\'m excited about like that kind of stuff.</p>\n\n\n\n<p>Um,</p>\n\n\n\n<p><strong>Cory Miller:</strong> that\'s so fun when you\'re able to, yeah. The work you\'re doing contributes to this big win where someone\'s in that setting able to like start and grow their business in a really tough time. Uh, and then like your furniture, uh, example is help them make processes more efficient and grow their [00:36:00] business.</p>\n\n\n\n<p>Yeah. Exciting work. Thank you, Christie, for sharing your story. And, um, tell us finally where they can find out about more about you and your, your work.</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> Yeah, so, um, north ux design.com is where you can certainly know all about North UX and what we\'re doing and, um, Whatnot. And then as far as me, best place is probably Twitter, which, um, my personal Twitter is Chrissy Ray, k r i s s i e r a e.</p>\n\n\n\n<p>Um, and I do have a North Uax design Twitter as well. Um, but it\'s not quite as, it\'s a little bit more, you know, polished professional. I don\'t engage with it quite as much, but those are great places to find me.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, thank you Christy, for this time and sharing your</p>\n\n\n\n<p><strong>Krissie VandeNoord:</strong> story. Yeah, thanks so much for having me.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 20:06:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Matt: Fusion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=72681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://ma.tt/2022/12/fusion/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:973:\"<p><a href=\"https://www.energy.gov/articles/doe-national-laboratory-makes-history-achieving-fusion-ignition\">This is a big deal</a>. There are a lot of <a href=\"https://chat.openai.com/\">big deals</a> happening right now, it&#8217;s honestly a very exciting time to be in tech. I feel like a sailor in a tumultuous sea, and they should have sent a poet. T. S. Eliot was actually the inspiration for WordPress&#8217; tagline &#8220;Code is Poetry&#8221; and I&#8217;m reminded of this from <a href=\"https://stuff.mit.edu/people/dpolicar/writing/poetry/poems/fareForward.html\">The Dry Salvages</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>O voyagers, O seamen,<br />You who came to port, and you whose bodies<br />Will suffer the trial and judgement of the sea,<br />Or whatever event, this is your real destination.&#8221;<br />So Krishna, as when he admonished Arjuna<br />On the field of battle.<br />Not fare well,<br />But fare forward, voyagers.</p>\n</blockquote>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 06:19:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Post Status: Annual Survey • State of the Word 2022 • Suggest Community Summit Topics • WordPress Playground (WASM)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://poststatus.com/annual-survey-state-of-the-word-2022-suggest-community-summit-topics-wordpress-playground-wasm/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:16511:\"<h2 id=\"h-this-week-at-wordpress-org-december-12-2022\">This Week at WordPress.org (December 12, 2022)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Tune in Thursday for Matt\'s annual State of the Word address. Check out the WordPress Playground now. It brings key platform dependencies into the browser that you can embed in your own site today. Your feedback into the annual WordPress survey helps shape the project, so fill it out as soon as possible. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_adc852-65\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-ic_people\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">2022 Survey, SotW, Community Summit, and the WordPress Playground</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f465.png\" alt=\"👥\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f6dd.png\" alt=\"🛝\" class=\"wp-smiley\" /> <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/12/sotw-2022-a-celebration-of-the-four-freedoms-of-open-source/\">State of the Word 2022: A Celebration of the Four Freedoms of Open Source</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-11 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2022/12/08/accessibility-team-meeting-notes-december-2-2022/\">Accessibility Team Meeting Notes: December 2, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">Idea: Creating a translation events kit for Meetups</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/15/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-december-14-2022/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">December Update: Global Meetup Reactivation Project</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Suggest Topics for the 2023 WordPress Community Summit</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/latest/#:~:text=hallway%20hangout%3A%20performance%20considerations%20for%20block%20themes\">Hallway Hangout: Performance Considerations for Block Themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">What’s new in Gutenberg 14.7? (7 December)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">Enhancing the Scripts API with a loading strategy</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/update-to-content-only-editing-filter-namespace/\">Update to content only editing filter namespace</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/14/dev-chat-summary-wednesday-december-14-2022/\">Dev Chat summary: Wednesday, December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/13/editor-chat-agenda-december-14-2022/\">Editor Chat Agenda: December 14, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/08/editor-chat-summary-wednesday-december-7-2022/\">Editor chat summary: Wednesday, December 7, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/07/dev-chat-summary-wednesday-december-7-2022/\">Dev Chat summary: Wednesday, December 7, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/13/application-state-managed-withdispatch-withselect-and-compose-101/\">Application state managed withDispatch, withSelect and compose 101</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/documentation-team-update-december-12-2022/\">Documentation Team Update – December 12, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2022/12/08/nominations-are-in-hosting-team-rep-2023/\">Nominations are in – Hosting Team Rep 2023</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/14/notes-global-marketing-team-meeting-november-30-2022/\">Notes: Global Marketing Team meeting, November 30, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/14/notes-global-marketing-team-meeting-december-7-2022/\">Notes: Global Marketing Team meeting, December 7, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">Refreshing&nbsp;the WordPress Showcase</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2022/12/13/community-meeting-recap-14-december-2022/\">Community Meeting Recap (13 December 2022)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/13/performance-team-meeting-summary-13-december-2022/\">Performance Chat Summary: 13 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/13/agenda-weekly-polyglots-chat-dec-13-2022-700-utc/\">Agenda: Weekly Polyglots Chat – Dec. 13, 2022 (7:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-plugins\">Plugins</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/12/plugin-review-team-12-december-22/\">Plugin Review Team: 12 December ’22</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2022/12/08/hallway-hangout-lets-chat-about-the-future-of-custom-css-with-block-themes/\">Hallway Hangout: Let’s chat about the Future of Custom CSS with block themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/08/fse-program-site-editor-sneak-peek-summary/\">FSE Program Site Editor Sneak Peek Summary</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">FSE Program: Seeking volunteers to use Replay.io for capturing bugs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/test-team-update-12-december-2022/\">Test Team Update: 12 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2022/12/14/themes-team-meeting-notes-december-13-2022/\">Themes Team Meeting Notes –&nbsp;December 13, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/12/13/themes-team-update-december-13-2022/\">Themes team update December 13, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/12/meeting-agenda-for-december-13-2022/\">Meeting Agenda for December 13, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/09/training-team-meeting-recap-for-december-6-2022/\">Training Team Meeting Recap for December 6, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-development-live-stream-building-an-advanced-query-loop-plugin\">WordPress development live stream: Building an Advanced Query Loop plugin</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=getting-started-with-a-wordpress-org-account\">Getting Started with a WordPress.org Account</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=start-blogging-in-2023-part-2-planning-your-blogs-content\">Start Blogging in 2023 Part 2: Planning Your Blog’s Content</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=start-blogging-in-2023-part-1-planning-to-reach-your-audience\">Start Blogging in 2023 – Part 1: Planning To Reach Your Audience</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep3-wordpress-migration-local-live-to-local-live-bangla\">EP3: WordPress Migration (Local/Live to Local/Live) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=get-blogging-in-2023-set-up-your-blog-interactive-2\">Get Blogging in 2023: Set Up Your Blog (Interactive)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=get-blogging-in-2023-set-up-your-blog-interactive\">Get Blogging in 2023: Set Up Your Blog (Interactive)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-developing-blocks-without-react-review\">Let’s code: Developing Blocks without React! – Review</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep2-wordpress-installation-on-local-and-live-cpanel-ftp-mysql-bangla\">EP2: WordPress Installation on Local and Live (cPanel, FTP & MySQL) | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=ep1-wordpress-environment-setup-local-wp-laravel-valet-bangla\">EP1: WordPress Environment Setup (Local WP & Laravel Valet) | Bangla</a></li>\n</ul>\n\n\n\n<h3 id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/manage-your-block-theme-fonts-with-create-block-theme/\">Manage your block theme fonts with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/the-key-to-locking-blocks/\">The Key to Locking Blocks</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/templates/\">Using Page Templates</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/streamline-your-block-theme-development-with-create-block-theme/\">Streamline your Block Theme development with Create Block&nbsp;Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/trabalhando-com-estilos-globais/\">Trabalhando com estilos globais</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/padding-versus-margin/\">Padding Versus Margin</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://phpconference.com/berlin-en/\">International PHP Conference Berlin 2023</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 02:41:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Performance Lab Plugin to Add New Experimental SQLite Integration Module in Upcoming 1.8.0 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://wptavern.com/performance-lab-plugin-to-add-new-experimental-sqlite-integration-module-in-upcoming-1-8-0-release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7434:\"<p>WordPress&#8217; Performance Team contributors have merged <a href=\"https://github.com/WordPress/performance/pull/547\">a new experimental SQLite integration module</a> that is on track to be included in the upcoming version 1.8.0 of the <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> plugin. (This is the plugin that contains a collection of feature plugins with performance-related modules the team hopes to land in WordPress core.) The new module allows the adventurous to test the new SQLite implementation, with the understanding that the overall user experience will still be rough.</p>\n\n\n\n<p>In a proposal titled <a href=\"https://make.wordpress.org/core/2022/09/12/lets-make-wordpress-officially-support-sqlite/\">Let’s make WordPress officially support SQLite</a>, Yoast-sponsored core contributor Ari Stathopoulos contends that less complex sites (small to medium sites and blogs) don&#8217;t necessarily benefit from the requirement of using WordPress&#8217; standard MySQL database:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>On the lower end of the spectrum, there are small and simple sites. These are numerous and consist of all the blogs, company pages, and sites that don’t have thousands of users or thousands of posts, etc. These websites don’t always need the complexities of a MySQL/MariaDB database. The requirement of a dedicated MySQL server increases their hosting cost and the complexity of installation. On lower-end servers, it also decreases performance since the same “box” needs to cater to both a PHP and a MySQL/MariaDB server.</p>\n</blockquote>\n\n\n\n<p>In an ideal world, users could select their database type during installation. Stathopoulos said this would require WordPress to have a database abstraction layer, which other platforms like Drupal have had more 10+ years. </p>\n\n\n\n<p>&#8220;Building a database abstraction layer for WordPress would be a colossal task – though it might be one that, at some point in the future, we may have to undertake to ensure the project’s continued evolution and longevity,&#8221; he said.</p>\n\n\n\n<p>As an alternative, Stathopoulos sees SQLite as a &#8220;perfect fit&#8221; and cited the benefits of using it for smaller websites:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<ul>\n<li>It is the most widely used database worldwide</li>\n\n\n\n<li>It is cross-platform and can run on any device</li>\n\n\n\n<li>It is included by default on all PHP installations (unless explicitly disabled)</li>\n\n\n\n<li>WordPress’s minimum requirements would be a simple PHP server, without the need for a separate database server.&nbsp;</li>\n\n\n\n<li>SQLite support enables lower hosting costs, decreases energy consumption, and lowers performance costs on lower-end servers.</li>\n</ul>\n</blockquote>\n\n\n\n<p>This new SQLite integration module is based on the <a rel=\"noreferrer noopener\" href=\"https://github.com/aaemnnosttv/wp-sqlite-db\" target=\"_blank\">wp-db-sqlite</a> plugin, a SQLite database driver drop-in that is also <a href=\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\">used by the WordPress Sandbox project</a>, as WASM doesn&#8217;t support MySQL. The wp-db-sqlite plugin was based on the original work of Kojima Toshiyasu in his eight-year-old <a href=\"https://wordpress.org/plugins/sqlite-integration/\">SQLite Integration plugin</a>, which is no longer available for download on WordPress.org. Stathopoulos said these solutions have evolved over the years, have been thoroughly tested, and proven to work seamlessly, although they are not well known among users. </p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://make.wordpress.org/core/2022/09/12/lets-make-wordpress-officially-support-sqlite/#comment-43729\">commented</a> in support of the proposal so the implementation moving into the Performance Lab plugin may have a decent shot at landing in core someday in the future. Most participants in the discussion on the proposal were supportive of the idea but also discussed a few of the potential drawbacks. These include poorer support for things like multi-author editing and search. </p>\n\n\n\n<p>&#8220;MySQL is and should continue to be the default because if you have aspirations to be the next big thing, then MySQL can scale better,&#8221; Stathopoulos said.&#8221; If on the other hand you just want a blog, a company site with your about page and a contact form to have an online presence, or any type of small site (which is arguably the majority of sites on WordPress) then SQLite is all you’ll ever need and it will perform a lot better.&#8221;</p>\n\n\n\n<p>A few participants in the discussion also bristled at the controversial, religious <a href=\"https://sqlite.org/codeofethics.html\">code of ethics</a> SQLite holds for its contributors. Stathopoulos sees it as a non-issue because the project is open source and the technology is widely used.</p>\n\n\n\n<p>&#8220;Its popularity speaks volumes regarding what it can do and where it can be used,&#8221; he said in response to criticism of the idea of tying WordPress to a project with an objectionable code of ethics.</p>\n\n\n\n<p>If you have used WordPress from the early days, you have witnessed it become more complicated over the years. Discussions around the idea of a &#8220;<a href=\"https://chriscoyier.net/2022/11/01/wordpress-lite/\">WordPress Lite</a>&#8221; have popped up every few years, but the platform&#8217;s specific selection of features seems to have been a major factor in WordPress powering 43% of the web (according to <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">W3Techs</a>). NerdPress founder Andrew Wilder suggested that a SQLite implementation might benefit from being branded as &#8220;WordPress Lite.&#8221;</p>\n\n\n\n<p>&#8220;Reading the comments and potential issues above, if this does move forward, perhaps the way to implement this in a way that makes sense to users would be to brand it simultaneously as &#8216;WordPress Lite,\'&#8221; Wilder said. &#8220;So if a site is using SQLite, there could be features that are simply no longer available (such as multiple authors, or perhaps plugins that have certain database requirements can’t be installed).&#8221;</p>\n\n\n\n<p>Those who are interested in testing the new SQLite integration module should be able to test drive it next week. Google-sponsored Performance Team contributor Felix Arntz gave a few notes on testing in yesterday&#8217;s team meeting:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>For the SQLite implementation, other than the SQLite DB working correctly by itself, another crucial aspect to test is the user experience on module activation. You&#8217;ll get an entirely new database, but we&#8217;ve added some logic to make the transition as seamless as possible: On a typical WordPress setup, you should not need to reinstall WordPress yourself when you enable the module, and you shouldn&#8217;t even be needed to log in again.</p>\n\n\n\n<p>Basically the PR has logic to install WordPress automatically in the new database, using the same basic setup data that is present in the regular database.</p>\n\n\n\n<p>Just keep in mind that it is by no means a migration. It&#8217;s only the install you&#8217;ll get; no content will be migrated.</p>\n</blockquote>\n\n\n\n<p>The 1.8.0 release of the Performance Lab plugin is expected on Monday, December 19, and is set to include the new module.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2022 02:29:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Post Status: Interview With Product Lead Jessica Frick At Pressable— Post Status Draft 133\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145743\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://poststatus.com/interview-with-product-lead-jessica-frick-at-pressable-post-status-draft-133/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39939:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> is a huge WordPress advocate and has been a contributing community member since 2008. She is the Director of Operations at <a href=\"https://pressable.com/\">Pressable</a>, one of our Post Status sponsors. Jess joins Cory Miller to share about the amazing WordPress hosting experience Pressable offers, in addition to her own experience and expertise as a long-time member of the WordPress community. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/renewabelle\">Jess Frick</a>, Pressable’s Director of Operations, discusses what differentiates the hosting performance and support <a href=\"https://pressable.com/\">Pressable</a> offers WordPress users. They are a “small but mighty” hosting provider from the Automattic family powered by the agility to continuously evolve to better serve customers with diverse needs. Her enthusiasm, generosity, and honesty inspire us to use the power of WordPress for good. As a WordPress lover, Jess shares her thoughts on the benefits of being people-powered.</p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Differentiated by Support:</strong> When facing an issue with your site, Pressable understands you don’t have time to wait for answers or be redirected to articles and links that don’t deliver real-time solutions. Pressable support is led by a team of WordPress experts with a proven record of responding in less than 3 minutes and solving issues in under 10 minutes on average.</li>\n\n\n\n<li><strong>Technical, User-Friendly Interface:</strong> Pressable’s single dashboard offers simple site management with a clear view of site performance and metrics. More technical users can manage multiple sites from one platform, build API applications, test site versions, and more.</li>\n\n\n\n<li><strong>Power of Decentralization:</strong> As we are seeing the real-time impacts of power being held singularly in other organizations, it highlights the power of the open-source community we have within WordPress. Jess shares her thoughts on how this insulates WordPress from experiencing toxic growth and protects the evolution of future technology powered by WP.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-18 wp-block-columns Pressable has-theme-palette-8-background-color has-background\" id=\"Pressable\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/pressable\">Pressable</a></h3>\n\n\n\n<p>Founded in 2010, <strong>Pressable</strong> is a world-class managed WordPress hosting provider built on the same data network as <strong>WordPress.com</strong> and <strong>WordPress VIP</strong>. With industry-leading performance, 24/7 expert support, a 100% uptime guarantee, and seamless integrations with <strong>WooCommerce</strong> and <strong>Jetpack</strong>, Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place. <a href=\"https://poststat.us/pressable\">TRY PRESSABLE→</a></p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/pressable\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/pressable-icon-primary.svg\" alt=\"Pressable\" class=\"wp-image-121339\" width=\"150\" title=\"Pressable\" /></a>Pressable\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://pressable.com/\">Pressable</a></li>\n\n\n\n<li><a href=\"https://automattic.com/\">Automattic</a></li>\n\n\n\n<li><a href=\"https://www.liquidweb.com/\">Liquid Web</a></li>\n\n\n\n<li><a href=\"https://twitter.com/chrislema\">Chris Lema</a></li>\n\n\n\n<li><a href=\"https://copyblogger.com/\">Copy Blogger Media</a></li>\n\n\n\n<li><a href=\"https://www.studiopress.com/\">Studio Press</a></li>\n\n\n\n<li><a href=\"https://wphostingbenchmarks.com/\">WordPress Hosting Benchmarks by Review Signal</a></li>\n\n\n\n<li><a href=\"https://twitter.com/kevinohashi\">Kevin Ohashi</a></li>\n\n\n\n<li><a href=\"https://titan.email/\">Titan Mail</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/renewabelle\">Jessica Frick</a> (Director of Operations, <a href=\"https://twitter.com/Pressable\">Pressable</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Interview With Product Lead Jessica Frick At Pressable</p>\n\n\n\n<h1>Interview With Product Lead Jessica Frick At Pressable</h1>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Hey everybody. Welcome back to Post Edits Draft. This is another interview in our series of product people. Um, and the intention behind this is there\'s all these great products out there in WordPress. And I wanna hear from the humans that lead these products for their customers and the clients. And today I\'ve got a dear friend, Jess Frick, who is over at a great hosting company called Pressable.</p>\n\n\n\n<p>Also an awesome sponsor and supporter post status. And I\'m excited for this. Uh, all these are so much fun to me, but I\'ve known Jess a long time. I\'m really excited to let you hear. What I get to hear, uh, about her passion, her vision, her values for what she does, and how she leads her team, um, and really around the product that she, she runs.</p>\n\n\n\n<p>So Jess, welcome to post status draft.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Thanks for having me, Corey. As you know, we are huge supporters of post status. We love the community and I\'ve been a [00:01:00] member since before I\'ve been with Pressable cuz I just love everybody in the community.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Also, before Corey and Lindsay, uh, were part of the ownership.</p>\n\n\n\n<p>So That\'s true.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> That\'s true. But you know what? Post status has been giving back to the community for a really long time and so you\'re, you\'re always honoring us and I wanna take a minute to honor you too. So. Thanks for all you do.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Thanks my friend. If you don\'t know Jess, you need to get to know her. By the way.</p>\n\n\n\n<p>She\'s an incredible human being and you\'re getting ready to hear some of her experience and expertise too. Jess, could you start and tell us what your role is at Principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Uh, Well, we\'re not really big on titles around here, but I do have one. It\'s Director of Operations and what that ultimately entails is I lead our product ops and marketing here at Principal.</p>\n\n\n\n<p>People think we\'re a lot bigger than we are. We are a small but mighty team over here. Um, little, little known secret. Pressable has less than 20 full-time employee. We [00:02:00] are just killing it and everybody\'s just wearing a bunch of hats. .</p>\n\n\n\n<p><strong>Cory Miller:</strong> I I really love that, even that as a part of automatic, um, to see us. Uh, I like your description, small and mighty team.</p>\n\n\n\n<p>Uh, and we\'ll talk a little bit about that too. Cause I\'ve experienced that, not just because of our friendship, but as, uh, a friend of mine is a customer and I get to go in and help and experience. What you\'ve done and your team does. Um, Jess, you have a vast experience in WordPress, and I know this, but I want other people to do.</p>\n\n\n\n<p>Could you tell us what you\'re doing, what you\'ve done in WordPress, uh, before Princip?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Well, my first time using WordPress would\'ve been in 2008. Um, my first job in WordPress, uh, was with Copy Blogger Media, the parent company of Studio Press. Um, and so if you ever got any swag back in the day with hashtag genesis WP that came from my house, , um, , [00:03:00] we, we grew this awesome brand and.</p>\n\n\n\n<p>Honestly, I did not build with any other themes. I\'m so sorry, Corey for like 10 years because it was just awesome to watch the genesis of the product. Um, and from there I got to work with the team over at Liquid Web. I was on Chris LEMAs team. We launched the first re commerce product. Um, and then about a year ago I got to join the team here at Pressable and I absolutely love it.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s awesome. Now, one of the angles for the</p>\n\n\n\n<p>part of that is product and um, so can you tell me a little bit about the principle WordPress product?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yes, I can and I would love to. Um, some things you should know about the Pressable WordPress product is we really differentiate on support. That\'s our number one thing. I know everybody says that their support is great.[00:04:00]</p>\n\n\n\n<p>Um, if you\'re familiar with. Automatic. You know that sometimes they\'ll have support teams that kind of go across different brands. But at Pressable we have the same core group of people. Most of them are developers, all of them are WordPress experts, and you\'re gonna get the same people every time. So, you know, the product that we serve is hosting, it\'s great hosting, it\'s powerful performance hosting, but what we really sell is the experience.</p>\n\n\n\n<p>And that means you\'re gonna have friends here that can help you no matter what your word. Website problem may be, um, within reason, obviously, but, uh, cuz people can do some weird stuff to word breasts. Okay. Um, but uh, the other stuff that we sell is that, uh, performance, um, A lot of people don\'t realize this, but Principle was originally known as Zippy Kid.</p>\n\n\n\n<p>We were one of the original three managed WordPress hosting companies in the world. And obviously that a lot\'s changed since 2010 when it was founded. Um, [00:05:00] it\'s. Been rebranded as pressable, and today we\'re owned by Automatic something a lot of other people don\'t know. Um, so the platform that we have that\'s super performant is actually the same one that powers wordpress.com and to some extent, WordPress, v i p.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I know a lot of hosts can say performance and support. Uh, on the support side, I know the culture at Automatic is prolific with support. I, I, I recall several years ago that every team member that\'s hired goes through basically their first onboarding experiences, actually doing support. And I thought to myself, that\'s, that\'s a company that does value support, but I\'ve also experienced.</p>\n\n\n\n<p>Yeah, like I said, my friend, uh, has, has a site on principal and I ran into something because, you know, I\'m barely technical and, um, I can\'t remember his name off the hand, top of my head, but I think it was Michael. But, um, I went to support, asked a question, thought I\'ll get direction and [00:06:00] pointing. The next thing I know it\'s like, Kind of really helped me try to get the, the site going and get past one of the issues that I was having though.</p>\n\n\n\n<p>I was like, I\'m gonna spend a couple hours googling this or have to go to post outta Slack and ask somebody and beg somebody for help. And, uh, I really did get that experience. And that to me, Jess is pretty rare in hosting. Because in the early days you remember this, you talked about 2008. I remember you go to some of these shared hosting companies and I could get incredible admin type work, like support from people.</p>\n\n\n\n<p>Those days are pretty much gone until you get up to these high tiers of like hosting. So to have that kinda support is incredible. And then to your point, you just told me like support and performance. At first I go, most hosts probably brag about. Two things, but you\'re backing up the performance side too, like you said, but this backbone, which is legendary wordpress.com and b i.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> It\'s true. Um, if you look at this year\'s WP [00:07:00] Hosting Benchmarks studies, um, and if you\'re not familiar with WP Hosting Benchmark, um, review Signal runs these every year, hosts have to pay to participate. Because there is no favoritism, there is no way you can kind of grease the wheels. And if anybody does anything that looks untoward, he blasts you and tells everybody what you did.</p>\n\n\n\n<p>Um, but he legitimately, Kevin from Rude View Signal will do these tests and you enter in a variety of categories. and in this year\'s test, pressable aced every single level we were in. We got top awards in every single category we entered. Um, and that\'s a reflection of our environment. Um, we don\'t need to rely only on caching, but our caching is awesome.</p>\n\n\n\n<p>Um, we have, you know, industry leading PHP resources, and I would say that our CPUs can probably best, most other host.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, I tell you, you\'re not kidding when you talk about Kevin, I get to meet him, um, this [00:08:00] summer in Porto like you did too, I\'m sure. And, um, Kevin is a purist. He\'s extremely passionate about what he does, and I know he\'s been doing the benchmarks for a long time and to, to pass.</p>\n\n\n\n<p>It\'s this pretty, pretty incredible, um, I, I, I would say it\'s not for the faint of heart. Go through Kevin\'s benchmarks and things, so that\'s great. Backing it up from an external source like Kevin, and he\'s in the process community and pretty active. So yeah, we\'re proud. Awesome. Okay, so we talked a little bit about the product manage WordPress hosting support performance Two highlights.</p>\n\n\n\n<p>Um, what, uh, tell me about the types of customers. If you\'re a customer looking at principle or looking at managed Word Press hosting, who are you, who, who, who did you build the product for, essentially?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> That\'s a really good question. Um, and honestly, [00:09:00] there are two main audiences that we work with and it, it sounds overly simplified to say it this way.</p>\n\n\n\n<p>Um, The, the more simple user that just needs powerful hosting with great support. And then the more advanced user, um, which might be a developer or an agency, um, you know, an agency, like there\'s so many different kinds of agencies. You might have an agency that\'s. Super technical and some that are not. Um, I would say that we are ideal for agencies that are operating multiple websites for their clients because we make it super easy to manage multiple sites in one place.</p>\n\n\n\n<p>Um, I would also say that we\'re good for agencies that have their own special workflows. We have get integration tools. Um, we are able to help you with custom API applications, um, SSH and WP CLI and all. Stuff. And then of course, um, for the business owner who just has an e-commerce store [00:10:00] that gets crazy waves of traffic every single time her story gets picked up on TikTok and it happens, you know, a couple times a month.</p>\n\n\n\n<p>We\'ve got her back. because our hosting out of the box can handle huge amounts of traffic at any given moment. And so most of the time, you know, she doesn\'t even have to pay attention to her website, but when she does, she needs help and she needs it now. And that\'s where we come in. One of the things I didn\'t get to mention is our support has some pretty incredible statistics.</p>\n\n\n\n<p>So our average first response time is under three. So when that business owner needs our help, she\'s not waiting for like 20 minutes for somebody to respond to her chat. We\'re there our average resolution time, Corey is under 10 minutes. So it\'s not like you write us and then you\'ve gotta wait for us to ask four other people.</p>\n\n\n\n<p>We\'re there and we\'re helping you and we fix it. Um, so I would say, you know, even more simplified than all of [00:11:00] that, we\'re probably not gonna be your first host. We\'re gonna be the host that you graduate to when you\'ve experienced support at some other places, or when you\'ve outgrown what their resources can offer you.</p>\n\n\n\n<p>Um, you know, maybe your sites are slow, maybe you\'re experiencing downtime. Um, we have a 100% uptime guarantee, and we\'re able to offer that because we have automatic failover included for free. And because we know that your sites aren\'t gonna go down here, So .</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Tell, tell me more about that. So, a hundred percent guarantee.</p>\n\n\n\n<p>I, I know I\'ve been to hundreds of, you know, hosting sites since like 99.9, and I go, okay, cool. Why does it, why does it, ma, I mean, and, and I\'m not running an e-commerce store that if I, if I\'m down for a minute, I probably lost a thousand dollars, right? Mm-hmm. , tell me why that matters. A hundred percent. And what that means.</p>\n\n\n\n<p>A hundred percent uptime and the automatic.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You can fit a lot of excuses in 0.1%. Corey[00:12:00]</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s good.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You know, there are a lot of things you can say. Oh, that\'s the 0.1. No, we we\'re a hundred percent up time. We got you. Um, I was just talking with one of our agencies yesterday who\'s been with us for, since 2017, and they\'ve never had a site go down, ever. And they host hundreds of sites with us.</p>\n\n\n\n<p><strong>Cory Miller:</strong> And that matters. You know, you got the 99.999 or whatever, and then a hundred percent. Um, for sure, like I at, at Ithe, I knew when our site went down, we lost money. Now we didn\'t lose thousands of dollars, but we were losing opportunity cost. I mean, there\'s a big value to that. Yeah. Um, tell me, because I just don\'t even know what is automatic, fell over.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Automatic failover means if for some reason there\'s a problem with the mechanics and the systems, we will automatically redirect your traffic to your exact [00:13:00] site on a different server elsewhere. So it\'s kind of like that high availability experience where if it goes wrong here, we got you over here.</p>\n\n\n\n<p>When you\'re using our name servers, we\'ve got you everywhere.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Hat tip. Make sure your name servers are at the host and particularly with Pressable cuz you wanna take advantage of that, that\'s outstanding. Um, okay. Tell me, um, do you wanna show me a little bit of the dashboard and the product itself?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> I do, yeah.</p>\n\n\n\n<p>So you asked like who we\'re for, and you know, one of the things that I\'m super proud of when it comes to Pressable is it is an extremely technical interface, but it can be done. Um, and it can be used in such a way that. Someone who\'s not super technical will also appreciate it. I\'m so sorry. Like myself.</p>\n\n\n\n<p>Yeah. Well you, but also, you know, you are technical. [00:14:00] Um, I would say that there are also some people that just sort of see this, and I\'m so sorry, I\'m having some technical issues. We\'re gonna have to edit this.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep. We\'ll edit it. Yeah. Lemme start with.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> One of the things that I absolutely love about our interface is that it\'s great for technical people, but it\'s easy to use for people who maybe aren\'t quite as technical. So when you log into your account, this is what you\'re gonna see. Obviously not these sites, this is our demo account. Um, but you know, right off the bat you can see your sites, you know where they all are.</p>\n\n\n\n<p>Um, and you\'ve, we\'ve got a new feature here called collaborators. I\'ll get to that in a. Um, but let\'s dig into a site right now. Demoable . Mm-hmm. . It\'s not a real site, don\'t go to it. Um, but when you get in here, you can immediately get a nice overview. You can see what PHP version you\'re running, what WordPress version you\'re running.</p>\n\n\n\n<p>Um, by the way, we will allow you to be on the [00:15:00] previous release, the current stable, or you can go on beta. Um, that is something that we offer here and we\'re very proud to do that, especially because we know that sometimes you might need a little more time for testing. So, um, we offer you the opportunity to leave notes for your team.</p>\n\n\n\n<p>Let\'s say you\'re working in here with multiple others and you\'re gonna need to just kind of have those admin. Pieces of information that\'s right there within the dashboard. Here\'s where you\'re gonna have your domain information. Um, obviously our name servers, um, and we can also give you IP addresses. Uh, then we have performance.</p>\n\n\n\n<p>Um, if this was a live site, you would see more data here and it\'s just gonna kinda give you that pulse check on what your site\'s doing this month. Um, I could probably spend a long time on this, but I won\'t cause we only have a couple minutes. But you\'re gonna have all of your users for this particular site here, we offer backups 30 days.</p>\n\n\n\n<p>Oh, by the way, our backup storage is complimentary. That does not go [00:16:00] against your total storage that you have for your plan, and then of course, that get integration. What I wanted to show you also was collaborators. So collaborators is gonna give you a way to have multiple people in your account, but not everybody can do everything.</p>\n\n\n\n<p>Um, I know at some other host when you add somebody, you basically get to be an admin or just, you know, a viewer. Uh, here, if you want somebody to be able to get that WordPress access, maybe you\'d never wanna give them the ability to delete or disable. But they\'re also gonna need to be able to get that SFTP access.</p>\n\n\n\n<p>You can fine tune the experience for that one particular person right here. Um, something else that\'s coming up that\'s gonna be super exciting. Uh, we\'re introducing something called the One Press Login. One thing that we\'ve heard from our customers is it\'s kind of annoying to have to enter your credentials every single time you wanna go into your WP admin.</p>\n\n\n\n<p>And [00:17:00] so here on your site details, we\'re going to give you that one press login button, and it\'s going to basically work like a one time password. Automatically and securely log you into your dashboard. No passwords needed. We also offer email through Titan Mail. This is an upsell. Um, we have usage data for you here.</p>\n\n\n\n<p>It\'s really nothing super exciting or sexy. Um, billing is no nothing to write home about . make billing sexy. Um, but you know, we also have site performance reports. We have collaborator reports. If you\'ve got a bunch of collaborators on your site and you\'re. Who all is on this and what do they do? Um, you\'ve got different site usage reports, all of these, you click the report and it\'s gonna send you an email.</p>\n\n\n\n<p>Um, please don\'t spam us there, but basically, we\'re trying to make it easy to manage a whole bunch of sites and [00:18:00] just to keep your finger on the pulse of what all of them are doing.</p>\n\n\n\n<p><strong>Cory Miller:</strong> I can see that collaborator report, especially if you have a team and different hands in the, in the kitchen. Yeah. Um, for sure.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yeah. And then of course, you know, if you wanna build your own API application, you can come here and create your api. And we have all of our documentation published here. Um, this is not behind a paywall, so if you ever wanna see if you could do that here, chances are you can.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Fantastic. I love that. Yeah.</p>\n\n\n\n<p>Well, thanks for that quick overview. Uh, I like to see the pro, you know, the dashboard. Um, I, I\'m sure unlike many people listening that I go to, uh, Page or sales page one day, and then it\'s months, maybe even years before I go back when I have a need. And so I like showing the product because I want people to see the experience.</p>\n\n\n\n<p>And one thing that stuck out just was like, how fast that even the admin side oh, uh, was rocking.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yeah, it\'s super, super fast and it\'s [00:19:00] super fast. Even if you have hundreds of websites as opposed to just one. Um, that\'s something that, you know, obviously I do a lot of testing at our competitors. That\'s not something you get every.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yep. Well, okay, thanks. Now, we talked about the product. We\'ve talked a little bit about what you\'re looking forward to, but I really want to ask that question. What things are you doing? What things are you excited about at Principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> I know a lot of people aren\'t comfortable talking about this, but I love talking about what\'s coming soon.</p>\n\n\n\n<p>Um, we have some really fun features coming soon. One of the things is going to include the ability to have kind of a template of your site. Um, Right now, our competitors would call them, you know, templates or, uh, maybe even stencils. It\'s gonna give you a way to just clone your site, but with all of the different settings and plugins attached to it, um, that\'s coming soon.</p>\n\n\n\n<p>Obviously, the One Press login that I mentioned, we are also looking to bring [00:20:00] forward smart plugin updates, so you\'ll be able to update plugins for one site or multiple. Easily in a safe way. And then we also are looking to improve the sinking between staging and live. This is something that honestly, I have not seen anyone do.</p>\n\n\n\n<p>Beautifully. Like there\'s problems everywhere when you\'re trying to do this. Um, one of the things that we are trying to keep an eye on though, is the changes that are happening with full site editing. Um, you know, a lot of other hosts might have an easy button. I shouldn\'t say a lot, but a couple of other hosts have an easy button.</p>\n\n\n\n<p>And basically what that\'s gonna do is just exclude your databases from syncing your staging environment to your production environment. And that would be fine because you obviously don\'t wanna overwrite your W commerce data, comments, all the other dynamic stuff that happens. But with full sight editing, a lot of that data is being stored in those same places that you\'re currently excluding.</p>\n\n\n\n<p>So we\'re trying to [00:21:00] like fine tune. So that you get what you want to have from staging moved over. Um, and just to make it fast and easy too. Ultimately, the, the things that we\'re trying to develop are things that people have directly asked us for. Um, we love hearing from our customers and we love hearing from people who would be customers, but perhaps they\'re held from, you know, for one reason or another.</p>\n\n\n\n<p>Um, One of the cool things about us being small and mighty is we actually act on those. Mm-hmm. . And so if somebody\'s watching this and you\'re not a customer because this or that, please tell me cuz we\'ll build it</p>\n\n\n\n<p><strong>Cory Miller:</strong> And by the way, Jess is in post set of slacks. She can even DM her. Yeah. So I wanna go back to something you talked about the syncing, and there\'s a nuance there that I hadn\'t thought about, which is all the databases. So could you gimme some examples of that? Uh, particular instance? I know you said, uh, full side [00:22:00] editing.</p>\n\n\n\n<p>Uh, But I, I\'m, I\'m, I\'ll just confess to you, I\'m a newbie to staging. I have used, uh, principle staging mm-hmm. to, um, we\'re, we\'re working on a rebrand of, uh, post status.com and I was like, I just want to get a site that I can go do. And I\'ve been using the staging for that, but could you tell me what a little bit more details about, or examples of how that might be really critical for store owners, agencies and developers?</p>\n\n\n\n<p>I\'m sure they know these answers, but I want to.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> So, having worked in hosting for a long time, I can tell you it is shocking how few people actually use staging environments. So high five to you, my friend, for doing an staging environment first. Um, one of the problems is you get your staging site exactly how you want it, and then you need to be able to push it live.</p>\n\n\n\n<p>And for the, the old way to do it was just to completely overwrite your site. The thing is, and like picking on post status, I know you guys have. [00:23:00] I know you even have a store, but I can\'t remember if your store is actually on the, the site or not, or if it\'s external. Um, but you know, if you have that kind of data coming in on the regular, there are a few ways you can go about it.</p>\n\n\n\n<p>Um, the first would be like a two stage migration where you would migrate it. At a single point in time, and then like, kind of do your stuff and then you would bring to date the Delta. Um, so for example, blog vault can actually do that for you. They do a great job with that. Um, and so they\'ll bring over the, the data, but you\'re still gonna have that tiny window where you might miss a pro, a purchase or you know, somebody might be doing something on a membership site and you\'re gonna lose that activity in that moment.</p>\n\n\n\n<p>Um, one way to counter that is to put up a, like. Under maintenance. Interstitial or something that basically lets people know that whatever you\'re doing right now, not gonna count, or you just can\'t do it right now. Um, but the other [00:24:00] option is to create a nuanced tool that does not include that data when they overwrite it.</p>\n\n\n\n<p>Um, because whatever is happening on staging is not going to include all of that purchase data. Something people haven\'t considered a lot of times is when you bring an entire production site over to your staging, you might actually have all of that e-commerce stuff in place. And so heaven forbid you\'ve got a membership site.</p>\n\n\n\n<p>It could be charging subscriptions on. You gotta be real careful of that. And so one of the things that we\'re also working to do is to make sure that that kind of stuff doesn\'t happen in staging. Just a blanket rule that you can\'t be charging for things and you know, running, running different processes that could negatively impact you cuz you didn\'t mean to do that there.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I can see how you just eliminated how critical that is for a w uh, like a W Commerce site, um, with some of those things because you do have this continuum amount of data and storages or staging as a best practice, [00:25:00] and this is a nuance to make sure you\'re capturing those educations. I think that really stands out, particularly in e-commerce, but I think you showed some other ways where I don\'t want that thing.</p>\n\n\n\n<p>To be missed or I don\'t want that thing to be updated. And some of my experience with backups, I kind of, I, I\'m aware of some of those type of nuances and that\'s, I, I ask for my own edification, but also I think it highlights that the person leading the team I knows, knows their stuff. And I love, I love talking with you because you always give me something new to think about.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Well, thank you. That\'s a very nice thing to say.</p>\n\n\n\n<p><strong>Cory Miller:</strong> You bet. Well,</p>\n\n\n\n<p><strong>Jessica Frick:</strong> fortunately I work with some people that are smarter than me too. So , I think I\'m great. You should meet the team.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Well, my next and close to my last question is I, I just wanna get your thoughts about tech WordPress in general. We talked a lot about hosting nuances, the things that you\'re working on, you\'re already doing, have done, [00:26:00] um, performance and support being some big highlights backed up, but some really good reasons.</p>\n\n\n\n<p>Um, To be able to say we do performance and support extremely well. But I really wanna turn the page and ask you your thoughts about tech and WordPress and what you see coming up and what you\'re excited about with WordPress and then tech overall.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> You know, it\'s, um, This is a really interesting question because we\'re at a strange time right now.</p>\n\n\n\n<p>You know, for a minute, every time you turned around, another WordPress company was getting acquired and I feel like we\'re kind of in a lull for a little bit. That\'s not to say that somebody\'s not gonna get acquired while we\'re on this call, but it could have , but for a minute, there was like every single day.</p>\n\n\n\n<p>Um, but what\'s also interesting is we\'re seeing, you know, different companies tightening up. Um, Be it the market conditions or some other, you know, variable. We\'re, we\'re seeing a lot of companies, you know, really getting into conserve [00:27:00] mode and it\'s been interesting to watch how they\'re doing that. Um, thankfully we\'ve not seen a lot of companies just laying off a whole bunch of people.</p>\n\n\n\n<p>Um, it\'s happened, but it\'s not happening like you\'re seeing with other big tech. And I think part of the reason that WordPress is probably a little more insulated is because I think by and large the WordPress community has perhaps been more stable to grow in the first place. Um, I think it\'s gonna be interesting to see what happens in the hosting world, but also, you know, in the future of plugins, um, and certainly themes, especially with, you know, blocks becoming what they are.</p>\n\n\n\n<p>Um, I\'m really interested to see how that plays out for the community because at the heart of it, I mean core, you know me, I love WordPress. Like I love WordPress, but part of, one of the, part of the reason that I love WordPress so much is because I [00:28:00] love the community. You know, we have a lot of really great, genuine, smart, helpful people.</p>\n\n\n\n<p>You know, if we\'re being honest, yeah, there\'s some jerks, but that\'s. A small percentage. Mm-hmm. , most people would stop what they\'re doing to help you if you needed it. And I think that that\'s also part of why we\'ve become kind of insulated, um, from that toxic growth. I guess if you\'ll let me get kind of spicy.</p>\n\n\n\n<p>Yeah. Um, , I think we know who is Awesome. Generally speaking, and we all kind of look out for each other, and I really, really love that about. Yeah. Um, what I\'m thinking about tech right now, we\'re, we\'re seeing a situation where one of the biggest social networks has been bought by a single individual and love them, hate \'em, or don\'t even care about \'em.</p>\n\n\n\n<p>[00:29:00] It\'s making some pretty big changes to the product itself and the audience that uses it. And one of the things that I love about WordPress is that it\'s open. And you know, a lot of people want to blame one specific person for things. And yeah, of course he\'s influential, but he doesn\'t control the whole project.</p>\n\n\n\n<p>And so I think it\'s made me more grateful, um, seeing how it can go wrong when you have just that one super rich guy that can make all the shots. And then you have WordPress where it really is, you know, power to the people</p>\n\n\n\n<p><strong>Cory Miller:</strong> and you can fork it. I don\'t think you can fork Twitter, but you can\'t fork WordPress and it has been forked.</p>\n\n\n\n<p>It has. So even if there are powerful structures, you can still take the code and and go elsewhere. Yeah. Decentralization is definitely something that I\'ve heard a lot from members and in these interviews because it\'s uh, really key in part of the power [00:30:00] WordPress is that, um, it can power everything from my little blog on my stage inside principle, uh, to you.</p>\n\n\n\n<p>Uh, very big house in Washington DC that happens to be white. Yeah. And so like, it\'s, it\'s crazy. All the applications. I, uh, as I\'ve talked to agency owners and, and technical people, what WordPress is being used for, but at the core, that open source philosophy really resonates and. Powerful. And I think we\'re seeing that, like from what you\'re saying too, is like we\'re seeing that the power that WordPress is and continues to be, it\'s not owned necessarily by one person.</p>\n\n\n\n<p>It can be used, the freedom that we have</p>\n\n\n\n<p><strong>Jessica Frick:</strong> and people are building cool things to go with it. You know, things on top of it. You know, before we started recording, we were talking about the world of podcasting and the things that are built to, you know, work alongside it, you know, pocket casts and various others.</p>\n\n\n\n<p>Um, we were talking about custom applications that people are building. I think WordPress itself is going to [00:31:00] continue as a building block for a lot of other cool technology in the future. And, So excited to see it happen and honestly I hope one of the ideas is mine cuz I feel like you and I would be really good, rich people.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yes, totally. I think we would very generous . Just Rick, thank you so much. Can you tell people, uh, where to find more about you in principal?</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Yes. Come visit us at pressable.com and if you wanna find me, I am in the post status slack. Um, if you\'re not in post status, let\'s fix that problem first. Uh, but you can also find me at renewable.com if you want.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Awesome. Thanks so much. Yes, for the time today, and I hope you\'ll go check out our principal dot com\'s offerings and see what we\'re talking about.</p>\n\n\n\n<p><strong>Jessica Frick:</strong> Thanks, Cory.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 21:37:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: #55 – Dennis Dornon on How Partnerships Have Helped Grow His WordPress Plugin Business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/podcast/55-dennis-dornon-on-how-partnerships-have-helped-grow-his-wordpress-plugin-business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47001:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast, which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, how finding partners might boost your WordPress business?</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from you and hopefully get you or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Dennis Dormon. Dennis is the founder of MainWP. A WordPress plugin which enables you to manage multiple WordPress websites from a single dashboard. As you&#8217;ll hear, the business has changed over the years, as Dennis has learned more about the plugins&#8217; target audience.</p>\n\n\n\n<p>If you&#8217;re a solo developer, or a working for a small team, bringing your WordPress product into the market can be very rewarding, but it can also be hard. Given the scale of the market, it&#8217;s likely that your product has got an audience. But with the time and resources being limited, it might be hard to break through and be widely discovered.</p>\n\n\n\n<p>Dennis talks today about how, in the recent past, he&#8217;s been trying out working with partners as an effective way to increase the plugins reach. As you&#8217;ll hear, it&#8217;s a strategy that he&#8217;s enamored with, given the right partner.</p>\n\n\n\n<p>We start off by talking about why Dennis built MainWP, and who the plugin was originally aimed at. And it&#8217;s not what you might expect.</p>\n\n\n\n<p>We then get into how Dennis is working out his partnerships as he goes. What is it he&#8217;s looking for in a partner? Not all companies in the WordPress space are going to be a good fit. And so he explains how it&#8217;s important that all partners have some skin in the game, and know what part of the deal they have to uphold. What are the things that need to be considered before the partnership begins? And how do you make sure that all the parties are keeping up their end of the bargain?</p>\n\n\n\n<p>It turns out that MainWP is a business which is in just about the perfect spot for bringing on partners. But if you&#8217;re a developer and have not considered this type of approach with your business, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay, I bring you Dennis Dormon.</p>\n\n\n\n<p>I am joined on the podcast today by Dennis Dornon. Hello, Dennis.</p>\n\n\n\n<p>[00:03:40] <strong>Dennis Dornon:</strong> Hey, Nathan. How are you?</p>\n\n\n\n<p>[00:03:42] <strong>Nathan Wrigley:</strong> Very, very well. Dennis and I have had a little bit of a chat before the podcast began, and it&#8217;s been a pleasure getting to know him. You&#8217;re going to get to know him over the next few minutes. Dennis, we always ask our guests right at the beginning, there&#8217;s some kind of orientation question, just trying to figure out who you are and where you come from.</p>\n\n\n\n<p>I&#8217;m wondering if you&#8217;d spend a few moments just telling us what it is that you do in the WordPress space and how you&#8217;ve become part of the WordPress community. You can take that in any which way you like and go back as far or as near as you wish.</p>\n\n\n\n<p>[00:04:14] <strong>Dennis Dornon:</strong> Hello everyone. I&#8217;m Dennis Dornon with MainWP, WordPress manager plugin that allows you to maintain multiple WordPress sites from one central dashboard. The MainWP plugin allows you to perform most of your daily WordPress maintenance tasks, such as updating your plugins, backups, uptime monitoring things like that.</p>\n\n\n\n<p>And since MainWP is a self hosted WordPress plugin, it allows you to do all that while remaining privacy focused and not relying on any third party solutions like many other WordPress managers.</p>\n\n\n\n<p>[00:04:40] <strong>Nathan Wrigley:</strong> So when did you discover WordPress? How far do we go back?</p>\n\n\n\n<p>[00:04:44] <strong>Dennis Dornon:</strong> I would say probably about 10 years ago is when I really started getting into it. About 10 to 12 years ago I was full-time affiliate marketing and had a few hundred websites, mostly focused on the automotive industry. And at that time I just did real cookie cutter sites that just did PHP changes from a flat file where, like I would change the city name, make model, and just put those out.</p>\n\n\n\n<p>But then Google started changing their algorithm, so you couldn&#8217;t really have the cookie cutter sites anymore if you wanted to continue to rank. That&#8217;s when I started exploring WordPress. Slowly moved those few hundred sites over into WordPress. And then I quickly realized once you have a few hundred sites, I think in my case it was close to 500 sites, that maintaining those could be quite a pain in the neck.</p>\n\n\n\n<p>And that&#8217;s when we started looking to different solutions that were already out there. But none of them gave us the privacy we were really looking for. Both me and the co-founder came from an affiliate background, so we wanted everything to stay completely private and no one to have any of our information.</p>\n\n\n\n<p>Started developing our own solution for WordPress and we actually went with using WordPress as the backbone since we didn&#8217;t have to worry about login, security and making all those things for ourselves and just built it as a plugin itself.</p>\n\n\n\n<p>[00:05:54] <strong>Nathan Wrigley:</strong> That&#8217;s really fascinating. Kind of interesting that it was a scratch your own itch type of product. We&#8217;re here today, we&#8217;re going to talk about a slightly different subject because a little while ago I put out a tweet and I was asking for people to suggest topics that maybe of interest to listeners of this podcast. And Dennis reached out and so we got connected and we&#8217;d settled on the topic of, the idea of partnerships within the WordPress space. So, I&#8217;m just going to map out in broad outline what I think we&#8217;re going to talk about, and then we&#8217;ll see if the conversation goes in that direction or not.</p>\n\n\n\n<p>So, Dennis has a history, or at least I should say MainWP, whether it&#8217;s Dennis or other people, I&#8217;m not entirely sure, has a history of connecting with other WordPress companies to mix up what they&#8217;re doing. So MainWP with partner A and MainWP with partner B. And try to figure out if there&#8217;s ways that they can rub each other&#8217;s backs, and help each other along the journey to growing and what have you.</p>\n\n\n\n<p>So you have a product and you have lots of partnerships. I guess the easiest way to begin this subject is, can you just lay out some examples of people that you have partnered with in the past and how those partnerships have developed. Just to give us a little bit of a picture of how this all works.</p>\n\n\n\n<p>[00:07:14] <strong>Dennis Dornon:</strong> Sure we really just got into partnerships. We have a lot of extensions that work with other plugins, but I wouldn&#8217;t really call those partnerships. Those were more along the lines of what you were saying earlier of kind of scratching our own itch. So we put out our first kind of partnership way back in 2015 with our first third party extensions. So, about a year into our existence, we actually started going out and working with other plugins.</p>\n\n\n\n<p>The problem at that time is we didn&#8217;t tell them we were actually working with them, so we would just go out and build these extensions and then be like, hey, we got an extension for you. And they&#8217;d be like, thank you. That&#8217;d pretty much be the end of the partnership. But it helped our users, especially with our first ones, which was a backup extension, Updraft Plus. And then we, I believe one of our first extensions was also a Yoast extension.</p>\n\n\n\n<p>But these weren&#8217;t true partnerships. It wasn&#8217;t until probably the last year or two that we actually started to get into real partnerships, where we talked to the other company, before we built an extension for them so that we could, uh, grow out from there.</p>\n\n\n\n<p>Some of the current ones that we have out are of course, SEOPress, which we just launched earlier this month. Atarim a couple months ago. Before that WPvivid Backups made their own extension and WP White Hat Security made an activity log extension. Those were more true partnerships where we work together to find a common solution.</p>\n\n\n\n<p>But most of these were just a, I would call them code development partnerships. So we were both kind of working in the development of it. Where I failed at would be the co-marketing portion of it. So even though we had grown and had actually started working with the other companies on building these extensions, instead of just building them ourselves, we still weren&#8217;t getting the word out appropriately that we now had official partnerships with these different companies. So we&#8217;d launch the partnership, announce it for a day or two, and then kind of let it die.</p>\n\n\n\n<p>Die might be the wrong word. We didn&#8217;t do too much with it, we just kind of hoped they would grow on their own if you follow what I&#8217;m saying there. We didn&#8217;t really learn until the, well, I didn&#8217;t learn until the Atarim partnership, how to correctly co-market. And that has really jumped up our actual partnerships. People coming in for partnerships. Partnership requests have all gone up.</p>\n\n\n\n<p>Really from what Vito Peleg showed us with our partnership with Atarim, and how to not only do the co-development, but the co-marketing, and co-marketing is what you generally see from, when you see a partnership in WordPress that&#8217;s, you know, where you&#8217;re on each other&#8217;s mailing list, social, things like that. And you do it for a short amount of time.</p>\n\n\n\n<p>So now we have that perfect combination for a partnership of both co-development and co-marketing. Why co-development helps is it gets the other person to have skin in the game with you. So you both, you both have something to lose if the co-marketing doesn&#8217;t go well.</p>\n\n\n\n<p>[00:09:58] <strong>Nathan Wrigley:</strong> So towards the beginning of your endeavors, you mentioned 2013 or something like that.</p>\n\n\n\n<p>[00:10:03] <strong>Dennis Dornon:</strong> 2015.</p>\n\n\n\n<p>[00:10:03] <strong>Nathan Wrigley:</strong> 2015, Sorry, yeah. You mentioned that the business was growing and, I guess at that point you didn&#8217;t really know that partnerships could be a thing, and so you just looked out into the WordPress ecosystem and thought what would be a good thing for us to build? And how can we help our customer base that exists already? And so you just built it yourself, shipped it, and maybe had some kind of email interaction with the originators of that plugin? Maybe not. It just went out there. But the point was it was all within your silo.</p>\n\n\n\n<p>And more recently, in the last year, as you&#8217;ve described, you figured out that there&#8217;s this model where you get in touch beforehand and potentially you do the work or they do the work, or you partner together and do the work together, I don&#8217;t know what the model there is exactly, but the principle being that it&#8217;s much more of a symbiotic relationship. You&#8217;re in conversation about it. You both are sending out promotional materials once the thing has finally shipped, so it&#8217;s much more of a collaboration. It&#8217;s not as if you&#8217;re merging together. Your business is separate, their business is separate, but there&#8217;s definitely an overlap where you can help each other out.</p>\n\n\n\n<p>[00:11:16] <strong>Dennis Dornon:</strong> Correct, yeah. Everything stays completely separate. It&#8217;s not a partnership in terms of a, you know, giving up any portion of your business. It&#8217;s more of a partnership of helping each other grow from your own base of customers. So if we go back to Atarim. Atarim promotes to their base of customers along with an actual, like I was saying, the code developed.</p>\n\n\n\n<p>So they have something to hand them that they can come back and, MainWP, this is how it works with it, because we&#8217;ve actually built something together. I&#8217;m just not sending you an email blast telling you to go use MainWP. Here&#8217;s an email, here&#8217;s social, here&#8217;s how we&#8217;re working together to make your life easier. And that&#8217;s what we&#8217;re focused on going forward. Both co-development, co-marketing to work nice and smooth.</p>\n\n\n\n<p>[00:11:52] <strong>Nathan Wrigley:</strong> So in the last year, in this time where you&#8217;ve found several companies that you&#8217;ve decided to partner with as opposed to building it yourself. Just describe some of the benefits that you&#8217;ve discovered. You&#8217;ve mentioned things like marketing and what have you, but are there any other unexpected things?</p>\n\n\n\n<p>It might be just that, you know, it saved you a bunch of time. You ended up being friendly with people that you otherwise wouldn&#8217;t have encountered. Whichever way you want to take that.</p>\n\n\n\n<p>[00:12:17] <strong>Dennis Dornon:</strong> I&#8217;ve really learned, we&#8217;ve been doing this, MainWP itself for nine years, and I am just really started talking to people in the last year. And I think a lot of that comes from being in the partnerships and realizing that, when you get out there and you talk to people that they are friendly, most people are friendly.</p>\n\n\n\n<p>Most people just want to work with you. They want to help. You gotta find who you want to work with, if they fit into what you want to do, if they fit into how you want to grow. But really we haven&#8217;t run into too much of people who didn&#8217;t align with what we are looking to do so far. But we are working on documents that we can put on our MainWP.dev site that allow people to see what&#8217;s expected from them, what&#8217;s expected from us in a partnership, so they know before they even contact us, hey, if we want to do a partnership, okay, we need to meet these things, do these things. So it&#8217;s all laid out for everybody.</p>\n\n\n\n<p>[00:13:06] <strong>Nathan Wrigley:</strong> Yeah. That&#8217;s really interesting because, obviously a couple of years ago you didn&#8217;t really have anything to lean back on to say, this is how a partnership may work, and now that you&#8217;ve done it a couple of times, you&#8217;ve taken the step to even create documentation around that so that you can isolate yourself, I guess, from people coming to you and saying, we&#8217;d like to partner with you, and it&#8217;s simply not being a particularly good fit. There&#8217;s bound to be a whole raft of companies, there&#8217;s just really not enough overlap to work with.</p>\n\n\n\n<p>Yeah, I was wondering about that really. Are there any constraints that you&#8217;ve placed upon yourself to say, okay, if it&#8217;s out of this boundary, we probably won&#8217;t be able to work with you, or if it&#8217;s inside this boundary, we will.</p>\n\n\n\n<p>[00:13:47] <strong>Dennis Dornon:</strong> It&#8217;s a hard one cause I haven&#8217;t come across anybody reaching out directly to me that I would be like, oh, I just can&#8217;t, just couldn&#8217;t work with you. There have been some things, where I know if somebody reached out that I didn&#8217;t feel comfortable putting in front of our user base, we&#8217;d be able to say no to. Something that wasn&#8217;t, um, don&#8217;t want to say privacy focused, but something that is completely against the way we feel about privacy.</p>\n\n\n\n<p>Of course, we wouldn&#8217;t work with them. It&#8217;s a hard question to answer because it&#8217;s, until I&#8217;m actually presented with the situation, I&#8217;m not sure who I&#8217;d say no to, who I&#8217;d say yes to. I think everybody&#8217;s gotta be evaluated on their own individual basis.</p>\n\n\n\n<p>[00:14:20] <strong>Nathan Wrigley:</strong> You obviously, when you are creating partnerships like this, you are staking quite a lot. You&#8217;re putting your flag in the sand that we would like to work with this company. Our business aligns with them, and if you start to email your list with logos from other companies and what have you, you are firmly saying, we align, we are trusted partners with each other.</p>\n\n\n\n<p>And so the word that I used there was trust. Now I imagine that we won&#8217;t get into the conversation of any times that trust may have been broken, but I do wonder what that level of trust means. How have you approached that whole subject of, can I trust this company?</p>\n\n\n\n<p>You know, many people rely on their instinctive sense. Maybe there&#8217;s companies that you think if they approach me because I&#8217;ve seen what they do in the past, that isn&#8217;t a good fit for us. How do you establish trust and what does that trust actually mean?</p>\n\n\n\n<p>[00:15:14] <strong>Dennis Dornon:</strong> Well, I can say this year we did have a partnership that I would not do again. Not naming any names. We had terms in and then they, uh, changed the terms once things had been launched, and that was kind of upsetting and I&#8217;m not sure what you can actually do for that.</p>\n\n\n\n<p>So you really do have to put some trust into it. And I think that&#8217;s where combining the co-development along with the co-marketing really makes a difference. This particular partner, we did all the work for the extension for, and they provided the service and then they changed the service after the extension was made.</p>\n\n\n\n<p>So we&#8217;ve kind of moved away from doing where we do all the work in those situations. So we really go for the more of the co-development. Where the other person has the skin in the game, we know they&#8217;re also working for the same end goal we are. And then go into the co-marketing. And usually if you can get that skin in the game from the co-development, they&#8217;re not as, a person isn&#8217;t going to be as easy to do something, to break up that partnership or, make that partnership not profitable for both.</p>\n\n\n\n<p>[00:16:09] <strong>Nathan Wrigley:</strong> When you say co-development, are you talking about, literally you&#8217;ll put people in the same room or on the same Zoom call or whatever. So in other words, MainWP developers are working with company A developers, and together you are building out the solution which bolts into MainWP. Or is it more, you are collaborating on ideas and then somebody goes off and builds this part and MainWP take care of their part? Just give us an idea of what that co-working looks like.</p>\n\n\n\n<p>[00:16:37] <strong>Dennis Dornon:</strong> Yeah. and not to keep going back to Atarim, it&#8217;s just such a good example. In their case, they needed to develop a special API that we could connect to, and we needed to develop a way to connect to their API. So we were both working on APIs, to work with each other&#8217;s system. So we knew they were putting in the same amount of time or almost the same amount of time as we were into the extension. So we knew they were going to be just as dedicated to making sure that the product grew and got better.</p>\n\n\n\n<p>[00:17:02] <strong>Nathan Wrigley:</strong> So it&#8217;s very much a case of, you work out which ways you can scratch each other&#8217;s back, and share out the work accordingly. The hope being that the balance is equal, and it may be that at the beginning, if you&#8217;ve got the skill set to do the coding of a particular thing, then maybe that&#8217;s something that you would do, and maybe they don&#8217;t have the heavy lifting there. But they might have something else that they can contribute later in the journey. You know, marketing clout and so on and so forth.</p>\n\n\n\n<p>[00:17:28] <strong>Dennis Dornon:</strong> One of the things I have noticed, actually Jonathan Wold in one of his blog posts mentions it, and it&#8217;s something I&#8217;ve noticed too, is when you&#8217;re the smaller partner, you usually end up doing most of the work. And for most of this time we have been the smaller partner. So that&#8217;s just one of the things. If you&#8217;re the new guy or you&#8217;re the smaller partner, just be prepared to have to do more than the other partner.</p>\n\n\n\n<p>[00:17:47] <strong>Nathan Wrigley:</strong> Do you go through this in a very formal way? In other words, you mentioned the Atarim example, obviously one you&#8217;re very happy talking about. There&#8217;s a lot of work to be done. There&#8217;s lots of hours to commit to writing the code. There must have been some sort of procedure that was gone through saying, okay, exactly what is the scope of the partnership that we&#8217;re doing here? Exactly what is the scope of what we&#8217;re trying to build on top of MainWP, which will interact with Atarim? Do you spend a long time hammering all that out and deciding, we can&#8217;t do this particular feature, but we&#8217;ll come to that later.</p>\n\n\n\n<p>Because it&#8217;s not like you are selling a particular product at the end here where if the Atarim and MainWP partnership works out, it&#8217;s not like you can count the amount of units that you&#8217;ve sold of that partnership. It really isn&#8217;t like that, it&#8217;s just that you&#8217;ve made customers more happy. So there&#8217;s not revenue to be shared, but there is some benefit.</p>\n\n\n\n<p>[00:18:37] <strong>Dennis Dornon:</strong> Yeah, I think if you boil everything down to profit, what fun is it going to be to actually run the business? So if it helps the user, the end user, then that&#8217;s really what we&#8217;re going to do. I think that&#8217;s shown throughout everything we do as a company, that we just really care about helping the end user.</p>\n\n\n\n<p>Atarim&#8217;s a, just a good example. And the reason I keep coming back to that is because it is the one that taught me, if we go back to your earlier question to kind of calm down, and look at how to actually build the partnership. I keep saying I gotta give Vito credit for that, for, uh, teaching me that.</p>\n\n\n\n<p>Because before I would just get an email and if it looked like it worked from a standpoint of our users where I thought our users could really use something like this. I was all in I&#8217;d jump, we would go from there. It&#8217;d be a very quick process. I&#8217;m talking couple week turnaround time, from something that sounded really cool to actually getting it done, without any plan in place.</p>\n\n\n\n<p>We were running headlong into the fire, because that&#8217;s all I knew at the time. I just wanted to get this new product out. Make sure it works for everybody, make sure our users are happy, and that was my end goal. When it comes to partnerships, I&#8217;m not really too much worried about how many dollars this particular partnership&#8217;s going to bring into me. More of how happy will this make our users and will it get our brand in front of other users to also make them happy. So as long as our markets somehow can be combined, I think that&#8217;s the best way to look at it.</p>\n\n\n\n<p>[00:19:52] <strong>Nathan Wrigley:</strong> It feels like this is a train you in your business could at least get onto. You found a couple of partners, you&#8217;ve worked very happily with them, and you might move on to the next partner and the next partner, and the next partner and so on. I&#8217;m just wondering if that is now the intention for MainWP, you&#8217;ve enjoyed this experience. Is the plan to find new partners and see if there&#8217;s interesting ways that you can swell what your product does by partnering with other people? Or do you intend to have just a few close partners?</p>\n\n\n\n<p>Because that can be a nice model to work through as well. You&#8217;ve got five or six people that you work with very closely. You don&#8217;t have to dilute the work that you&#8217;ve got and try to maintain 50, 60, a hundred different extensions to MainWP, which may lead to, well, difficulty keeping them up to date as things change within their businesses and your business.</p>\n\n\n\n<p>[00:20:39] <strong>Dennis Dornon:</strong> Yeah, we actually are working on a dual model, if you will, of that. We have our extensions that we will build out, such as Atarim, which works through APIs. But we&#8217;re kind of moving away from building plugin based extensions like we had before, and we&#8217;re moving those more to also third parties.</p>\n\n\n\n<p>For example, the SEOPress extension, that was built completely by the SEOPress team. We did help with any development that they needed, but we didn&#8217;t get our hands too dirty in that. And then we worked with promoting them out. And same with the WPvivid backup people. They made their own extensions using our API and our code base, and they&#8217;re just putting those out themselves.</p>\n\n\n\n<p>We&#8217;re real happy with those. And we actually started doing more to help out those third party .org, I would call them, partnerships that kind of came across naturally. Like the WPvivid, I don&#8217;t believe they had much discussion with us at all. They kind of did the partnership the way we used to, where we launched the product and then sent over an email saying that, hey, we got a extension here, we made for you.</p>\n\n\n\n<p>[00:21:38] <strong>Nathan Wrigley:</strong> So do you wish to reach out and find new audiences? Different plugins and different, well, whatever it may be, different services that are out there. Is that the intention in the next one, two years, to find other partners to work with? Or is it very much case by case basis? We&#8217;ll do one at a time. We&#8217;ll take it nice and easy and slow. Or are you racing to get as many as you can?</p>\n\n\n\n<p>[00:22:00] <strong>Dennis Dornon:</strong> We&#8217;re a small team of only seven people. So we can only do, so many and we have to maintain our own. That&#8217;s what I was saying earlier, we&#8217;re really becoming more API focused when it comes to our internal extensions, because they&#8217;re easier for us to maintain as we&#8217;re crossing over into the 40 extensions that we have ourselves.</p>\n\n\n\n<p>Which is why we&#8217;re having the plugin users, or the plugin extensions are starting to be made by the actual plugin company, because they&#8217;re better at keeping those updated on their own, and it kind of takes a little bit off our plate. And then we&#8217;re able to still help co-market them. We&#8217;ve started adding into our actual plugin to make it easier for you to find these new .org partnerships that are coming around.</p>\n\n\n\n<p>But really what I&#8217;m striving for is, like you said, a platform base, similar to WooCommerce. We actually just kind of got lucky in this, because when we started back in 2015 with that first backup extension, it wasn&#8217;t to get along the path of WooCommerce and try and build a platform. It was, we&#8217;re a small, bootstrap company. I think we only had, uh, three people, or four people at the time. And backups were just killing our support and development time. We couldn&#8217;t come up with, didn&#8217;t have time to do anything new and exciting. We were just stuck on backup, month after month after month.</p>\n\n\n\n<p>And that&#8217;s when we decided start making these backup extensions that work with the plugins that were built by people who knew backups. So, we were able to offload that work to people who actually knew how to do it, just by connecting their plugin with our plugin.</p>\n\n\n\n<p>[00:23:27] <strong>Nathan Wrigley:</strong> It feels like you have a business which is really, really wide open to partnerships. And what I mean by that, and it may be difficult for me to describe. You have essentially a platform. You have an architecture, which means that things can be built right on top, so that they can update their own website.</p>\n\n\n\n<p>So, you could help SEO companies. You could help image compression companies. You could help form companies. They&#8217;re all part of the WordPress website ecosystem. So, there&#8217;ll be a lot of companies out there who maybe are thinking, well, yeah, but we&#8217;ve got this one plugin in it just does this one thing. I can&#8217;t see of a way to be partnering with other people. Have you got any advice to give to those people?</p>\n\n\n\n<p>[00:24:10] <strong>Dennis Dornon:</strong> Looking at it from my point of view, as the potential platform that you would build on. If you have a plugin, say a form plugin, something that can be used in multiple places. So you can have your setting set. If you&#8217;re usually like the same settings all the time, you can do that from a dashboard such as ours. Or if you want to get all your forms returned from one place, so you have 50 sites, but you want to see all the forms in one place. You could think of it like that.</p>\n\n\n\n<p>[00:24:37] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s more that you have a platform which enables you to partner with more or less anybody it feels like in the WordPress space. So that&#8217;s a good bit of serendipity. You&#8217;ve got this system which you&#8217;ve built over years. But a lot of people will be thinking, I can&#8217;t partner with other people, I&#8217;ve got this one plugin, which just does one thing. And it may be that partnerships are out of scope for them, and I guess that is just a reality.</p>\n\n\n\n<p>[00:24:58] <strong>Dennis Dornon:</strong> In that case, you probably would just be stuck with the co-marketing form, and then you would have to find somebody whose market aligns with yours that is willing to actually do a mailing for you. So yeah, that might be a tough one if it&#8217;s just a very basic plugin.</p>\n\n\n\n<p>[00:25:11] <strong>Nathan Wrigley:</strong> Yeah. The other thing about partnerships, I suppose, is that you are very much aligning yourself with a particular company. So let&#8217;s imagine that in the WordPress space there are four companies, company A, B, C, and D, and they basically do the same thing. We can imagine who these companies might be and how they are competitive rivals in the marketplace.</p>\n\n\n\n<p>There&#8217;s something there isn&#8217;t there. And what I mean by that is if you decide to partner with one of those and send out emails and you are lording how fabulous product B is. Do you have any fears that you have then cut yourself off from A, C and D? And that they won&#8217;t wish to speak to you because now, well, you know, it&#8217;s pretty clear from the stuff that they&#8217;re marketing over the last year that they&#8217;ve made their decision and we are not a part of that. Is that something that concerns you?</p>\n\n\n\n<p>[00:26:02] <strong>Dennis Dornon:</strong> I wouldn&#8217;t say. So if we just take a look at our backup extension situation. As I mentioned, WPvivid put out their own. And then of course we have some built in house and one of the ones we built in house actually comes from one of our competitors who also put up a backup solution.</p>\n\n\n\n<p>And we just deploy gratitude. Work with them and do your best. The fact they came to us, a competitor comes to us and asks for help with their promoting their backup extension. That just makes me feel good. I don&#8217;t think of it as a competitive atmosphere in that way.</p>\n\n\n\n<p>Just more of, hey, even though they&#8217;re a competitor, they&#8217;re not a competitor with this particular product, and this product will help our users. So yeah, that sounds like a, sounds like a good partnership to us.</p>\n\n\n\n<p>[00:26:41] <strong>Nathan Wrigley:</strong> Do you have any interesting input? We&#8217;re in the middle of November and this is 2022. This podcast episode will air within several weeks of this being recorded. And so with that caveat in mind, is there anything exciting that you have in the pipeline for MainWP users? It may be that the answer to that is no, Nathan, I don&#8217;t. But it may be that the answer is actually, we&#8217;ve got a couple of interesting things that we&#8217;re working on at the moment.</p>\n\n\n\n<p>[00:27:08] <strong>Dennis Dornon:</strong> We have a few interesting things. Um, I&#8217;m not sure which ones I can really talk about depending on when this comes out, so I&#8217;m going to have to keep pretty quiet on that. But, we got an interesting partnership coming up that I&#8217;m very excited about that should be out hopefully by January as long as everything goes smooth and determined by their marketing schedule. And then we also have some core updates, which are going to be pretty exciting.</p>\n\n\n\n<p>[00:27:32] <strong>Nathan Wrigley:</strong> So this is a product that you&#8217;re working on. You are actively working on it. Is this the only thing that you are doing, or do you, Dennis have other fingers in other WordPress pies?</p>\n\n\n\n<p>[00:27:43] <strong>Dennis Dornon:</strong> I strictly focus on MainWP. I like to stay with what I know. Remember we built this for our own use, and it&#8217;s grown from there. This is really kind of my baby. I&#8217;ve looked at other things, but just nothing&#8217;s ever really, you know, really caught my eye. When I wake up in the morning this is, I want to see how we can make MainWP better. I want to see what&#8217;s going on? I still check almost every support ticket, so I have a finger on the pulse of what&#8217;s happening. I may not be the one replying, but I&#8217;m still reviewing almost every support ticket, every forum post every Facebook post, just to really keep my finger on what&#8217;s happening in MainWP. And I figure if I, if I&#8217;m doing three or four other plugins, nothing&#8217;s going to be focused on for the end user.</p>\n\n\n\n<p>[00:28:29] <strong>Nathan Wrigley:</strong> It sounds from what you&#8217;ve said, and I could be misrepresenting this, it sounds like when you began, you were very much walking in the dark. You didn&#8217;t really know how the plugin would develop, how the business would develop. And it feels like you&#8217;ve really found your feet in the last few years, you&#8217;ve had some success.</p>\n\n\n\n<p>Obviously the plugin is selling to the point where you can swell the team to seven as opposed to whatever it was, one, two, or three in the olden days. And it&#8217;s a general question, but I, I do like these questions, the warm and fuzzy question. Are you still happy in the WordPress space. Is this a community that you enjoy being a part of? Are you still enjoying doing the work that you do?</p>\n\n\n\n<p>[00:29:07] <strong>Dennis Dornon:</strong> I would say I enjoy it more now than I did before. I am a private person. So I don&#8217;t like talking. I don&#8217;t like doing podcasts that much, or videos. But I&#8217;m trying to get better at it. And as I&#8217;m doing it, actually enjoying being in the WordPress community more and more. Just being out there instead of, we&#8217;re going on nine years in February, so for eight years, I basically hid behind this computer screen and didn&#8217;t talk to anybody except through email and chat, to actually be out talking to people and, interacting with people in a more personable way has really just made it much more fun for me than it was even in the beginning. And it just grows every day. I wake up wanting to come in. I go to bed wanting to come in. It doesn&#8217;t feel like work any day that I&#8217;m here.</p>\n\n\n\n<p>[00:29:53] <strong>Nathan Wrigley:</strong> Has WordPress itself changed in any way, which has affected your business strategy? Because a lot of companies, you know, if you&#8217;re a theme company at the moment, there must be a lot of introspection. Okay, where&#8217;s WordPress going with all of this? If you were a plugin which is now being overlapped by blocks, that must be an awful lot of anxiety about, okay, where do we need to go with this? We&#8217;re not quite sure how this is going to all settle down.</p>\n\n\n\n<p>It feels like your business inside of WordPress was really insulated from the changes that we&#8217;ve had since WordPress, well let&#8217;s say WordPress five with Gutenberg and everything. Or has there been a lot that you&#8217;ve had to refactor in the background to continue to make it working?</p>\n\n\n\n<p>[00:30:29] <strong>Dennis Dornon:</strong> We&#8217;ve definitely made a shift from where we originally were. If you look at MainWP, in the beginning we were really affiliate focused. I mean, that&#8217;s what we came from. Everything was set for affiliates and to grow affiliates and to make sure, you know, you could be a profitable affiliate. As years have gone by, I would say now we&#8217;re much more agency or creator focused than we are affiliate focused.</p>\n\n\n\n<p>Not that affiliates can&#8217;t find a way to use MainWP. It&#8217;s still going to work great for them, but it&#8217;s not our focus. As you see new extensions come out, they&#8217;re not something doing like a spinner syntax or something like you might have done 9, 10 years ago. Now it&#8217;s focused on different APIs, Atarim, SEOPress, things like that.</p>\n\n\n\n<p>[00:31:08] <strong>Nathan Wrigley:</strong> So, Dennis, you are sticking around in the WordPress space. If we come back in five or six or seven years time, we fully expect to have MainWP still available for us?</p>\n\n\n\n<p>[00:31:19] <strong>Dennis Dornon:</strong> Yeah. And that, that&#8217;s one of the, the great things too about being open source. I&#8217;ve said this from the beginning. If something happens to us, you still have everything. If MainWP as a company goes away, you still have MainWP. Your service is still going to work. It&#8217;s a plugin that doesn&#8217;t need MainWP the website to keep going.</p>\n\n\n\n<p>It&#8217;s going to keep going for you. So you don&#8217;t have to worry about us disappearing because the code is live, out there, anybody can pick it up if something did happen and we disappeared. Which of course, I hope we don&#8217;t, but it&#8217;s there available to people.</p>\n\n\n\n<p>[00:31:51] <strong>Nathan Wrigley:</strong> Is there a sweet spot that you feel, MainWP is now worth it? And what I mean by that is, obviously if you have one WordPress website, I can imagine the argument for getting into the MainWP platform is probably not that strong. You know, it&#8217;s fairly easy to log into your website and do all of the things that you need to do. But once you&#8217;ve got two or three, or four, or five or fifty or a hundred, the numbers begin to swell.</p>\n\n\n\n<p>And I just wonder if you had any thoughts on that. You&#8217;ve obviously got a target market. I know that you don&#8217;t gather much data about them, so maybe you don&#8217;t have a great deal to say in terms of the metrics there.</p>\n\n\n\n<p>[00:32:27] <strong>Dennis Dornon:</strong> it&#8217;s hard to say on who has what. I know we have different users. I would say probably four or five is where it starts to get a little time consuming, and at least the free core, which gives you most of what you&#8217;re going to need for that level would be a great place to start. Our average user based on the.org statistics, show that we average about 60 child sites per dashboards. So, dot org is saying we have 10,000 active dashboards out there with 600,000 active child sites. So I would say the jumping endpoint should be much closer to five than 60, but the average user has 60.</p>\n\n\n\n<p>[00:33:02] <strong>Nathan Wrigley:</strong> Always surprises me how there&#8217;s a tool for just about everything in the WordPress space, and much of it is open source. There&#8217;s a lot of SaaS platforms which do what you do, but it is nice to have an option that you can put on your own dedicated website.</p>\n\n\n\n<p>Do give us a little bit of intel, because I imagine quite a few people in the audience are interested in the privacy part. You spoke to me just before we hit record about the lack of data that you can bring to bear. And on the one hand, that might be frustrating for you, but on the other hand, it might be incredibly nice for listeners to the podcast to know how much data you collect, or quite the opposite, how much data you don&#8217;t collect.</p>\n\n\n\n<p>[00:33:40] <strong>Dennis Dornon:</strong> We really don&#8217;t collect anything. If you look on MainWP.com, if I can send people there, and you&#8217;ll notice at very top of the page we&#8217;re one of the only plugins that I know of that has their own private plugin policy. And that was actually a written by Donata Stroink-Skillrud of Agency Attorneys. And that&#8217;s a privacy policy for your plugins telling you exactly what information we&#8217;re gathering or in our case not gathering. We really don&#8217;t record anything of any personal nature.</p>\n\n\n\n<p>[00:34:10] <strong>Nathan Wrigley:</strong> And in terms of the support that you offer, a platform like this will become quickly part of the backbone of your business. You know, it may be that you log in once a day and update sites and you want to know that that&#8217;s possible and you want to know that should there be any problems, you can reach out to MainWP and get those problems fixed quickly. How do you handle support? Is it email? Have you got chats? Are you 24 7? Are you throughout the globe? How does that work?</p>\n\n\n\n<p>[00:34:36] <strong>Dennis Dornon:</strong> We have multiple people throughout the globe. We&#8217;re not 24 7. We are basically eastern standard time, 7:00 AM to about 4:00 PM. We have support both in a support forum at managers dot MainWP, and people can send in tickets. One of the things I&#8217;m proud of, we don&#8217;t charge for support. So if you&#8217;re a free user, or a pro-level user, we&#8217;re providing the same support for both levels.</p>\n\n\n\n<p>So nobody&#8217;s ostracized to just forum support or just this or just that. Somebody can send in a ticket or they can go to the forum or they can post on wordpress.org. We&#8217;re going to answer you however we can in any way we can. And support has been very strong from the beginning for us. We want to make sure everybody can get the answers that they need when they need it. Always keeping an updated knowledge base for users so they don&#8217;t have to ask because you know, who really wants to put in a ticket when you can just look at the knowledge base to find the answer. So we try and keep that as up to date as possible.</p>\n\n\n\n<p>[00:35:31] <strong>Nathan Wrigley:</strong> You mentioned before that you are just getting into the idea of making public appearances, so podcasts and videos that you&#8217;re making and so on. So this question may fall on deaf ears for you. But ,do you encourage people to reach out to you? Do you have any social platforms? Do you have an email address that you&#8217;d like to share? The answer to that can be no. But, uh, if do and you do like chatting to people on email and giving them into some intel into what it is that you&#8217;ve been working on, will be working on, you could share that now.</p>\n\n\n\n<p>[00:36:01] <strong>Dennis Dornon:</strong> Really, if you want to reach out to me, just go to dennisdornon.com. That&#8217;s my full name dot com. And it has a calendar on there. And I, I just put this site really updated last month with a calendar on there. Just got my calendly. Started have to actually uh, mark things on a calendar because they&#8217;re happening so fast lately.</p>\n\n\n\n<p>You can hop in over there and I&#8217;ll be glad to chat over Zoom with whoever wants to chat with over Zoom. Going to actually try and start to do a little more AMAs. It sounds like people in the community want to do that too. So you&#8217;ll have chances to reach out to me live on different ask me anything type videos.</p>\n\n\n\n<p>[00:36:31] <strong>Nathan Wrigley:</strong> Dennis Dornon and thank you for chatting to me on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:36:36] <strong>Dennis Dornon:</strong> Glad to be here. Thank you very much.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://twitter.com/dennisdornon\">Dennis Dornon</a>.</p>\n\n\n\n<p>Dennis is the founder of <a href=\"https://mainwp.com/\">MainWP.</a> A WordPress plugin which enables you to manage multiple WordPress websites from a single dashboard. As you&#8217;ll hear, the business has changed over the years, as Dennis has learned more about the plugins&#8217; target audience.</p>\n\n\n\n<p>If you&#8217;re a solo developer, or a working for a small team, bringing your WordPress product into the market can be very rewarding, but it can also be hard. Given the scale of the market, it&#8217;s likely that your product has got an audience, but with the time and resources being limited, it might be hard to break through and be widely discovered.</p>\n\n\n\n<p>Dennis talks today about how, in the recent past, he&#8217;s been trying out working with partners as an effective way to increase the plugins reach. As you&#8217;ll hear, it&#8217;s a strategy that he&#8217;s enamored with, given the right partner.</p>\n\n\n\n<p>We start off by talking about why Dennis built MainWP, and who the plugin was originally aimed at. And it&#8217;s not what you might expect.</p>\n\n\n\n<p>We then get into how Dennis is working out his partnerships as he goes. What is it he&#8217;s looking for in a partner? Not all companies in the WordPress space are going to be a good fit. And so he explains how it&#8217;s important that all partners have some skin in the game, and know what part of the deal they have to uphold. What are the things that need to be considered before the partnership begins? And how do you make sure that all the parties are keeping up their end of the bargain?</p>\n\n\n\n<p>It turns out that MainWP is a business which is in just about the perfect spot for bringing on partners. But if you&#8217;re a developer and have not considered this type of approach with your business, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://mainwp.com/\">MainWP website</a></p>\n\n\n\n<p><a href=\"https://jonathanwold.com/partnerships-in-portugal/\">Partnerships in Portugal</a> by Jonathan Wold</p>\n\n\n\n<p><a href=\"https://mainwp.com/seopress-partnership/\">Introducing “SEOPress for MainWP” Extension</a></p>\n\n\n\n<p><a href=\"https://mainwp.com/atarim-partnership/\">Introducing Atarim Inside MainWP &amp; Vice Versa</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 15:20:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Do The Woo Community: Acquisitions Are Not a Goal of Building a Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/acquisitions-not-a-goal-of-building-a-product/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:414:\"<p>There are paths to choose from and other considerations when preparing your WooCommerce product business for acquisition. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/acquisitions-not-a-goal-of-building-a-product/\">Acquisitions Are Not a Goal of Building a Product</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 12:30:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"Do The Woo Community: Building an Agency Team and Culture for Success with Marius Vetrici\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/building-an-agency-team-and-culture-for-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>Marius Vetrici from WPRiders shares his insights into running an agency and building a WooCommerce subscription plugin.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-an-agency-team-and-culture-for-success/\">Building an Agency Team and Culture for Success with Marius Vetrici</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 10:49:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: Mailchimp for WordPress Plugin for Sale in the Ballpark of €1.6M\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140295\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/mailchimp-for-wordpress-plugin-for-sale-in-the-ballpark-of-e1-6m\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3896:\"<p><a href=\"https://www.dannyvankooten.com/\">Danny van Kooten</a>, creator of the <a href=\"https://wordpress.org/plugins/mailchimp-for-wp/\">Mailchimp for WordPress</a> plugin, has indicated that he is interested in selling his plugin for somewhere in the ballpark of €1.6M. It is the most popular Mailchimp solution for WordPress, although it is &#8220;unofficial&#8221; in that it is not developed by or affiliated with Mailchimp in any way. It has more than 2 million active installs and has been downloaded more than 42 million times.</p>\n\n\n\n<p>In a <a href=\"https://news.ycombinator.com/item?id=33931627\">comment</a> on a popular Hacker News post that asks, &#8220;<a href=\"https://news.ycombinator.com/item?id=33923137\">What is the best income stream you have created till date?</a>&#8221; van Kooten dropped the hint that he is willing to sell the nearly ten-year-old plugin: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>It’s definitely not my passion but in 2013 I built a WordPress plugin around the API of a popular newsletter service and it’s been paying my bills ever since.</p>\n\n\n\n<p>Still going strong at €36K per month excluding VAT.</p>\n\n\n\n<p>There was (and still is) a huge market where non-technical people are looking for a GUI around something a programmer would find very simple (and usually too boring to work on). More so if the tech surrounding it is not particularly sexy, as is the case for WordPress and PHP.</p>\n\n\n\n<p>Ps. In case anyone is reading this, I am open to selling. I spent about 4 hours a week on it and the rest is handled by 2 freelance people costing about €1K / month each. Contact me for details if interested and willing to pay in the ballpark of €1.6M.</p>\n</blockquote>\n\n\n\n<p>van Kooten developed Mailchimp for WordPress when he was hospitalized in Vietnam due to acute appendicitis with extra time on his hands during his recovery. He identifies himself as an &#8220;accidental entrepreneur&#8221; in his Hacker News bio. In 2021, he was <a href=\"https://www.wired.com/story/sustainable-software-design-climate-change/\">featured in Wired</a> for his efforts in reducing his carbon output as a plugin developer. He refactored the plugin to send 20kb less data, and, due to its large user base, he estimates these changes reduced the world&#8217;s monthly CO<sub>2</sub> output by 59,000 kilograms, which Wired estimated is &#8220;roughly the equivalent to flying from New York to Amsterdam and back 85 times.&#8221;</p>\n\n\n\n<p>Mailchimp for WordPress has commercial upgrades ranging from $59 &#8211; $149 per year, and 1% of the plugin&#8217;s revenue goes towards environmental projects.</p>\n\n\n\n<p>Although Mailchimp recommends WordPress.com&#8217;s &#8220;<a href=\"https://mailchimp.com/integrations/wordpress/\">Mailchimp block</a>&#8221; as the official WordPress integration (also available in Jetpack 7.1+), van Kooten&#8217;s plugin is far more flexible. Mailchimp for WordPress integrates with other popular plugins like WooCommerce, Contact Form 7, Gravity Forms, Ninja Forms 3, BuddyPress, MemberPress, and Events Manager, allowing visitors to subscribe via the checkout or comments form.</p>\n\n\n\n<p>Several commenters on van Kooten&#8217;s Hacker News response indicated interest in his offer for sale. His comment offers a a rare, transparent look into a popular plugin&#8217;s revenue and potential sale price, as most companies that acquire WordPress plugins are almost never willing to reveal how much they paid for them. As Substack moves to <a href=\"https://twitter.com/cjgbest/status/1602370307884318720\">add compatibility for Ghost themes</a> and other third-parties, and newsletters become even more critical with people leaving Twitter, it will be interesting to see more movement in the newsletter support space. van Kooten may be setting out at just the right time to find a buyer for Mailchimp for WordPress.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 04:30:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"WPTavern: Gutenberg 14.7 Introduces Color Coding for Template Parts and Reusable Blocks, Adds Media Tab to Inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"https://wptavern.com/gutenberg-14-7-introduces-color-coding-for-template-parts-and-reusable-blocks-adds-media-tab-to-inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2734:\"<p>Sometimes Gutenberg introduces features that you never knew you needed. Such is the case with the new color coding system in the Site Editor. The latest <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7 release</a> adds color to template parts and reusable blocks in the list view, block toolbar, and block selection outlines. The colorization is intended to help users differentiate between the different block types as they edit their designs.</p>\n\n\n\nvideo source: <a href=\"https://github.com/WordPress/gutenberg/issues/32163\">Gutenberg PR #32163</a>\n\n\n\n<p>Another UI enhancement in version 14.7 is a new, experimental split control for block settings. It splits the block inspector sidebar to separate the settings controls from the appearance controls, giving the appearance side the same half-moon icon used for styles in the Site Editor. The intention is to make it easier to manage blocks with many controls, such as Group or Navigation blocks, that would end up having the settings scrolling down the page. </p>\n\n\n\n<img />image source: <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">Gutenberg 14.7 release post</a>\n\n\n\n<p>The split control enhancement isn&#8217;t set in stone yet, as it must be enabled as an experimental feature in the Gutenberg > Experiments admin menu. It seems helpful but could prove to be more confusing for users, so further testing is needed before it moves out of experiments. </p>\n\n\n\n<img />\n\n\n\n<p>The inserter is getting a major change in 14.7 with the addition of a Media tab, making it faster to add images, video, and audio. Users can select the new tab and select a media type to see the ten most recent items. There&#8217;s also an &#8220;Open Media Library&#8221; button at the bottom of the panel.</p>\n\n\n\n<img />\n\n\n\n<p>Other notable updates in 14.7 include the following: </p>\n\n\n\n<ul>\n<li>Page List block can now expand inside the List View to see the hierarchy of pages (<a href=\"https://github.com/WordPress/gutenberg/pull/45776\">45776</a>)</li>\n\n\n\n<li>Layout controls added to children of flex layout blocks (width for row and height for stack are now available for child Row and Stack blocks) (<a href=\"https://github.com/WordPress/gutenberg/pull/45364\">45364</a>)</li>\n\n\n\n<li>Significant load time performance improvements from caching the results of querying settings from theme.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/45372\">45372</a>)</li>\n</ul>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">changelog</a> to get a more detailed look at the dozens of improvements and bug fixes included in 14.7.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2022 03:17:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=22971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45870:\"<p>Daisy Olsen and Birgit Pauli-Haack discuss Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January and much more.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h3>Announcements</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\">Leveraging theme.json and per-block styles for more performant themes</a> by Justin Tadlock</li>\n\n\n\n<li><a href=\"https://wordpress.org/themes/oaknut/\">Oaknut</a> by Anders Noren</li>\n\n\n\n<li><a href=\"https://wptavern.com/anders-noren-releases-oaknut-a-new-profile-block-theme-with-23-style-variations\">Anders Norén Releases Oaknut, a New Profile Block Theme with 23 Style Variations</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/11/29/a-php-developers-guide-to-getting-started-with-block-development/\">A PHP developer’s guide to getting started with block development</a> by Michael Burridge</li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">Developers Guide to Block Themes (Part 1)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">Developers Guide to Block Themes (Part 2)</a></li>\n</ul>\n\n\n\n<h3>Community Contributions</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/plugins/lang-attribute/\">Lang Attribute for the Block Editor</a> </li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/abbreviation-button-for-the-block-editor/\">Abbreviation Button for the Block Editor</a></li>\n</ul>\n\n\n\n<h3>What&#8217;s released</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">What’s new in Gutenberg 14.7? (7 December)</a></li>\n\n\n\n<li><a href=\"https://wordpress.github.io/gutenberg/?path=/docs/docs-introduction--page\">Storybook</a></li>\n</ul>\n\n\n\n<h3>What&#8217;s worked on</h3>\n\n\n\n<ul>\n<li><a href=\"https://github.com/wordpress/gutenberg/issues/45371\">Global Styles: Allow saving, importing, exporting, copying from another theme without switching to it</a></li>\n\n\n\n<li><a href=\"https://github.com/wordpress/gutenberg/issues/29577\">FSE: Create more robust autosaving including UI&nbsp;</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2022/12/05/design-share-nov-21-dec-2/\">Design Share: Nov 21–Dec 2</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcrip</strong>t</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello </p>\n\n\n\n<p>and welcome to our 77th episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about Gutenberg 14.7, what&#8217;s next for Block Themes and an upcoming Live Q&amp;A in January and so much more. My name is Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress developer advocate and core contributor on the WordPress Open-Source Project. Today we are recording the last show of 2022, and we are all in for a special treat. I&#8217;m thrilled to welcome Daisy Olsen to the show, a master educator on Block Themes, fellow developer advocate, and first-time release lead of the latest Gutenberg plugin release 14.7. Good morning, Daisy. Thank you for making the time and join me on the show. How are you?</p>\n\n\n\n<p><em>Daisy Olsen</em>: I&#8217;m doing really well. Thanks so much for having me today.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re so welcome. It&#8217;s a special pleasure for me. So, for the last year, you have been working on various educational material around the Block Themes. Your workshop at Word Camp Europe was standing room only. And then you gave an updated version three months later on Word Camp US. You also worked with a training team on online workshops. If someone knows about Block Theme, it&#8217;s you. So, what are some of the most asked questions you hear from participants about Block Themes, or what are they&#8217;re most struggling with when building Block Themes?</p>\n\n\n\n<p><em>Daisy Olsen</em>: So, I think that people come from a lot of different places in their development career or path. I&#8217;m not sure if I have any specific most asked questions at the top of my mind. But I do think that the move to more low-code or even no-code options for creating themes is a paradigm shift and it&#8217;s going to take some time for everyone to get used to it. Given how quickly the number of block themes has increased, I heard like 250 or more potentially in the theme directory there&#8217;s certainly some energy building. I would say that one thing that I&#8217;ve heard in general is that there&#8217;s sometimes some worry around how existing theme functionality will work as we move towards a block theme first ideal. And the short answer is that the old waste will still work. We&#8217;re not replacing the PHP-based theme engine. We&#8217;re expanding on it and making it much easier for developers, and users alike to participate in the theme creation process. But change can be hard, and this is a process that will happen over time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you for that. What I see that it&#8217;s also what the last bit, that it&#8217;s actually not a replacement, it&#8217;s actually an expansion of the existing theme hierarchy framework is a little hard to hear overall. This is the new things doing things what happens with the old and I think that&#8217;s part of the problem that we have, and we are all working on it. And I know that Matias also said that, there&#8217;s nothing&#8217;s going to go away or get obsolete. It&#8217;s just that the user no code, creating a theme with the site editor is actually kind of expanding the user base of it and not shrinking it. And if the pie gets bigger, I think we all really profit from that.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I would just add that as we think about the way that WordPress themes are created as an expansion. It will open up the opportunity for people to come in with a different skill set that maybe would not have been able to create theming in the WordPress, they mentioned the way that it has existed. And one of my very favorite things about WordPress theming is that you can take a theme created for version 1.2 and install it today and it&#8217;ll still work. You can&#8217;t go the other direction because new features have been at a new functionality. But you can take something as old as so many years ago and still basically use it today. I don&#8217;t know that anybody is going to do that necessarily. But the fact that backwards compatibility is such a big part of the culture of WordPress is a huge comfort if you&#8217;re thinking about the future.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Totally and that&#8217;s also what made WordPress so big is almost a 20-year backwards compatibility. And I&#8217;m really amazed, and every release party that I participate on beta releases or release candidate releases when we upgrade 4.0 something themes to the new theme, the upgrade is just seamless. Everybody who worked on the core releases has made sure that older versions upgrade to the new versions and the same happens with the classic themes that the workers will always work for classic themes. It&#8217;s not, sometimes things change, but it&#8217;s also, there&#8217;s a lot of effort also in the developer. Good work developer could not develop, a community where the effort is to make part of the block theme features available for classic themes. An example was that all the block-based template parts that can be used for classic themes, and they had that came with 6.1. Do you have seen a lot of adoption of those or what people are doing with them?</p>\n\n\n\n<p><em>Daisy Olsen</em>: We have more to do to encourage people to adopt those gradual adoption pathways, but the fact that they exist is really a great thing that we&#8217;re not expecting. The project is not expecting people to go in headfirst and change everything that they know and all of their workflows and everything. But there are ways that you can take legacy code because the truth is that not every client is going to be ready for a full redesign and some never are. But the pathways that we have to take legacy code and expand it to adopt some of these new features is really powerful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s not a really good business case to make to say, &#8220;Okay, now I start using the new thing for new client project.&#8221; Unless when you have a tested and proven workflow to get new clients online very easily for the last six or seven years, you are not going to change your workflow as the same available or agency freelancer to change that from today, from tomorrow. So, it definitely takes some time to adjust to that. We have seen this with other new features in WordPress they take about two to three years. All right. But I digress or we digress a little bit, but I think we always kind of need to talk out about a few things.&nbsp;</p>\n\n\n\n<h3><strong>Announcements</strong></h3>\n\n\n\n<p>But we are ready for our announcements. And as I mentioned in the intro, we have a great good work time live Q&amp;A planned. It&#8217;s in preparation for working with Asia. The title is layouts, layouts, layouts, and Layouts of fundamental part of how Block Themes work. And it allows you to define the width of your post content, arrange the blocks horizontally, as well as vertically. And left or right aligned and inside container blocks. And in terms of block styling, layout is a complex feature because it affects not only the container but also the child blocks in ways that go beyond the cascading style sheets inheritance.</p>\n\n\n\n<p>In the show, we will have Isabel Bryson, Andrew Serong, Justin Tadlock, and we will discuss the opportunities and challenges for this layout feature and for site builders. Both or all three of them, and I&#8217;m two but only minimally available for your questions to answer them. And Isabel Bryson will also give us a little demo of the various layout scenarios, which is kind of flex and fluid and constrained. And there&#8217;s certainly some more development being done in the few, in the couple of weeks that are until we have that, it&#8217;s going to happen on January 11 at 5:00 p.m. Eastern. That&#8217;s 10:00 UTC, 2200 UTC. And it&#8217;s a little bit of a different timeframe than other because Isabel and Andrew are in Australia. So, we have a little Pacific, an Asia Pacific kind of timeframe there. And Isabel is also a speaker at Word Camp Asia, so it&#8217;s going to be a great show.&nbsp;</p>\n\n\n\n<p><em>Daisy Olsen</em>: All right. Sounds great. Another thing that has come up recently is that the WordPress support forums are now including, rather than the WYSIWYG formatter or text format block. We have the embedded block editor. So, we&#8217;re going to see the ability to add blocks and support forms. So, it&#8217;s going to be interesting to see how that is received for by the user base and if it helps to move the support questions forward in a way. But anytime we see the Gutenberg project, the block editor as we know it outside of WordPress. Outside of the WordPress administrative area, it&#8217;s really neat because it shows how the power of this contained thing that can be dropped into another environment and used in a different way, so&#8230;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: We have in the show notes where we have the post from Alvaro Gameiro, I&#8217;m just checking the name, Alvaro Gomez. I had all letters write, and right now it&#8217;s in testing, but it won&#8217;t be in testing for long, so if you follow the post, there&#8217;s also a link for the test site, so you can try it out and see how you feel about it and also share your feedback on the make blog support post in the comments. We also have new posts on the new developer block. So, for five years I have now the trouble that is block and blog with the pronunciation so that the new developer blog is two new articles: One is Leveraging theme.json and the Per-Block Styles for More Performance Themes by Justin Tadlock.</p>\n\n\n\n<p>And he outlines how using the theme.json two style, all your elements, the blocks, the individual blocks, as well as some of the elements centrally through the theme.Json file saves you quite a bit on CSS file length. And also code I&#8217;m a fan of Anders Noren themes and he has done some great work on the block themes and he just released his theme Oaknut, which gives you a kind of link tree way to create your page and has, he says a really small CSS file, and it comes in less than 150 lines and 120 of those are lines for the custom block styles that he includes in the theme.</p>\n\n\n\n<p>So, he does not style the main thing and all the other styles that come with WordPress theme classic theme. So, I think that&#8217;s also another reason to maybe use the theme.json funnel for classic themes, which is possible. Any comments on that, Daisy?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Just that it&#8217;s exciting to see that our CSS starts to get smaller and by moving things into theme.json we are paving the pathway to make more performant sites because we&#8217;ll be able to build up more tooling to only use the CSS in line when we need it. And that hasn&#8217;t always been the case. So, trying to keep things small and concise where possible is going to take things a long way. So, I think we&#8217;ll see a lot more improvement. And it&#8217;s great to see people trying to push the boundaries of small, can you make your custom CSS and still get a really beautiful design out there? That can be distributed out to a lot of people. Anders puts his themes out to the community through the theme directory quite often, and I think that he&#8217;s right on the front edge of where things will be in a couple of years.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And as Anders also opened up his GitHub repost for the theme, so you can actually learn from his coding and kind of inspect them a little bit closer if you want to. So, the second post on the developer blog is a PHP developer&#8217;s guide to getting started with Block Development by Michael Burridge, and he practically gives you a roadmap of what you need to learn or what you need as tooling and also some shortcuts and tips. If you are new to modern JavaScript development, it&#8217;s all in one place so you don&#8217;t have to chase other sources. You might need to read up a few things, but also have some great links for you to study more.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I love the approach of moving into trying to help PHP developers because so many of us are coming from that side of things as WordPress-focused developers. And sometimes the JavaScript is especially modern. JavaScript is, it&#8217;s kind of daunting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you start researching yourself if you don&#8217;t know where to focus. So having a curated guide is really valuable and cuts down a lot of the time that you would need to do your own research. Still and he says it in his post as well. There are some hurdles or learning curves to overcome, especially with react. But there&#8217;s also some great abstraction in Gutenberg that you can get quite a long way adopting the blocks without actually touching JavaScript. What comes to mind is block styles, block patterns with new locking features. I can see that a few agencies might say, &#8220;Okay, we are not creating new blocks because now with the block patterns.&#8221; We can style them and we can lock them down for our users to use, and we don&#8217;t have to create new JavaScript for that. That&#8217;s also a great approach is to kind of think about when do I actually have to start developing for my own custom blocks.</p>\n\n\n\n<p>A while ago, must have been maybe a year and a half ago, Victor Ramirez and I, we had a little live Q&amp;A on that approach to kind of see what an agency approach could be in a gradual adopting, here&#8217;s the word again, gradual adopting the new things. When do you really need a developer where designers and content creators actually can go a long way. So, I&#8217;ll put the link to that video and all the resources there into the show notes, so you can look up about it as well. So, the training team published two-part courses talking about block themes. It&#8217;s the developers Guide to block themes, part one and part two. So that is definitely a great resource if you want to go from Zero to Hero and get all the latest features in there. And of course, the links are in the show notes developer&#8217;s guide to. But they&#8217;re all published on learn.wordpress.org. That&#8217;s a fabulous site. And I know that some of your events that you did on online education Daisy are also available through the site.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I have some workshops published there, and also, I will occasionally run online workshops through the Learn WordPress Meetup group, which is also part of the training team&#8217;s efforts.</p>\n\n\n\n<h3><strong>Community Contributions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. All right. We&#8217;re coming to Community Contributions and then we are for the release. I just wanted to give a shout-out to Jean-Baptist Audras address from the Whodunit Agency and is also outgoing team rep of the WordPress court team. And he tweeted that his agency released two new plug-ins mini micro plugins with creating accessible content. One is called Lang Attribute for the Block Editor. When you change in your writing the language that you can add a Lang attribute to your paragraph tag or whatever block that is, which makes you then also compact or compliant with accessibility standards for language of parts.&nbsp;</p>\n\n\n\n<p>And then, the second plugin is the abbreviation button for the block editor. Which helps you provide definitions for abbreviations using the tag the HTML tag, &lt;abbr&gt; element. And it&#8217;s quite neat because then you get a little, if there is an abbreviation, you get a little on the front end, a little squiggly line or something like that where you can point to it with your mouse and then get the long content for the abbreviation, which is actually quite neat.</p>\n\n\n\n<p>He also tweeted that worth noting that indicating language changes in content is mandatory for the WCAG or CWE compliance. And there is currently no way to do this in the block editor except for adding the code manually, editing the code manually. And this features, he says, continues this feature should be implemented natively into Gutenberg. And I just did a little digging and there has been an open issue and it&#8217;s actually goes back to the accessibility audit and there has been some movement, but not we need some developer to kind of get it on it and fix it or put it into a core. All right.</p>\n\n\n\n<h3><strong>What’s Released &#8211; Gutenberg 14.7</strong></h3>\n\n\n\n<p><em>Daisy Olsen</em>: So, let&#8217;s move on to the Changelog for Gutenberg 14.7. Gutenberg 14.7 was released this week with 165 merch PRs by 48 contributors, nine of which were first timers. And it&#8217;s packed with quite a few features, some of which are pretty experimental. And you would need to enable them through the experiment settings. And namely, that is a tabbed sidebar that splits out your block control settings between appearance, tools, styles, and other settings. Hopefully the hope there is to make it a little easier to navigate big improvements to the navigation block media selection from the inserter and more controls for the inner blocks of flex layout blocks. Other core blocks receive some small refinements that make the overall experience more consistent. There are also 19 bug fixes for accessibility improvements and quite a few documentation and code quality updates.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And congratulations, Daisy, for your first Gutenberg plug-in release. How was that experience?</p>\n\n\n\n<p><em>Daisy Olsen</em>: It was exciting and I learned a lot about how the release post comes together quite a bit that goes into it and I hope that I have another opportunity to go through this process again.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I found it when I did. So, mine was actually 13.7 yours were 14.7 so it&#8217;s kind of a bookend kind of there. And I really learned quite a bit how the whole thing comes together and about PRs and about all the processes that there are quite a few automations happening and how to handle between release candidate and stable, how to handle updates that need to get into the release. Everybody who wants to be should start reading about the release process and see if you want to volunteer for that. That definitely needs some technology background on that. That&#8217;s not something for a fly-by contributor of course, but you get help from others.&nbsp;</p>\n\n\n\n<h3><strong>Enhancements</strong></h3>\n\n\n\n<p>All right let&#8217;s dive into the changelog as mentioned, the block library, some standard core blocks got some refinements. The first one is that the heading block now has a class name of WP/block/heading, which means that you can target any heading with your CSS, and now that that&#8217;s in place. And it&#8217;s kind of a prototype of getting other blocks, also having a specific class name so you can target again, that was some in and out from the team that it was in there at the beginning and then they were moved around a bit and now they&#8217;re coming back.&nbsp;</p>\n\n\n\n<p>I see how that&#8217;s kind of going to work out the navigation block, I think we&#8217;re going to talk about the navigation a little later in quite some detail because it has a revamp and it&#8217;s in the experiment. We&#8217;re going to talk about that a little later. The template part block has now you now see in the site editor the colorized template parts, what is ahead of, or what&#8217;s a reusable block when you go down the list view on the left-hand side, you see some color coding there. Your eyes and your brain can better disseminate the different pieces of your page.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I really like that. I find visual cues to be very helpful. Things like if I were on a staging site, I might change the theme on it to be some obnoxious color on the admin side. I know that I&#8217;m in staging, but this is a small improvement just to give you a visual cue of what is a bigger piece of your list view rather than the individual blocks that are within the content.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And your reusable block, I don&#8217;t know if you said it, but the reusable blocks also have this colorized outline. The page list block hasn&#8217;t been touched for a while, but it gets on refinements that it actually expands in the list view, and you can change the starting page. If you are on a page that&#8217;s kind of the beginning of a set of other pages here, like a hierarchy, you can add links to the subpages in the page list block that you can add to the side of your page. So, you can outline the subpages as well. That was still missing. It was available in the other editor, in the menus, but the list block now has that, too. And the table block now, there are a lot of things that can be done to improve the table block. But now, it supports the colspan attribute so you can merge cells from the same column into one place in the table HTML and you have some listed tables if you want to. But that was definitely important when you copy-paste tables from another page or another text editor into the block editor that you keep the colspan attribute aligned so the columns and rows align correctly.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I&#8217;d say that, just in general, anytime we improve the ability to paste content in from another place is a good thing. Because the truth is that we don&#8217;t always start our writing within WordPress or we&#8217;re using something that was collaborated on some other location. So, trying to keep things aligned with how they might exist in other places is super helpful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Really. Well, really, we use Google Docs quite a bit, or I use Google Docs quite a bit. And from the beginning of the block editor, I was so amazed how seamless the copy and paste works from Google Docs to block editor, if you are sparse with your design on Google Docs. The layout you have to do on the other side, but it brought over the headings, the list, the indented list, and all that. It&#8217;s a really good place. But now, we can also do the tables, yes.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Another thing that I use is to pull in markdown, and I love that it just magically turns into HTML.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. There are actually markdown shortcuts that you can use on the block editor, yeah. That&#8217;s really cool. I need to do more markdown. When you paste markdown into GitHub, it kind of ceases that code and you cannot&#8230; It was weird. But post it into WordPress, and you can all read it. So, there was quite a few changes to the components, mostly adding a new opt-in for background color and for opt-in props. So, you can actually use that component.</p>\n\n\n\n<p>The global styles component got a new on-change action. So, when the color to the color palette, so when you click on the color palette on the&#8230; So, on the right-hand side, you see the color palettes and you see, every time you change the color, the little circle next to the property takes on the color. But when you click on it, it always went back to the default setting of the color palette.</p>\n\n\n\n<p>Now, when you click on it, you see the color that was in there before also in that little window in the color palette. So, if you just want to change the view of a color, then you don&#8217;t have to navigate to the color again and then change the views. You really see, okay, this was before and this is&#8230; So, it&#8217;s a really good improvement for changing colors. And yeah, I really love it. That&#8217;s why I pointed it out.</p>\n\n\n\n<p>The others are more like code quality improvements there. And then, now, the block editor gets the insert of the block editor. It gets a new media tap. So, now, you will be able to add pictures right from the inserter instead of going to go to the media library selected, come back to the editor. It&#8217;s now very seamless, which means that there are additional tabs. There&#8217;s one additional tab. And it gets a little crowded. So, you have the blocks, then you have the patterns, then the media tab. And your reusable block are still there, but they are replaced by an icon. And that&#8217;s the icon that you see on other reusable block references. So, I really like it. You get also some preview to the pictures. And so, it&#8217;s tested out. It&#8217;s quite amazing.</p>\n\n\n\n<p><em>Daisy Olsen</em>: And then at the bottom of the area, you still get an option to load up the old media library modal overlay. So, if you prefer that, it&#8217;s still there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, good point. Because the media library view gives you a lot more pictures to look at to select from. Because the other pictures in that view, you see one at a time in a little preview and you have to scroll through them. But if it&#8217;s just an image that you uploaded the last week or the last two weeks, depending on how much content you provide, it&#8217;s a really neat shortcut.</p>\n\n\n\n<p><em>Daisy Olsen</em>: So, the layouts control has been added to flex layout blocks, notably the row and the stack, so that you can fit. What is it? Fit, flex, and contain. Basically, those are not the right words. I wish I have to cover.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Fluid.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Yes. So, it gives you more control over how those two group block types will display the blocks or how the inner blocks or child blocks will be structured.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You also get now a minimum height block support under dimensions for the container block. Container block is like a group block or the cover block. Because it&#8217;s hard to fill something when it&#8217;s in it, it doesn&#8217;t have a maximum height thing or minimum height to put an image that fills up the whole block. So, that&#8217;s also something in there. And you can also resize the children or inner blocks. Resizing children is really hard. That&#8217;s why I try to find a different. Because the parent-child relationship, that&#8217;s more like a developer thing. It&#8217;s not for, yeah&#8230; But, yeah, that&#8217;s a great addition to that. Scrolling down to the experiments. And then, there&#8217;s a whole lot of things for the navigation block.</p>\n\n\n\n<h3><strong>Experiments</strong></h3>\n\n\n\n<p><em>Daisy Olsen</em>: So, there&#8217;s a new experiment flag that you can enable or opt into by going to Gutenberg experiments and checking the box. And what this is going to add is, in the sidebar controls for your blocks, where you would normally set your appearance settings or any other settings that are part of that block, it&#8217;s going to split out the appearance items from everything else. So, there will be a new tab interface in that sidebar, so that you can minimize the amount of scrolling that you need to do. So, it&#8217;s an experiment. And feedback, obviously, welcome. I don&#8217;t know how much it&#8217;ll change, but it&#8217;s a cool idea. I like anything that we can do to make the interface less overwhelming will be beneficial. But that is a new experiment. And I look forward to seeing how it evolves.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The navigation block also uses that space in the sidebar to actually have an off-canvas editor. That&#8217;s how it&#8217;s used now that, in the sidebar, so you get a list of your pages or the menu items that are in the navigation block. So, you have a little bit more space to edit them and rearrange them and, also, add new pages to it, because the little place that you had in the navigation block, if it&#8217;s in the header, you have overlapping issues with links and setting block tube settings. And it was a total chaos, I would say. Yeah, if you really wanted to get in there.</p>\n\n\n\n<p>And it was hard to actually add sub menus. And this feature makes it really, really easy to create sub menus. And it&#8217;s almost like a mini-version of the old menu navigator from the WP admin, the old menu settings there. And you can add and remove pages or links quite easily now, in addition to the being able to add other blocks to the navigation bar, like a search block or a site logo block like that. So, yeah, test out the new navigation block, because it&#8217;s a test that has gotten quite a few revamps from the original features, and if you like it better.</p>\n\n\n\n<p>So, the experimental settings that you see now in that menu item, one is the zoomed-out view where you can see all your template ports and all your themes all in one place in thumbnails. And then, the off-canvas navigation editor. And then, there&#8217;s also a&#8230; I haven&#8217;t tried it yet, but I heard about it yesterday on the hallway hangout for the FSE project. There is a global styles color randomizer. So, if you are not very good in color combinations, you can select one color, or the randomizer gives you a full palette for your styles. It&#8217;s a really interesting thing. It&#8217;s more a gimmick, but it&#8217;s like the dual tone or the gradient.</p>\n\n\n\n<p>But the people who want to work with colors, it&#8217;s definitely an improvement. And then, the fourth one is the block inspector tabs would be with the settings and the appearance controls changed. So, for experience, it&#8217;s been a while that we had four experiments happening in the block editor. I think it was the early days of full-site editing, had quite a few experiments. But that was back in 2020, early 2020. And now, two years later, almost three years later, we have new experiments, also.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I think that&#8217;s a great thing because it shows we&#8217;re feeling confident with what&#8217;s not experimental anymore enough to go out into new territory again.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Sometimes, it&#8217;s also hard to isolate a feature into a separate place that it&#8217;s turned on and off. But yeah, it definitely has&#8230; But you need testers. So, if you are in the get the new version, check it out and let your feedback be known. It&#8217;s really important that those things are tested very early and feedback comes in, even if it&#8217;s not testing or if you don&#8217;t find a bug, but you say something is quirky or, &#8220;I don&#8217;t understand things, yet,&#8221; it&#8217;s very, very helpful when you let the team know. The document there were&#8230; Do you have anything else that you wanted to add to that?</p>\n\n\n\n<p><em>Daisy Olsen</em>: No, all good.</p>\n\n\n\n<h3><strong>Documentation</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There are a few documentation edits happening there. And I only want to point out that the storybook site that&#8217;s online or that you also can get locally with the Gutenberg thing has now a link to the component folder on GitHub. When you look at a component with all the isolated, with all the features or features, attributes, on and off switches, different color scheme, you can test it on the storybook site. But when you want to check out the component, you get a direct link to the place in the Gutenberg report for the source code, so you can really double-check certain things. So, it&#8217;s a really good tool when you get down to the component level on whatever you want to build and use the storyboard to test your code.</p>\n\n\n\n<h3><strong>What is Active Development or Discussed</strong></h3>\n\n\n\n<p>So, this was the Gutenberg 14.7 change log. Well, thank you for going over it with me, Daisy. We are now in the section what&#8217;s in active development. And I have a few things there. One of them is that the team is working on making style variations theme-agnostic. What I understood with that is that you can use theme style variations that you selected even with a different theme.</p>\n\n\n\n<p><em>Daisy Olsen</em>: There are a few parts of it, the way that I&#8217;ve seen it in the design panels. And one is the other installed themes that may not be active on your site. The variations will be available, also, to be able to edit them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Cool.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Which is very cool. And then, to be able to import and export style variations from other places is another piece of it. So, I think that just a general expansion of the way that we can work with style variations is going to be really interesting. But, yes, theme agnostic is a great way to put it, because really, with the right base for how those style variations are created, particularly in terms of how things are named for color palettes and such, you should be able to take a style variation and put it onto any site that&#8217;s using a theme.JSON. So, I think that it&#8217;s been a really great thing with the way that 2023 default theme was created. And it spearheaded this idea that we should be able to use these in more than one way. But this is one piece of making it easier to switch themes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And even if that&#8217;s not a one-on-one good fit, you definitely get 80% there when you switch a theme to use the same styles that you had and then adopt what is missing. Because, you mentioned in the sentences, if the color scheme is not standardized from one style variation to the other, it might be a little bit wonky at first, but you can certainly adjust it. And I also can see one feature that could be used someplace else or in some other way is to just import style variations from other places. Like, if a theme developer has a website where have additional style variations that he doesn&#8217;t want to package with his or her theme, it certainly would make it available, just download it and add it to it. I can also see the 2023 theme as a community-wide effort. And there were 38 style variations that were submitted to be included, and 10 of those were selected. But now, there might come a way where you can actually add some of the others into your site, at least.</p>\n\n\n\n<p>All right. So, Joen Asmussen, he&#8217;s on the design team and one of the early design leads on Gutenberg, has started quite a while ago, every two weeks, posting on the design team&#8217;s make blog his design shares. And the one from last week had a few things in there that I want to point out. So, wordpress.org is in a huge site overhaul. And in the post, you see the markups of the dev hub, which is the developer site, and the job site. And there&#8217;s some great visuals. Sorry, I can&#8217;t show them to you in the podcast. But, of course, I share the link in the show notes. But you see the updates of the dev hub pages as well as the jobs pages on the org, on how they are designed and worked on right now by the meta team. Have you seen those designs?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Some of them. I haven&#8217;t seen the post, but I saw some of the designs other places, the meta team.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The design process is quite a long one. There&#8217;s a second round of feedback now through the docs team because they are the owner of the sites. So, maybe I should find that as well and put it in the show notes. Another one is that the design team created the designs for a future style block. No, style book, not a block, style book. The name is still not final, but what it is, is actually a neat feature where you can see on a screen for each block how it&#8217;ll appear on your site. That&#8217;s not new. You had this with any of the themes that you got a page where you can look through how my heading&#8217;s going to be looking at. But now it&#8217;s for every block. And you can now, also, on the right-hand side, see when you check a different style variation, see how the blocks change with that.</p>\n\n\n\n<p>And that is a fabulous feature. It really makes that coming up with new things or checking out new things like a new style variation, or so. It comes really handy. There is no surprise. There is no, &#8220;Oh, Don, we didn&#8217;t look at it beforehand, but there are two things wrong with the table block,&#8221; or something like that. You see it before you do it. And then, you can do some fixes, if you want to. But you see how the site really works, not only on the front page but with every block that you put in there.</p>\n\n\n\n<p>And when I tested it, what I also saw is that it also includes the third-party blocks. So, if you have from JetBag or from Jost or from Coblocks, all those blocks will also show up in that and you see how they will change with a change of the style variations, which is, I find that particularly important because many of those block suites came out in the early days of the block editor, and some of them have not been updated. And you will see it there, too, and see which ones are actually a little bit that needs some more TLC there.</p>\n\n\n\n<p><em>Daisy Olsen</em>: I think of this as like a unit testing feature. But rolled in, instead of having to be imported, it&#8217;s available. Once it gets in, it would be available all the time. So, you can always double-check how things are looking without importing content or some of the other ways that we&#8217;ve had to do this kind of unit testing in the past.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The feature is merged into the code base. And it&#8217;ll be released in the 14.8 release. But it&#8217;s also available, it&#8217;s already available in the Gutenberg Nightly version, if you want to download that and get an early look at it. I really loved it. And then the last one from that post is the&#8230; Is it in any post? There is a video in the design post on the reorganization of the editor.</p>\n\n\n\n<p>It&#8217;s also coming or slated for 14.8, is that the editor screens receive some reorganization that it&#8217;s better positioned for the future enhancements like the browse mode. And the poster design post has a short video for the new way of things. So, it&#8217;s more like an organized version. Right now, when you click on the appearance editor link in the WP admin, where you get your right into the editor of your homepage, which is a little bit confusing, now, when you click on it, you get the menu on the left-hand side.</p>\n\n\n\n<p>And what you see in the canvas is actually just a view. There&#8217;s an edit button where you can start the editing, but you are not going to edit by accident. Or, you can then navigate to the other template parts much easier instead of getting out of the canvas. There are all these little things where little annoying things are taken care of. And I&#8217;m looking forward to that. Some of the UI experiments, new UI is already in the experiments, but that gives them a new home, so to speak. Any comments on that?</p>\n\n\n\n<p><em>Daisy Olsen</em>: No, I look forward to seeing more about what&#8217;s coming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s really cool. I think there&#8217;s so much more coming. And I&#8217;m looking forward to 6.2 because some of it is definitely slated. We don&#8217;t have any plans yet on the 6.2 release cycle. That&#8217;s a very shortening&#8230; It&#8217;s a nice shortening of things. Instead of release cycle, you say recycle. Well, the state of the word is coming up. And I&#8217;m sure we hear a little bit about what&#8217;s coming in 2023, a review of 2022. It&#8217;s on December 15th at 1:00 p.m. Eastern 1800 DTC. I always need to check my calculations on the time zones. That&#8217;s just a shout-out for don&#8217;t miss it. It will be recorded, of course, for anybody who has no time at 1:00 p.m. or in the evening. So, Daisy, is there anything? How can people reach you if they wanted to connect with you? And what is in store on the online meetup?</p>\n\n\n\n<p><em>Daisy Olsen</em>: Let&#8217;s see. So, nothing scheduled for online meetup, as we&#8217;re coming into the holiday season. If you&#8217;d like to get in touch with me, I am Daisy O, the letter &#8220;O,&#8221; on mixed Slack. And also, that&#8217;s my WordPress profile. Most other places, Twitter, Facebook, LinkedIn, I&#8217;m DaisyOlsen, all one word.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So, so we&#8217;re coming to the end of the show, and I will thank you very much for spending the time with me here and going through the change log. Good work on all the good educational pieces that you do. And if you have any questions, still listening about block themes, you can contact me. But I will point you to Daisy, in shortcut, unless we find, of course, already material online. She also has one post in the developer blog. What is that about?</p>\n\n\n\n<p><em>Daisy Olsen</em>: It was about the various ways you can use the home template and post template options and theming.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. As always, the show notes will be published on the gutenbergtimes.com/podcast. This is episode 77. And if you have questions and suggestions or news that you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. Yes, that&#8217;s an email address. No slack, no Twitter. Well, of course, you can always follow us on @gutenbergtimes on Twitter. We also have pinned on the profile page our place on Mastodon. If you have left Twitter, just go there. It&#8217;s a public page. You can still see it and link it. Thank you all for listening. Thank you, Daisy. Wishing everyone wonderful holidays and a happy new year. And I&#8217;ll see you on the other side until 2023. Goodbye.</p>\n\n\n\n<p><em>Daisy Olsen</em>: Thanks so much for having me, Birgit. And happy holidays to everyone.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Dec 2022 02:40:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"Gutenberg Times: State of the Word, Gutenberg 14.7, Box Shadow and more – Weekend Edition 238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://gutenbergtimes.com/state-of-the-word-gutenberg-14-7-box-shadow-and-more-weekend-edition-238/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24884:\"<p>Howdy,</p>\n\n\n\n<p>Going through the latest Gutenberg release, and seeing what is in store for the next one, I feel, fantastic progress has been made on Phase 2 of the block editor. WordPress will be in great shape to start the next phase: collaborative editing. If you are keen to learn more, I suggest you watch <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">next week&#8217;s State of the Word</a>. As always, it will be recorded, and you can watch it at your leisure. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\"><img /></a>\n\n\n\n<p>I&#8217;d be interested in your take of the keynote as well as the Q &amp; A that will be held afterwards. I hope you write with your thoughts.</p>\n\n\n\n<p>Until next week, be well! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<h2 id=\"0-strong-a-href-https-us-02-web-zoom-us-webinar-register-7616700808432-wn-ig-f-xjz-c-qym-tk-62-c-v-9-ocw-layout-layout-layout-a-strong\">Layout. Layout. Layout</h2>\n\n\n\n<p><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Reserve your seats!</a></strong> The next <strong>Gutenberg Live Q &amp; A</strong> will take place on January 11th, 2023 at 5pm ET / 22:00 UTC . </p>\n\n\n\n<p>Layouts are a fundamental part of how block themes work: Layout allows us to define the width of our post content, and arrange blocks horizontally or vertically, right or left aligned, inside container blocks. In terms of block styling, Layout is a complex feature because it affects child blocks in ways that go beyond CSS inheritance.</p>\n\n\n\n<p>In this show, <strong>Isabel Brison</strong>, <strong>Andrew Serong</strong> and <strong>Justin Tadlock</strong> will discuss the opportunities and challenges of the Layout features for site builders, and they will be available to answer your questions. Isabel Brison will also give us a demo of various layout scenarios. <strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Join us! </a></strong></p>\n\n\n\n<p><em>This is also a preview on <a href=\"https://asia.wordcamp.org/2023/session/layout-layout-layout/\">Isabel Brison&#8217;s talk at WordCamp Asia</a></em> i<em>n February 2023</em></p>\n\n\n\n<a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\"><img /></a>\n\n\n\n\n\n<p><strong>Lana Miro</strong> collected <a href=\"https://crocoblock.com/blog/best-wordpress-podcasts-to-listen/\"><strong>16 Best WordPress Podcasts to Listen To (Top Selection)</strong></a>. She wrote about the Gutenberg Changelog: &#8220;This podcast is not just about WordPress in general but specifically about the Gutenberg block editor. In each episode, host Birgit Pauli-Haack and a guest discuss the latest version of Gutenberg and any related issues. They do all the hard work of curating news of Gutenberg’s development and then present it with infectious enthusiasm.&#8221; Thank you, Lana &nbsp;💞</p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-a-href-https-us-02-web-zoom-us-webinar-register-7616700808432-wn-ig-f-xjz-c-qym-tk-62-c-v-9-ocw-layout-layout-layout-a-strong\">Layout. Layout. Layout</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-gutenberg-14-7-released\">Gutenberg 14.7 release</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-new-videos\"> New videos </a><ul><li><a href=\"https://gutenbergtimes.com/feed/#7-word-press-tv\">WordPressTV</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 id=\"2-gutenberg-14-7-released\">Gutenberg 14.7 release</h3>\n\n\n\n<p><strong>Gutenberg 14.7 </strong>was released this week, with 165 merged PRs by 48 Contributors, 9 were first timers! And it’s packed with quite a few features, some of them still experimental. You see big improvements to the navigation block, a media selection from the inserter and more controls for the inner blocks of flex layout blocks. Other core blocks received some small refinements that make the overall experience more consistent.</p>\n\n\n\n<p><strong>Daisy Olsen</strong>, lead for Gutenberg 14.7 plugin release, wrote in the post. <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>What’s new in Gutenberg 14.7? (7 December)</strong></a>, &#8220;It introduces a new experimental tabbed&nbsp;sidebar, colors to help identify some&nbsp;block&nbsp;types in list view, and improvements to the Page List block to make it easier to manage page links in your content.&#8221; </p>\n\n\n\n<p>Olsen highlighted the following features:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#improved-organization-of-block-settings-with-split-control\">Improved organization of block settings with split control</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#quickly-identify-template-parts-and-reusable-blocks-by-color\">Quickly identify Template Parts and Reusable Blocks by color</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#add-media-to-your-content-directly-from-the-inserter\">Add media to your content directly from the inserter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#see-all-pages-in-list-view-for-the-page-list-block\">See all pages in List View for the Page List block&nbsp;</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#layout-controls-added-to-children-of-flex-layout-blocks\">Layout controls added to children of flex layout blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/#improved-load-times-by-caching-the-results-of-querying-settings-from-theme-json\">Improved load times by caching the results of querying settings from theme.json</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Yesterday, <strong>Daisy Olsen</strong> and I recorded the 77th Episode of the Gutenberg Changelog. It was such a great pleasure to discuss the release and what&#8217;s coming next for the block editor. The episode will arrive at your favorite podcast app over the weekend. </p>\n\n\n\n<a href=\"https://gutenbergtimes.com/podcast/\"><img /></a>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong>, who runs the FSE Outreach program held this week&#8217;s <a href=\"https://make.wordpress.org/test/2022/12/08/hallway-hangout-lets-chat-about-the-future-of-custom-css-with-block-themes/\"><strong>Hallway Hangout: Let’s chat about the Future of Custom CSS with block themes</strong></a> and posted the recording and a summary. </p>\n\n\n\n<p>In another update from the FSE Program, Anne McCarthy is<a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\"><strong> seeking volunteers to use Replay.io for capturing bugs</strong></a> . After using Instant WP for spinning up test site for call for testings, Anne McCarthy will expand the program to pilot using Replay.io. Volunteers will &#8220;help determine how it can be used to better WordPress’ bug finding and fixing feedback&nbsp;loop.&#8221;</p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p>The <strong><a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a></strong> is still in beta. The editorial group is working on getting more posts published. If you want to write a blog post that would help WordPress developer be successful building themes or plugins or bespoke site for client, browse through the <a href=\"https://github.com/WordPress/developer-blog-content/discussions/categories/topic-ideas\">topic Ideas, that have already been submitted</a>. </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/how-to-contribute/\">How to contribute</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/tips-and-guidelines-for-writers/\">Tips and guidelines for writers</a></li>\n</ul>\n</div></div>\n\n\n\n<p><strong>Alvaro Gómez</strong> posted about <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\"><strong>Introducing the Block Editor in the Support Forums</strong></a>; only a few core-block will be allowed. &#8220;Users will be able to easily insert links, share code or embed screenshots. Using Blocks will also enable new possibilities, such as using patterns for common responses to allow for faster answers.&nbsp;&#8221; he wrote. If I read it right and the current editor in use &#8220;predates TinyMCE&#8221;, then this might be the first update to the forums editor since the start of the website in 2003. </p>\n\n\n\n<p>For now, it&#8217;s available via a test site, and you are invited to try it and share your feedback on the <a href=\"https://meta.trac.wordpress.org/ticket/6608\">meta trac ticket. </a></p>\n\n\n\n<p><strong>Sarah Gooding</strong> also reported on this update: <a href=\"https://wptavern.com/the-block-editor-is-coming-to-wordpress-support-forums\"><strong>The Block Editor Is Coming to WordPress’ Support Forums</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In her article <strong><a href=\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\">WooCommerce Blocks 9.1.0 Introduces Products Block in Beta</a> Sarah Gooding</strong> reports on the latest release of WooCommerce Blocks. &#8220;The plugin serves as a place to iterate and test new blocks, and this release introduces the new Product Query-powered Products block in beta. (&#8230;) The new Products block is based on the core Query Loop block. WooCommerce Blocks contributors are aiming to replace all the plugin’s current product-displaying blocks with this one.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Rich Tabor</strong>, theme and plugin developer, was <a href=\"https://richtabor.com/wordpress-design-tool/\"><strong>exploring WordPress as a design tool</strong></a>. It&#8217;s the story of how he challenged himself to take one pattern, from one theme, and morph it multiple times — only using the design controls of the block editor. &#8220;Every font family/size, color, border, radius, image, video, and spacing value were all added in-editor.&#8221; And he also challenges you to give this a try: </p>\n\n\n\n<ul>\n<li><em>Use only the&nbsp;<a href=\"https://wordpress.org/themes/twenty-twenty-three\">Twenty Twenty-Three&nbsp;</a><a href=\"https://wordpress.org/themes/twentytwentythree\">theme</a>.&nbsp;</em></li>\n\n\n\n<li>Design a section of a page, then </li>\n\n\n\n<li>morph it a couple of times using only the design tooling within the editor.&nbsp;</li>\n</ul>\n\n\n\n<a href=\"https://richtabor.com/wordpress-design-tool/\"><img /></a>\n\n\n\n<p><strong>Automattic&#8217;s Sensei LMS</strong> has <a href=\"https://senseilms.com/meet-course-a-new-free-block-theme-by-sensei/\"><strong>released a new free block theme called &#8220;Course.&#8221;</strong></a> It is designed for creators and is built to work perfectly with all Sensei LMS features, including course lists, sales pages, and learning mode course templates. It is also open-source and <a href=\"https://wordpress.org/themes/course/\">available on WordPress.org</a>, making it ideal for course creators, bloggers, coaches, small businesses, and even those using competitor LMS WordPress plugins. The theme is mobile-optimized and allows for customization to match your brand.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://jetpack.com/blog/jetpack-11-6-update-to-the-form-block-and-more/\">Jetpack 11.6 release</a></strong> added new features to its forms and SEO capabilities. It now has block pattern support for forms, making it easier to create them, and new SEO features allowing users to specify that certain posts or pages should not be indexed by search engines, and to set custom SEO titles for individual posts and pages.</p>\n\n\n\n<a href=\"https://jetpack.com/blog/jetpack-11-6-update-to-the-form-block-and-more/\"><img /></a>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/54-steve-burge-on-where-were-at-with-multi-author-collaboration-in-wordpress\" target=\"_blank\" rel=\"noreferrer noopener\">#54 – </a><strong><a href=\"https://wptavern.com/podcast/54-steve-burge-on-where-were-at-with-multi-author-collaboration-in-wordpress\" target=\"_blank\" rel=\"noreferrer noopener\">Steve Burge on Where We’re at With Multi-Author Collaboration in WordPress</a> </strong>with Nathan Wrigley. On this episode of the Jukebox podcast from WP Tavern, the topic is multi-author collaboration in WordPress. Steve Burge discusses the current state of collaboration in WordPress, the challenges that come with it, and what the future holds for the platform. Burge also elaborates on the site editing phase of the Gutenberg project and how it relates to collaboration.</p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> just published a new post on the WordPress Developer Blog: <a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\"><strong>Leveraging theme.json and per-block styles for more performant themes</strong></a>. I<a href=\"https://twitter.com/justintadlock/status/1600623143558828034\">n a tweet</a> he wrote: &#8220;This post dives into how to primarily lean into theme.json when styling your theme, taking advantage of the built-in performance enhancements that WordPress offers out of the box, such as only outputting CSS when it&#8217;s needed. All theme authors know that theme.json isn&#8217;t quite enough for every project. However, you can benefit from those same enhancements by loading per-block stylesheets. This is also great for integrating with third-party blocks without bulking up your CSS.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p>In his article on the CSS Tricks, <a href=\"https://css-tricks.com/adding-box-shadows-to-wordpress-blocks-and-elements/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Adding Box Shadows to WordPress Blocks and Elements</strong></a>, <strong>Ganesh Dahal</strong> provides you with a tutorial and an example of how to add a `box-shadow` to the hover state of a button in `theme.json`. ICYMI: As of WordPress 6.1, it is possible to add styles to elements and blocks using `theme.json`, including pseudo-classes such as `:hover`. Ben Dwyer wrote the corresponding Dev Note: <a href=\"https://make.wordpress.org/core/2022/10/10/styling-elements-in-block-themes/\">Styling elements in block themes</a></p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his post, <a href=\"https://fluffyandflakey.blog/2022/12/06/access-all-block-attributes-structurally-with-the-gutenberg-block-editor/\"><strong>Access all block attributes structurally with the Gutenberg block editor</strong></a>, <strong>Dennis Snell</strong> wrote &#8220;about a small experiment to eliminate sourced attributes in Gutenberg posts. If you want to build a custom block editor, and you wish to avoid parsing HTML to get the full set of attributes, then it’s strikingly easy to do so: all it takes is disabling a few properties of each block’s attribute definitions.&#8221; Let him tell you more! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<h2 id=\"6-new-videos\"> New videos </h2>\n\n\n\n<p><a href=\"https://torquemag.io/2022/12/torque-social-hour-learning-to-use-the-site-editor/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Torque Social Hour: Learning to use the Site Editor</strong></a> with <strong>Brian Gardner.</strong> On this week’s episode, Brian Gardner teaches Doc the fundamentals of editing a block-based WordPress theme with the new Site Editor. Brian designed one of the Style Variations that came in the new Twenty Twenty Three theme.</p>\n\n\n\n<h3 id=\"7-word-press-tv\">WordPressTV</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/12/09/builder-basics-demystifying-theme-json-and-global-styles/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Builder Basics: Demystifying theme.json and Global Styles</strong></a> (Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/09/manage-your-block-theme-fonts-with-create-block-theme/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Manage your block theme fonts with Create Block Theme</strong></a> (Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/08/the-key-to-locking-blocks/\" target=\"_blank\" rel=\"noreferrer noopener\">The key to locking blocks</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/08/content-creators-are-users-too-the-crucial-importance-of-carefully-crafted-editorial-experiences/\" target=\"_blank\" rel=\"noreferrer noopener\">Content creators are users too: the crucial Importance of carefully crafted editorial experiences</a> </strong>(WCUs)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/07/using-the-navigation-block-2/\" target=\"_blank\" rel=\"noreferrer noopener\">Using the navigation block</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/02/hallway-hangout-future-of-css-in-block-themes/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Hallway Hangout: the future of CSS in block themes</strong></a> (Learn WordPress)</li>\n\n\n\n<li><strong><a href=\"https://wordpress.tv/2022/12/02/builder-basics-building-with-columns-groups-rows-and-stacks/\" target=\"_blank\" rel=\"noreferrer noopener\">Builder basics: building with columns, groups, rows and stacks</a> </strong>(Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/12/02/lets-code-developing-blocks-without-react-controls/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Let’s code: developing blocks without React! – Controls</strong></a> (Learn WordPress)</li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/30/using-page-templates/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Using page templates</strong></a> (Learn WordPress)</li>\n</ul>\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p><strong>December 12, 2022 &#8211; 10 am &#8211; 1:30 pm ET / 15:00 &#8211; 18:30 UTC </strong><br /><a href=\"https://bluehostawards.com/\"><strong>WP CreatorCon</strong> </a>&#8211; a virtual event curated by Bluehost to bring together all WordPress creators of the world. It&#8217;s an event that will culminate the Bluehost Creators Awards. </p>\n\n\n\n<p><strong>December 15, 2022 – 1 pm ET / 18:00 UTC</strong><br /><strong><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></strong>&nbsp;– Matt Mullenweg’s annual keynote.</p>\n\n\n\n<p><strong>January 11, 2023 &#8211; 5 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://us02web.zoom.us/webinar/register/7616700808432/WN_IG_fXjzCQymTk62cV9_ocw\">Gutenberg Times Live Q &amp; A: Layout, layout, layout</a></strong><br />Panel discussion with Isabel Brison, Andrew Serong, Justing Tadlock and Birgit Pauli-Haack</p>\n\n\n\n<p><strong>February 17 – 19, 2023</strong><br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p>December 12, 2022 – 3 pm ET / 22:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289957641/\"><strong>Creating a Call To Action with the Block Editor</strong></a></p>\n\n\n\n<p>December 14, 2022 &#8211; 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170169/\"><strong>Exploring Category Templates and the Query Loop Block Session 1</strong></a></p>\n\n\n\n<p>December 15, 2022 &#8211; 9 am ET / 14:00 UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290237910/\">Let&#8217;s code: Developing Blocks without React! &#8211; Review</a></strong></p>\n\n\n\n<p>December 21, 2022 &#8211; 7 pm ET / 24:00 UTC<br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170454/\"><strong>Creating a Theme with the Create Block Theme Plugin Session 1</strong></a></p>\n\n\n\n<p>December 21, 2022 &#8211; 3 am ET / 8 am UTC<br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290170469/\">Creating a Theme with the Create Block Theme Plugin Session 2</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;Galleria Vittorio Emanuele II&#8221; in Milan by Dennis Hipp via <a href=\"https://wordpress.org/photos/photo/6136384d1b/\">WordPress Photos</a> </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 10 Dec 2022 13:57:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WooCommerce Blocks 9.1.0 Introduces Products Block in Beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140245\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/woocommerce-blocks-9-1-0-introduces-products-block-in-beta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2447:\"<p>WooCommerce Blocks<a href=\"https://developer.woocommerce.com/2022/12/09/woocommerce-blocks-9-1-0-release-notes/\"> version 9.10</a> was released today, hitting a major milestone for the development of its new Products Block. The plugin serves as a place to iterate and test new blocks, and this release introduces the new Product Query-powered Products block in beta.</p>\n\n\n\n<p>In this first iteration, users can arrange products by popular presets and control the layout in the list/grid. </p>\n\n\n\n<img />\n\n\n\n<p>The new Products block is based on the core Query Loop block. WooCommerce Blocks contributors are aiming to replace all of the plugin&#8217;s current product-displaying blocks with this one. </p>\n\n\n\n<p>&#8220;This new block should be flexible enough to reproduce all of the use-cases currently covered by existing blocks (e.g. showing all products, showing only new products, or products on sale, etc.), while also being filterable via dedicated filter blocks and compatible with FSE templates (i.e. it should replace the placeholders we currently use in archive templates),&#8221; Automattic-sponsored WooCommerce contributor Marco Lucio Giannotta said in the <a href=\"https://github.com/woocommerce/woocommerce-blocks/issues/6793\">ticket</a> proposing the new Products block.</p>\n\n\n\n<p>The first iteration still requires some polishing but it&#8217;s meeting the basic objectives for allowing users to display and customize products using the new query-based block.</p>\n\n\n\n<p>Version 9.1.0 also unveils three new &#8220;product-adjacent&#8221; patterns. These are patterns that don&#8217;t use WooCommerce store data but rather focus on presentation. They include the following patterns:</p>\n\n\n\n<ul>\n<li>&#8220;WooCommerce Alternating Image and Text” block pattern. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7827\">7827</a>)</li>\n\n\n\n<li>&#8220;WooCommerce Product Hero 2 Column 2 Row” block pattern. (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7814\">7814</a>)</li>\n\n\n\n<li>“Just Arrived Full Hero”  block pattern (<a href=\"https://github.com/woocommerce/woocommerce-blocks/pull/7812\">7812</a>)</li>\n</ul>\n\n\n\n<p>WooCommerce Blocks contributors are also working on patterns that connect to store data and will be releasing new patterns soon. Other notable additions in this release include support for the alignment setting in the Add to Cart Button and Product Rating elements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 22:21:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Post Status: More WordPress People Doing Good Things\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145785\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://poststatus.com/more-wordpress-people-doing-good-things/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4077:\"<h2 id=\"h-wordpress-gives-a-hand\">WordPress Gives a Hand</h2>\n\n\n\n<p>For the third year in a row, a bunch of WordPress community members will join together at the holiday time for the charity campaign “<a href=\"http://wpgivesahand.com/\">WordPress Gives A Hand</a>” <a href=\"https://twitter.com/search?q=%23wpgivesahand&src=typed_query\">#wpgivesahand</a>.</p>\n\n\n\n<p>During the holiday season, instead of giving out discounts to customers, participating WordPress community members will donate a percentage of their revenue to supporting people in need. Each company chooses whichever charity they would like to donate to.</p>\n\n\n\n<p>This great initiative raises awareness across the global WordPress community. Last year, participating companies included Cloudways, TranslatePress, Visual Composer, wpDataTables, Amelia, and others. This year WordPress Gives a Hand is asking for your help to show the world that WordPress is a place for everyone!</p>\n\n\n\n<p>To learn more or to get involved visit <a href=\"http://wpgivesahand.com/\">wpgivesahand.com</a>.</p>\n\n\n\n<h2 id=\"h-the-wp-community-collective\">The WP Community Collective</h2>\n\n\n\n<p>The WP Community Collective aims to address some of these ongoing challenges by creating community-funded <a href=\"https://www.thewpcommunitycollective.com/fellowships/\">Fellowships</a> to financially support individual contributions to the WordPress project and community.</p>\n\n\n\n<p>“We hope that the WP Community Collective can help bridge the gap between the passion people feel for WordPress, and the very real and practical limits of volunteer contribution,” said founding co-director Sé Reed.&nbsp;&nbsp;</p>\n\n\n\n<p>The WPCC’s first initiative is the <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">WPCC Accessibility Fellowship</a>. They are currently in discussion with an existing unsponsored core contributor to hold the inaugural role of Accessibility Fellow, and have launched the fundraising efforts to fund this Fellowship: <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812</a></p>\n\n\n\n<p>To learn more or to get involved visit <a href=\"https://www.thewpcommunitycollective.com/\">thewpcommunitycollective.com</a></p>\n\n\n\n<h2 id=\"h-post-status-membership-deal\">Post Status Membership Deal</h2>\n\n\n\n<p>In the spirit of Black Friday/Cyber Monday, Post Status is offering $100 off any annual membership through December 31. Why? Because we love you! Membership gets you into our Slack community, too!</p>\n\n\n\n<p>Use discount code BFCM for your best Post Status membership deal ever!</p>\n\n\n\n<h2 id=\"h-in-the-spotlight\">In the Spotlight</h2>\n\n\n\n<p>Post Status professional member, <a href=\"https://poststatus.com/member-spotlight-jamie-madden/\">Jamie Madden</a>. Jamie is the founder and lead developer of WC Vendors Marketplace, the first free multivendor marketplace plugin for WordPress and WooCommerce, launched back in 2014.</p>\n\n\n\n<h2 id=\"h-weekly-member-huddles\">Weekly Member Huddles</h2>\n\n\n\n<ul>\n<li>Wednesdays <a href=\"https://us02web.zoom.us/meeting/register/tZYuf-GrpjksH91MJiGiaIwzpHWzhWSgOrKL\">Sign Up</a></li>\n\n\n\n<li>Fridays <a href=\"https://us02web.zoom.us/meeting/register/tZcuf-uprT0oGdx2Pg91t1eADl5JOow2YwLR\">Sign Up</a></li>\n</ul>\n\n\n\n<h2 id=\"h-upcoming-events\">Upcoming Events:</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a> December 15, 2022</li>\n\n\n\n<li><a href=\"https://kolkata.wordcamp.org/2022/\">WordCamp Kolkata</a> December 17-18, 2022</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia</a> February 17-19, 2023</li>\n\n\n\n<li>Calls for Speakers and Sponsors are open at <a href=\"https://www.wpwealthbuilder.com/\">WP Wealthbuilder Summit</a> May 12, 2023</li>\n\n\n\n<li>WordCamps are back. <a href=\"https://central.wordcamp.org/schedule/\">Check the schedule online</a>!</li>\n</ul>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 20:10:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Michelle Frechette\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Post Status: The WP Agency Journey with D’nelle Dowis of Berry Interesting Productions— Post Status Draft 132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://poststatus.com/the-wp-agency-journey-with-dnelle-dowis-of-berry-interesting-productions-post-status-draft-132/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43796:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">D\'nelle Dowis has been a part of WordPress for more than a decade. Her passion for genuine, sustained relationships informs how she leads her agency, <a href=\"https://berry-interesting.com/\">Berry Interesting Productions</a>. D\'nelle talks about her experiences meeting clients where they are and helping them leverage technology to solve the challenges of today while making room for future opportunities. She shares why she values support, her thoughts on DIY, and how she makes room for her clients to ask the weird questions. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode of <strong>Post Status Draft</strong>, Cory is joined by <strong>D\'nelle Dowis</strong>, CEO of <strong><a href=\"https://berry-interesting.com/\">Berry Interesting Productions</a></strong>. She and her husband have worked in WordPress for over a decade and run a small, consultative agency. D\'nelle shares truly helpful insights about centering relationships in work and life. From being invested in clients for the long haul to being intentionally curious about knowing others and how they spend their days, D\'nelle invites us to let connection be the fuel that informs and inspires who we are and how we work. </p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Build Long-Term Client Relationships: </strong>Building long-term relationships enables you to advise clients from a big-picture perspective, as opposed to just building technical solutions. \n<ul>\n<li></li>\n</ul>\n</li>\n\n\n\n<li><strong>Support is Serious Business: </strong>Doing what we do best should give our client\'s peace of mind that their sites will perform as needed when needed. </li>\n\n\n\n<li>Look Beyond a Client\'s Ask to Unseen Opportunities: As clearly reflected in D\'nelle\'s experience share about her yoga studio client, leaning into hard seasons with clients to bring unique solutions with technology can transform the future trajectory of their business.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-26 wp-block-columns Pressable has-theme-palette-8-background-color has-background\" id=\"Pressable\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/pressable\">Pressable</a></h3>\n\n\n\n<p>Founded in 2010, <strong>Pressable</strong> is a world-class managed WordPress hosting provider built on the same data network as <strong>WordPress.com</strong> and <strong>WordPress VIP</strong>. With industry-leading performance, 24/7 expert support, a 100% uptime guarantee, and seamless integrations with <strong>WooCommerce</strong> and <strong>Jetpack</strong>, Pressable provides the tools you need to manage your WordPress websites and grow your business all in one place. <a href=\"https://poststat.us/pressable\">TRY PRESSABLE→</a></p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\">\n<a href=\"https://poststat.us/pressable\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/01/pressable-icon-primary.svg\" alt=\"Pressable\" class=\"wp-image-121339\" width=\"150\" title=\"Pressable\" /></a>Pressable\n</div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://troydean.com.au/\">Troy Dean</a></li>\n\n\n\n<li><a href=\"https://www.thecaverns.com/\">The Caverns in Tennessee</a> </li>\n\n\n\n<li><a href=\"https://www.novofitnessstudio.com/\">Novo Fitness Studio</a> </li>\n\n\n\n<li><a href=\"https://www.elegantthemes.com/gallery/divi/\">Divi</a> </li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/d_nelle\">D\'nelle Dowis</a> (Owner, <a href=\"https://twitter.com/berryinterestin\">Berry Interesting Productions</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller: [00:00:00] Hey everybody. Welcome back to Post Status Draft. This is another interview in our agency journey series where we\'re talking to agency owners and getting their backstory and their story, and sharing a little bit about their passions and the work and the world of WordPress. So today I have someone I\'ve known for a very long time, D\'nelle and I\'m gonna let her introduce herself in a second.</p>\n\n\n\n<p>But, um, we\'ve been, I\'ve known D\'nelle for, let\'s see. Gosh, 10 years. I\'m trying to think at least. Oh yeah. Yeah. And um, so we\'ve got to meet a couple times and I was just hearing a little bit about her story and I\'m excited for you to hear that too. So, D\'nelle, would you mind in, uh, introducing yourself and sharing, uh, what your agency is?</p>\n\n\n\n<p>D’nelle Dowis: Yeah. Um, so my name is D\'nelle Dallas. I own an agency named Berry interesting productions. We\'re very small. Um, it\'s owned by me and my husband. Um, and then we have a developer who we rely on heavily, but she is still contract with us. We primarily provide WordPress support. That\'s what we get really excited about.</p>\n\n\n\n<p>Um, but we also build WordPress [00:01:00] websites. And depending on what the client\'s needs are, we will either say, Hey, maybe you should be on Squarespace, or, Hey, maybe you need a bigger agency. So a lot of. Is very, take a very consultative approach. And, um, yeah, so been in WordPress since 2010 now. Um, it\'s, it\'s been a, a hot minute since all of that started.</p>\n\n\n\n<p>Um, and yeah, we\'ve seen a lot happen. It\'s, there\'s a lot has happened over the last 15, 17 years.</p>\n\n\n\n<p>Cory Miller: No kidding. Tell me a little bit about, okay, so that\'s where you are now, and we\'re going to dive into parts of the in a minute, but tell us how you got there. So you started with WordPress in 2010?</p>\n\n\n\n<p>D’nelle Dowis: Yeah, so I started writing HTML websites.</p>\n\n\n\n<p>I mean, I don\'t go quite far enough back to have written, um, themes for MySpace. But that is, that\'s the kind of era that we\'re talking about is write your own HTML website era. Um, and I, so I, I came from a print background, um, [00:02:00] primarily in journalism. I thought that I was gonna go and like lay out. Uh, newspapers for a living.</p>\n\n\n\n<p>So I had a lot of experience with type setting, a lot of experience with, um, graphic design in the sense of like user experience design. Like I kind of, um, during Covid, I, I dabbled a little bit in UX and it very much lined up with the ba like, like career background of having worked in print journalism and um, print design.</p>\n\n\n\n<p>Um, and then, um, in 2000 and. 10, 2011. Um, I went through career change where I was let go after a reorg and I was like, I really don\'t know what I\'m gonna do. Um, and was hired as a webmaster just because I happened to be tech savvy, was hired as a webmaster at a little company in Nashville and that company was building themselves a website.</p>\n\n\n\n<p>And so I was tasked with. Basically liaising with the agency that was building this site so that I knew as much about it as possible so that I could be a good [00:03:00] webmaster for ongoing upkeep. Um, and that\'s really where I started to see the power of WordPress and what it can do for you and the ways that it can be used to do all kinds of different things.</p>\n\n\n\n<p>Um, and it was. After encountering WordPress that it really made sense for me to move into doing it, um, as a like long term business. Um, in 2012, I quit doing anything for anybody else and started doing this full time. Um, I\'ve definitely like kind of dabbled in other agents. Um, that was really like from a, a like supplement my own income as I built my business kind of thing.</p>\n\n\n\n<p>I would do project management and like low level development for other agencies, um, which really has formed the way that I run. Very interesting today because you, you see that man behind the curtain, you see where. Those cracks are in the fascia and you wanna, I mean, at least I wanna fix it. Um, I didn\'t want it to be like that for the people who are working at agencies, and I don\'t want it to be like that for clients.</p>\n\n\n\n<p>Um, so that\'s kind of how we ended up here with the [00:04:00] goal of making sure that we have clients that we are in long-term relationships with, that we can advise from a big picture perspective as opposed to just building. That\'s not what we want. Do we wanna be in the long term relationship business? Um, and so kind of as a result, we are in the website development business.</p>\n\n\n\n<p>Um, but it really is all about the support, all about the kind of holistic business advice from a, I was writing a blog the other day about, um, tech stacks and really like tech stacks come from the world of application building where you think about all of the languages and tools that you\'re using to build an application.</p>\n\n\n\n<p>I really like to think about that from a business perspective. There\'s a lot of like tech stack advice that I will give to clients. Like, you shouldn\'t be, you know, uh, registering your domain over here, or maybe we should think about different hosting, or you might wanna think about a different calendar booking tool that integrates with your website.</p>\n\n\n\n<p>Those kinds of things that aren\'t just about web development, but are more about the overall business operations. [00:05:00] Those are the kind of relationships that I wanna have with our clients, and that is what I wanna establish with our agency, which is a space where people are not just like coming to you saying, Hey, could you build this website for me?</p>\n\n\n\n<p>But they might come to you with weird questions. I wanna have the kind of relationship with our clients where we can answer those weird questions and if we can\'t answer them, we can help them find somebody that they, we know that they can trust.</p>\n\n\n\n<p>Cory Miller: Tell me a little bit about support. You mentioned like, okay, there\'s building this side, but there\'s this ongoing thing, and I think that\'s one of the beauties of WordPress that can do so much more for businesses.</p>\n\n\n\n<p>But could you talk about from that angle, um, the support, what it, what you\'re intending to do and what you see from some of the types of clients that you have that you do for?</p>\n\n\n\n<p>D’nelle Dowis: Um, so at the very basis of it, um, I mean I\'m kind of coming from the, uh, space where I\'m influenced by like Troy Dean and also like, let\'s not forget to mention Nathan Ingram, who is like an absolute genius in this space.</p>\n\n\n\n<p>Um, talking about like Nathan\'s scope document where he [00:06:00] talks about how you talk to clients when you are meeting them for the first time and evaluating what their needs are. Inevitably, people think they are coming to you because they wanna buy something from you. They wanna buy a product, they wanna buy this website.</p>\n\n\n\n<p>What they don\'t understand about buying that website. And I find myself in a situation where I\'m often kind of like educating people about what it\'s like to own and use a website is that it\'s not something where you can just set it and forget it. You\'re not going to buy a car. You\'re thinking about the ongoing mainten.</p>\n\n\n\n<p>That is going to have to happen. So I mean, we, we take a little bit of a kitchy approach with it. Very interesting productions like we are, we have this kind of like garden, like tending your garden sort of theme. That\'s really where that support comes from, is that, You can\'t just go out there and throw some seeds in the ground and then expect that you\'re gonna get the harvest that you want.</p>\n\n\n\n<p>You really need to be paying attention to your site long term. That being said, there\'s so many things about website maintenance that really should not be on [00:07:00] mind of a business owner. Like it\'s I, I\'m kind of in a weird position because we build websites and we provide website support. So I think about this for our own website as well.</p>\n\n\n\n<p>But, you know, we serve a lot of yoga studios, a lot of wellness businesses, a lot of, um, like, you know, independent musicians. And I don\'t want, you know, the musician to be laying awake at night thinking about, is my website gonna break? Um, are, are people gonna be able to access those tour dates? Is the thing that we have set up for people to enter this raffle so that they could potentially win?</p>\n\n\n\n<p>Like VIP experience, is that gonna work after we put out the marketing for it? Those kinds of things. Those worries of, is this gonna work for me? Am I gonna be able to use this tool in the way that I need it when I need to? They shouldn\'t be having to think about those things. Um, you know, last year we bought a house, um, out here in Denver, Colorado.</p>\n\n\n\n<p>Um, it was the second house that we purchased, but this really is like our forever home and. Thinking about the like long term [00:08:00] things that you need to do to keep this house healthy, to keep it safe, to keep everything working properly. Like I kind of wish that I had the budget to hire somebody who would come out here and do a property walk once a month to see if my gutters are sagging or to see if there\'s something that\'s gone wrong on the roof.</p>\n\n\n\n<p>Those are the kinds of things that I don\'t have the knowledge of in my own head because I\'m not spending the time thinking about it every day. So from a support perspective, We want to be that resource that is the expert on this particular niche so that you can trust us to handle it for you. And you could be thinking about, okay, what am I gonna create next?</p>\n\n\n\n<p>Like, what is my next tour gonna look like? Um, what do does the, you know, brick and mortar expansion to a second location of our yoga studio look like? It really is a situation where I want to be the trusted space that they can outsource those sorts of things so that they\'re not having to worry about them so that they\'re not spooked when somebody goes on their website and, you know, puts in a, I notice that your site\'s SEO is terrible.</p>\n\n\n\n<p>You should contact us, you know, like through your [00:09:00] contact forum. Like I don\'t want people to be spooked by that. I want them to know that if they\'re gonna, they have a question about anything, they got a phishing email that they can call. And we\'re gonna give them that the advice that they need so that they don\'t have to like, learn a whole new set of domain knowledge.</p>\n\n\n\n<p>And so that if they don\'t wanna deal with it that day, they can out, they can just offload it to us. That\'s, that\'s really what needs to happen. You don\'t wanna worry about looking into this like you have copyright infringement images on your site. I got that for you. I will let you know whether or not you need to pay attention to this.</p>\n\n\n\n<p>And meanwhile, we\'re gonna make sure that your site has not actually been. So, um, it really is more about being that, that support source of support for clients, almost from an emotional perspective, more than a practical perspective. We have done the property walks around your site. We know everything is working fine.</p>\n\n\n\n<p>This one really important page that is tied to your marketing is working. There\'s nothing broken on it. You can confidently move forward with your marketing without worrying about whether or not your [00:10:00] site is gonna, you know, crack under the.</p>\n\n\n\n<p>Cory Miller: And when you go to these types of experts, you want them worrying about their craft, what they do best.</p>\n\n\n\n<p>Like the musicians for instance, like Right. You know, hey, if you\'re a fan of a big band, I want them thinking about their next song. Not necessarily worrying about, okay, what is this fishing like you said to that fishing email part. And I think that\'s the beauty of WordPress too. You can do so much with it, but as these businesses, organizations grow, they need more complexity that WordPress gives \'em.</p>\n\n\n\n<p>And that\'s where I, I see you all coming in to say, we\'re gonna take this load off you so that you can focus on what you do best.</p>\n\n\n\n<p>D’nelle Dowis: That\'s exactly right because I am so passionate just about artists in general. I mean, when I was in college, like one of my majors was creative writing. Like I definitely come from a creative space, but what I came away from college with and what has has happened during my career over the intervening years is that I find myself time and time again wanting to.</p>\n\n\n\n<p>People to [00:11:00] do the thing that they are really passionate about, and there are plenty of times that I have just, you know, sat head in hand being like, I do not wanna think about whether or not I should buy this new garage door or have it fixed. I don\'t wanna think about like why my water bill is so high. I just wanna hire somebody to come out here and make sure that it\'s okay.</p>\n\n\n\n<p>With their expertise. I don\'t wanna have to develop that expertise myself, and I don\'t want my clients to have to develop that expertise cuz I want \'em to spend that time creating new and amazing things that they\'re excited about. Like it\'s really hard to get excited about dns. Like really hard, like I have a hard time getting excited about dns.</p>\n\n\n\n<p>I don\'t want \'em to have to worry about it. If there\'s a term that they don\'t know, they don\'t know, that they don\'t understand, I want \'em to be able to come to me and me to be able to be trusted enough to give them the answer. That doesn\'t seem like I\'m coming from a place of trying to get \'em to.</p>\n\n\n\n<p>Spend more money or come from a place of trying to, you know, change the nature of our relationship in some way. Like my whole thing has always been like, I don\'t wanna hold people hostage. And I [00:12:00] really, really don\'t want artists to feel held hostage by this need to engage in something that really, like, they don\'t wanna spend their time thinking about.</p>\n\n\n\n<p>Like, there\'s plenty of people who are like, oh, I\'ll just DIY that website myself. Awesome. I wanna support you in DIYing it, but first let\'s have a conversation about the complexity of it so that you can make an informed decision about what you wanna learn in DIY versus what it really makes sense for you to outsource.</p>\n\n\n\n<p>So that. You can spend the time thinking about the things that you\'re really excited about, whether that is the book that you wrote or the next tour that\'s coming up, or you know, the expansion of your studio. So it, it really is like, I mean it\'s, it\'s very much like comes from a mothering instinct in me.</p>\n\n\n\n<p>I think. Like I\'ve got dogs, but we don\'t have kids really, like my clients and the business really take up a lot of that energy of me thinking about how can we best take care of our clients so that they are enabled to do the thing that they\'re really excited about.</p>\n\n\n\n<p>Cory Miller: Well, you mentioned artists and I wanna talk about that part of your business.</p>\n\n\n\n<p>Um, I [00:13:00] think it\'s so interesting working with, with artists and musicians and things like that, but, uh, that, and also the yoga and the wellness industry you talked about too, seemed like, um, we, we were talking before we started this interview, you\'re mentioning like during Covid helping some of these people that didn\'t have a lot of support infrastructure that I, I think about as like, uh, analog almost in the sense of they\'re meeting.</p>\n\n\n\n<p>People, um, in person and, uh, you know, whether it\'s a band playing a venue or it\'s a yoga instructor, and I\'d love to you to share a little bit about that, that work with those types that I think Covid, uh, helped, uh, open an opportunity, I think for a lot of businesses like. To kind of go, okay, now we can use leverage web and online to build and grow our business.</p>\n\n\n\n<p>D’nelle Dowis: Well, I mean, for a lot of people it really was a smack in the face. I mean, if you think about yoga studios, that is a very in person [00:14:00] thing. I mean, we definitely have like online classes that we can take, but I mean, if you\'re anything like me, like it is not the same. And it\'s, it\'s the same for like, um, for musician.</p>\n\n\n\n<p>Um, my, my favorite story that I like to tell about Vibe is that in October of 2020, uh, we went to a show in South Central Tennessee. It\'s a place called The Caverns in Pelham, Tennessee. And they normally have bluegrass underground in their caverns, but because everything was, we can only do outdoor. Um, they set up a stage above their caverns.</p>\n\n\n\n<p>They like brought in a stage and we, our favorite artist was playing a show on this stage. And we were like, partially it was a personal thing, like, we have got to get out of this house and, and do something, or we\'re gonna absolutely drive each other mad. And the other part of it, especially for me, was a deep curiosity about how they were gonna pull this off, because it really was, I mean, you know, to use a very tired word, it was unprecedented for all of.</p>\n\n\n\n<p>[00:15:00] So what is this gonna look like with all of these new restrictions and all of these unknowns? And so we went down to the caverns and I was incredibly impressed with the operations of how they had turned this thing that they normally have, like in a, in a enclosed space. Into doing this outdoors. Um, which I think that they\'ve continued to do.</p>\n\n\n\n<p>They definitely had more shows outdoors after this first one. But the notable thing about this show was that we are sitting in like our little six foot square and they have, they\'re using an app that you can order, um, concessions off of that\'ll be delivered. And it was all very interesting. And then the show started and the vibe of everyone in.</p>\n\n\n\n<p>In that audience was so subdued, it was unnerving to watch the way that we had all clearly been affected by being in our houses for six, seven months at that point. And I think about that a lot in terms of these in person things. That in person is incredibly important and we\'re never, [00:16:00] I don\'t think we are ever really going to be able to replicate that in an online, in a virtual environment, but a lot of us were forced.</p>\n\n\n\n<p>And one of the people that was forced to do that was a, um, client of ours, um, named no Novo Fitness studio. They\'re out of Midland, Georgia. We absolutely adore them. They are like, they\'re just our favorite to work with. Like they really get our vibe. We really get their vibe. And we\'re in a position where the yoga studio owners, it\'s a two sisters, they don\'t have to think.</p>\n\n\n\n<p>Their website because they know that they can come to us and be like, Hey, we wanna do this, can you make it happen? And we can give them good advice about whether or not they should make it happen. And so with them, what we did is, this was very early on, I think this like started in April of 2020. They are like, we are absolutely bleeding money.</p>\n\n\n\n<p>We are paying. Rent on a brick and mortar that we can\'t use. Like the sisters would go in there and like do yoga in the studio themselves, but you can\'t have other people coming in, right? [00:17:00] Like it\'s, this is, we\'re all in lockdown. What do we do to maintain the, the vibe of the community that we have built.</p>\n\n\n\n<p>Now, whether that is. A music, like a touring musician or whether that is, uh, a yoga studio or an acupuncturist or any kind of like wellness. Any, any of the people who are kind of in the, the verticals that we tend to work in. Um, how can we retain the magic that is that in person stuff while we are all stuck inside?</p>\n\n\n\n<p>And so with Novo, what we did is we built them like a little OnDemand, uh, video portal. So it\'s got gated content. The content is served up through Vimeo, but you can only access it if you\'re logged into their website. It was a relatively simple thing. We hadn\'t built anything like that before, but we had used all of these tools before the, um, the content gate tools.</p>\n\n\n\n<p>We\'d used Vimeo before. Um, and really like we were all stuck inside. Nobody really knew what to do, so we built this really quickly. I mean, it definitely, I think there\'s a case study out on. About the, [00:18:00] the process of it. It was definitely daunting because this was completely new for them and they weren\'t really sure how they wanted to use it.</p>\n\n\n\n<p>What they ended up with is a thing that\'s gonna do two things for them. First, it helped them keep a revenue stream going. Which was really, really important. But that, like during Covid, but that turned into an additional revenue stream now that we are all back in person and they are, you know, having their five, six classes a day in their brick and mortar.</p>\n\n\n\n<p>Um, so having that additional kind of passive revenue stream, really, you upload one video and it\'s. Going to serve up, you know, infinite number of times for infinite number of people. Um, you know, I think about that a lot with my business. What is recurring revenue? Like, how does that help us to be able to make long-term decisions?</p>\n\n\n\n<p>They now have a line item in their budget that is recurring revenue in a way that is almost passive, that\'s not dependent upon being present in the real world. But the thing is, is I don\'t think that that really is the end of it. I think that now we\'ve got this on demand. [00:19:00] Tool that they can use as a revenue booster, but it is helping them to maintain that those in person relationships, like they\'ve got one person who, um, right prior to c she and her, she had moved to Italy because of her partner\'s job.</p>\n\n\n\n<p>And so she wasn\'t able to come into these yoga classes anymore. And when she found out that Novo was offering on demand video, she was like, please, can you figure out a way that I can. Um, get to these videos because I miss attending these classes. I miss these instructors. I miss the community of the people that I was with.</p>\n\n\n\n<p>And at this point, that\'s what I wanna see out of virtual. I wanna see virtual providing this kind of like steam release valve. Like there is no telling what\'s gonna come our way, is another pandemic gonna come our way? Like, who knows what\'s happening? Like right now with like, I think I read something the other day about like avian flu making things like really.</p>\n\n\n\n<p>Like difficult for, uh, the, the poultry industry. Like there\'s just all of these variables that we don\'t know what\'s gonna come at us, but if we [00:20:00] have a really strong virtual presence that\'s supporting our in-person presence, it\'s gonna make us more resilient all around. If you know one of the artists that we\'re working with right now, Has the flu and if she were not feeling as bad as she is, the conversation that we would be having right now is, okay, well I can\'t go do this show this weekend, but I still want to connect with the people who are gonna be there.</p>\n\n\n\n<p>I still wanna make sure that they\'re gonna have an amazing. Friday night. What does that look like from a digital perspective? Do we have the infrastructure on our site to have this membership portal set up so that we can gate this content and make sure that we\'re still capturing that revenue so that we can keep doing what we\'re doing?</p>\n\n\n\n<p>Right? Like that really is what I want. I want our yoga studios. I want our artists to be able to keep doing the work that they\'re really, really passionate about, and if they have a digital infrastructure, Stable. They\'re gonna be able to rely on that to be able to create a, a more holistic approach to, well, I, I can\'t go out this weekend for whatever reason.</p>\n\n\n\n<p>I\'m tested positive for Covid, but I feel [00:21:00] fine. I\'d love to do something this weekend. Okay, well we can move into digital for that. But primarily we are still invested in being in the real world. Um, which is honestly, like Covid taught me that, like, I don\'t think I really appreciated the value of those real world connections and being in the same room as people until you weren\'t allowed to be.</p>\n\n\n\n<p>Cory Miller: Well, I, I think you\'ve really illustrated great, uh, case study too, which is having a backup when you\'re in person, whatever that is, and you just can\'t happen. But also I think you\'re showcasing too, where they can use that, not just in those bad times, but good times to continue to grow and support their businesses.</p>\n\n\n\n<p>Like when you talked about the Exactly. The yoga fitness studio, um, it\'s an extension. They record those videos once. And then they get to share that with whoever they want in their, uh, in their business. Uh, and it\'s up there. That\'s the beauty of the web. That\'s 24 7, 365, especially if they\'re supported by [00:22:00] very interesting productions.</p>\n\n\n\n<p>But like, you know, to extend the service and things that you do. Websites, web\'s always been, I love this because you can do so much more with little.</p>\n\n\n\n<p>D’nelle Dowis: Exactly, exactly like these, the, the yoga studio like Nova, uh, fitness is not focused on their website, and I don\'t want them to be focused on their website.</p>\n\n\n\n<p>I want them to focus on the real world, brick and mortar, making the vibe in that yoga studio exactly what their community needs. I don\'t want them to be thinking about like, oh, well, I need to go do this on my website now. No, no, no. You\'ve got somebody who\'s gonna handle that for you. They\'re gonna take care of it, and they\'re gonna provide you with the advice that you need about whether you should be doing it or not.</p>\n\n\n\n<p>Like there\'s a lot of people who I\'m like, no, I, I really don\'t think you wanna like, Spend part of your budget on that. Um, we have that conversation when it comes to design a lot that the, the level of client that we work with doesn\'t necessarily need custom design. What they need is [00:23:00] graphic design support.</p>\n\n\n\n<p>And use existing design templates or, you know, like we, we really love to work with Divvy a lot, and Divvy has a really great library of, um, page templates and like kind of starter designs that really serve our clients. But I don\'t want them to be spending their time and their money on something that they could otherwise have turned to really growing their business and cultivating the, the, what they\'re really passionate about.</p>\n\n\n\n<p>Which, you know, for Novo it\'s really about being in person and. You know, cultivating that community that they have built up. I mean, that was the scary part of Covid, is you think I have spent all of this time building up this community of people who are willing to get out of their houses to come see me every day.</p>\n\n\n\n<p>And what is going to happen now? Everybody\'s gonna be out of the habit of it. And are people gonna also forget about me? Um, I don\'t want, I, I. To be able to create the kind of stability that like helps businesses thrive. And so having this in an [00:24:00] emergency is great, but also having it as a part of the overall plan for growing your business is really huge.</p>\n\n\n\n<p>Because I mean, if they had already had on demanded place, they could have spent their time in their money marketing that on demand to people who are not. Already their students. Um, so I, I want our clients to be able to make really smart decisions and decisions that are gonna keep their business as stable as possible, even in the face of something like Covid.</p>\n\n\n\n<p>Cory Miller: Well, you, you very much, you know what I\'ve heard resonates with me because you\'ve talked about a web presence can be a chore. Or the two words you used were, uh, cultivating community. So using it as a channel to reach your customers, reach your prospective customers, and build and cultivate that community.</p>\n\n\n\n<p>Like the musician we were talking about is like, right, she can\'t be there Friday night, but her website can be there in some shape, manner, or form to help cultivate that interest in community. Right. [00:25:00] Um, Okay. So the last question I want to ask, uh, is tips for people starting out as an agency wanting to do, uh, use WordPress as a, as a tool to build, uh, and, and, uh, client websites and things like that.</p>\n\n\n\n<p>What, what advice would you give looking back as you\'ve shared your story? I</p>\n\n\n\n<p>D’nelle Dowis: I wish that I had listened harder and more intently to the things that Nathan Ingram was saying from the very beginning. Um, you know, it took me a really long time to build up, um, not necessarily automated processes, but processes that I\'m really comfortable with.</p>\n\n\n\n<p>Um, you know, whether that is the task management system that we are using or the way that we onboard clients, what those discovery calls look like, what our road mappings look like, kind of vetting those clients to see what the relationship between us and that client is like. I wish that I had, I could like just magically go back in time and tell [00:26:00] myself.</p>\n\n\n\n<p>Focus on those relationships with your clients because that\'s what\'s gonna feel the best for you. So anybody that\'s starting out, I mean, first of all, like just meet as many people as you possibly can. I feel like Covid has kind of done that for like the kids that are graduating college right now. I\'ve had some really cool conversations with kids that are like, I am graduating.</p>\n\n\n\n<p>I don\'t know how to get into this industry. What do I do? My answer is always meet and talk to as many people as you possibly can who are already doing the kind of thing that you wanna do or that you think you wanna do. Like you may think that you wanna build websites, but you get five years down the road and you realize what your talent actually is, is project management.</p>\n\n\n\n<p>I mean, I\'m calling myself out on that. Like I am first and foremost a project or a production manager. I am super good at that. It, my brain works that way. I really should not have my hands deeply in code because it takes me longer to do that than it would somebody who is really focused on that. So the more people that you can meet [00:27:00] to find out what it is that they do, what is their day like?</p>\n\n\n\n<p>Like what do they get really excited about when it comes to the work that they do is gonna help you identify the best. For you and I mean if it, if you are, are like already hell bent on starting your own agency. The advice there is, is kind of the same, get to know people as much as possible. I mean, I, there was a a point in 2015 where I made a, well 2016, where I made a huge mistake.</p>\n\n\n\n<p>I hired a couple people who I thought that I had a good relationship with. And it went very south very quickly. I think it ended up costing me a little under $20,000 when it all came down to it. I mean, I was really lucky that I had the ability to be financially resilient in that way and we\'re still here.</p>\n\n\n\n<p>Um, but. The relationships that you\'re gonna build with clients and the relationships that you\'re gonna build with other people in the community are what are going to support you and help you be resilient. I could not be as resilient I as I am if it [00:28:00] weren\'t for the people at Ithe who are providing part of the engine to run my business.</p>\n\n\n\n<p>The people in the post status community who, if I need a specific type of developer, I can go out there and it\'s like shooting fish in a barrel. You can. Five people who are gonna be the exact person that you need to do this work for your client. The relationships that we have are above all the thing that are sustaining us and helping us be resilient, and I did not.</p>\n\n\n\n<p>I couldn\'t really wrap my head around that until probably five years into doing my, into doing my business. I mean, I grew up in a situation where it was very much like, shut your work is the proof of the actual, like work product is the proof of whether you\'re good or not, and. As I moved through kind of owning my own thing, it became obvious that there\'s a lot of people out there who are doing really, really quality work.</p>\n\n\n\n<p>It is more about how you resonate with the people who you are working with and, and the maintenance. And the cultivation of those [00:29:00] relationships that is going to provide you with the stability you need to build whatever it is you\'re wanting to build. Whether that is a web development agency or a a, you know, content marketing business, or, you know, if you wanna start a yoga studio, think about the people who you have in your network who are gonna be able to support you in that, and how much do you trust them.</p>\n\n\n\n<p>And it takes time to build up trust. It takes experimentation. It. You know, a lot of, um, hit a lot of, you know, mishits really, you know, just like the people that I hired in 2016 who it didn\'t work out. I mean, there are definitely like plenty of situations I found myself in where I didn\'t do all of the work I needed to do to really establish that Right.</p>\n\n\n\n<p>Kind of trust. I mean, and I take responsibility for that too. Like I really dove into that relationship in a very naive way. Um, whereas I think that if it happened to me now, I don\'t think I would\'ve ended up in a situation that was as scary as that was for me, a sort of. Gigantic fail that it took me a couple months to recover from emotionally.</p>\n\n\n\n<p>Um, just because I went into it thinking [00:30:00] more about the work than I was about the relationships, which is why I focus so hard on relationships now because that really is where the best stuff is.</p>\n\n\n\n<p>Cory Miller: I love your energy and your approach. It really resonates with me relationship. So key. When you really get that aligned, you\'re, you\'re doing your best work, you\'re helping someone else, getting rewarded for it, and um, it makes everything better, doesn\'t it?</p>\n\n\n\n<p>D’nelle Dowis: It really, really does. I mean, that is why I\'m focused on support instead of website development. Like it\'s almost like you go anywhere and get anybody to build a website for you. Like you can hop out on Upwork or you can outsource it to a team in India. But the long relationship provides so many dividends over the years of knowing that person\'s business of understanding really where they are.</p>\n\n\n\n<p>Like we have one client right now. Her mother just passed away. She needs some time. That changes the project. The, like, the, the arc of our project build. It [00:31:00] changes, you know, the, when I\'m gonna need to bring in a, um, a developer for something versus when I\'m gonna need to bring in the SEO specialist. It changes a lot.</p>\n\n\n\n<p>But having known this client now since 2012, I know what I\'m gonna be able to expect from her, what she\'s gonna be capable of. And she knows that in a situation where she\'s kind of like in a personal crisis, she knows that she can offload and delegate more work to us that is gonna make it possible for her to do what she needs to do for herself personally.</p>\n\n\n\n<p>And those are the kind of relationships that I want to. I wanna be in a situation where somebody knows that they can call me up and say, Hey, I\'m gonna need more help this month. In the same fashion that they can call me up and be like, Hey, I\'ve gotta go with this other agency for X, Y, Z. Can you help me offboard myself from you?</p>\n\n\n\n<p>I don\'t ever want people to felt, feel like they\'re held hostage. I want people to feel like if they need a hand, they\'re handheld, that we are right here to grab.</p>\n\n\n\n<p>Cory Miller: Hostage to an ally you want.</p>\n\n\n\n<p>D’nelle Dowis: Exactly.</p>\n\n\n\n<p>Cory Miller: Pardon me.</p>\n\n\n\n<p>D’nelle Dowis: Exactly. Yes.</p>\n\n\n\n<p>Cory Miller: Well, Daniel, thank you so [00:32:00] much for sharing your story and also your passion and what you\'re doing in WordPress for your clients and making a difference in the world.</p>\n\n\n\n<p>Um, tell us where we can find more about you and, and your work.</p>\n\n\n\n<p>D’nelle Dowis: Um, so if you are interested in primarily the digital side of our business, we do have some in-person stuff that we do with live events, um, that we are, uh, kind of weaving in and out. But um, for the website support, go to web dot berry interesting.com.</p>\n\n\n\n<p>Um, I did the other day just get the domain that doesn\'t have the hyphen in it, and I\'m all excited, but, Switched over yet. Um, so yeah, web dot barry interesting.com and all of the information is out there. Um, we also have kind of upped our presence on social media. Um, I\'m doing a lot more on LinkedIn than I used to do, um, and we\'re pushing a bunch more content out to our business, LinkedIn as well.</p>\n\n\n\n<p>Um, but all of those links are out on our website. And, um, if you wanna find me anywhere on social media, um, I\'m primarily on Instagram. D underscore, n e l l e. [00:33:00] Um, I post a lot of dog photos and, uh, and stuff from when I am actually traveling. So it\'s that, that is not really, uh, professionally focused, but it\'s fun.</p>\n\n\n\n<p>Um, and I, I really appreciate it. Thank you so much for taking the time to talk to me today. It was a wonderful way to come back from the Thanksgiving holiday.</p>\n\n\n\n<p>Cory Miller: You bet. Thanks D\'nelle.</p>\n\n\n\n<p>D’nelle Dowis: Awesome. Thanks.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 13:03:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Do The Woo Community: WP Community Collective, CertifyWP and WordPress Enterprise\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://dothewoo.io/wp-community-collective-certifywp-and-wordpress-enterprise/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:438:\"<p>Supporting and funding contributions and initiatives, credentialing process for WordPress and enterprise in the ecosystem. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/wp-community-collective-certifywp-and-wordpress-enterprise/\">WP Community Collective, CertifyWP and WordPress Enterprise</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 10:44:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"BuddyPress: BuddyPress 11.0.0-beta3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=327432\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2022/12/buddypress-11-0-0-beta3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3767:\"<p>Hello BuddyPress contributors!</p>\n\n\n\n<p>If you haven’t tested our two first&nbsp;11.0.0 beta releases, here’s a last opportunity to help us give the final touches to our next major release so that we make sure it will fit perfectly into your WordPress / BuddyPress specific configuration. Beta testing is very important and we need you all, whether you’re a regular or advanced user, a theme designer or a plugin author: <strong>please contribute</strong>!</p>\n\n\n\n<div class=\"is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons\">\n<div class=\"wp-block-button aligncenter has-custom-font-size has-medium-font-size\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-beta3.zip\">Download &amp; Test BuddyPress 11.0.0-beta3</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Please note the plugin is&nbsp;<strong>still in development</strong>, so we recommend running this beta release on a&nbsp;<strong>testing site</strong>.</p>\n\n\n\n<p>You can test&nbsp;<a href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-beta3.zip\">BuddyPress 11.0.0-beta3</a>&nbsp;in 4 ways :</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.11.0.0-beta3.zip\">Download the beta here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>We&#8217;ve <a href=\"https://bpdevel.wordpress.com/2022/12/07/bp-dev-chat-summary-december-7-2022/\">lately decided to postpone</a> the final release date to <strong>January 5, 2023</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f448.png\" alt=\"👈\" class=\"wp-smiley\" />. We would greatly appreciate your help making sure this next major version of your community engine is as good as it can be.</p>\n\n\n\n<p>Since beta2, we&#8217;ve fixed <a href=\"https://buddypress.trac.wordpress.org/query?changetime=11%2F26%2F2022..12%2F09%2F2022&resolution=fixed&milestone=11.0.0&or&changetime=11%2F26%2F2022..12%2F09%2F2022&resolution=fixed&milestone=10.7.0&group=status&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">7 tickets</a> and documented two changes BP developers should love:</p>\n\n\n\n<ul>\n<li><a href=\"https://bpdevel.wordpress.com/2022/12/01/bp-11-fetch-activities-for-or-excluding-a-group-of-users/\">Fetch Activities for or Excluding a Group of&nbsp;Users</a></li>\n\n\n\n<li><a href=\"https://bpdevel.wordpress.com/2022/12/06/bp-11-bp_has_profile-now-accepts-an-array-of-profile-group-ids/\">bp_has_profile() Now Accepts an Array of Profile Group&nbsp;IDs</a></li>\n</ul>\n\n\n\n<p><strong>beta3 particularly targets installs where the BP Default theme is active. If you are using this theme, we&#8217;d be very happy if you could make sure everything is fine for you. If you are not using this theme and wish to give us a hand, add the following line to your <a href=\"https://codex.buddypress.org/themes/bp-custom-php/\">bp-custom.php</a> file so that you bring it back into your available themes and activate it:</strong></p>\n\n\n\n<p><code>add_filter( \'bp_do_register_theme_directory\', \'__return_true\' );</code></p>\n\n\n\n<p>If you find something weird testing this beta, please report it on&nbsp;<a href=\"https://buddypress.trac.wordpress.org/newticket\">BuddyPress Trac</a>&nbsp;or post a reply to&nbsp;<a href=\"https://buddypress.org/support/topic/buddypress-11-0-0-beta3/\">this support topic</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 07:58:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"Post Status: Interview with Product Lead Robert Jacobi at Cloudways Managed WordPress Hosting— Post Status Draft 131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://poststatus.com/interview-with-product-lead-robert-jacobi-at-cloudways-managed-wordpress-hosting-post-status-draft-131/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:52746:\"<div class=\"is-layout-flow wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Director of WordPress at <a href=\"http://cloudways.com/\">Cloudways</a>, Robert Jacobi, talks about WordPress and their WordPress hosting products in this interview with Post Status Publisher Cory Miller. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n\n<p class=\"yoast-reading-time__wrapper\"><span class=\"yoast-reading-time__icon\"></span><span class=\"yoast-reading-time__spacer\"></span><span class=\"yoast-reading-time__descriptive-text\">Estimated reading time: </span><span class=\"yoast-reading-time__reading-time\">37</span><span class=\"yoast-reading-time__time-unit\"> minutes</span></p>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Robert Jacobi shares his work as the Director of WordPress at <a href=\"http://cloudways.com/\">Cloudways</a>, or to put it simply-strategy, partnerships, and product marketing. After working for years as an agency owner, Robert joined the WordPress community. His experience enables him to foster the relationship between business and open-source projects and vice-versa. Robert shares how the products and services offered by Cloudways enable businesses of all sizes to accomplish their vision of “moving dreams forward”.</p>\n\n\n\n<p>Top Takeaways:</p>\n\n\n\n<ul>\n<li><strong>Cloudways Offers One-Click Easy: </strong>Staging in one click. Migration in one click. Scalability without the complexity.&nbsp;</li>\n\n\n\n<li><strong>Open-Source Ecosystems Thrive:</strong> Communities are driving satisfaction. There are so many opportunities to take in feedback and make improvements. They are driving new niches for flexibility, freedom, and scalability.&nbsp;</li>\n\n\n\n<li><strong>Find the Right Fit:</strong> Are you getting the value of what you are paying for? Are you getting less than you need? Are you taking advantage of all of the functionality you are paying for? Little things make a big difference for your site performance and user experience.</li>\n\n\n\n<li><strong>WordPress is Comforting: </strong>WordPress has risk, but the history, knowledge repository, documentation, and training resources offer a level of security from the enterprise on down.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"is-layout-flex wp-container-34 wp-block-columns sponsor has-theme-palette-8-background-color has-background\" id=\"Cloudways\">\n<div class=\"is-layout-flow wp-block-column\">\n<h3 id=\"sponsor-wpengine\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> Sponsor: <a href=\"https://poststat.us/cloudways\">Cloudways</a><a href=\"https://poststat.us/wpengine\"></a></h3>\n\n\n\n<p><strong><strong>Cloudways</strong> </strong>is proud to sponsor Post Status. Our <a href=\"https://poststat.us/cloudways\">managed hosting for WordPress and WooCommerce</a> takes away the cloud server-related learning curve with a seamless and scalable web hosting experience. Trusted by over 250,000 WordPress users, Cloudways gives you the freedom to choose from any of the top IaaS (infrastructure as a service) providers for ultimate performance.</p>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column is-vertically-aligned-center\"><div class=\"wp-block-image cloudways-logo\">\n<a href=\"https://poststat.us/cloudways\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2022/02/Stacked-Logo-300x176.png\" alt=\"Cloudways: Created for Exceptional Experiences\" class=\"wp-image-93196\" width=\"200\" height=\"117\" title=\"Cloudways Logo\" /></a>Managed Cloud Hosting Simplified</div></div>\n</div>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://www.cloudways.com/en/\">Cloudways</a></li>\n\n\n\n<li><a href=\"https://www.joomla.org/\">Joomla</a></li>\n\n\n\n<li><a href=\"https://www.drupal.org/\">Drupal</a></li>\n\n\n\n<li><a href=\"https://www.digitalocean.com/\">Digital Ocean</a></li>\n\n\n\n<li><a href=\"https://www.cloudflare.com/\">Cloudfare</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.linode.com/\">Linode</a></li>\n\n\n\n<li><a href=\"https://www.vultr.com/\">Vultr</a></li>\n\n\n\n<li><a href=\"https://aws.amazon.com/\">AWS</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/RobertJacobi\">Robert Jacobi</a> (Director of WordPress, <a href=\"https://twitter.com/Cloudways\">Cloudways</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] Welcome back to Post Status draft. Um, we\'re doing a new series called The Product People, basically where we\'re talking to the people actually driving the product at all these great companies. And one of our first to do this is Robert, my friend Robert Jacobi. Who leads WordPress endeavors over there, and I\'ll let him actually share in just a second what he actually does in his actual title or Robert.</p>\n\n\n\n<p>But I\'ve known Robert for a couple years now and hearing some of his backstory, I\'m excited for this because. I mean, he\'s had a wealth of experience, not just in WordPress, but before that other communities and agency work. And so, um, today, the purpose of this, the intention of these interviews is really to say there\'s all these cool products out there in the WordPress space.</p>\n\n\n\n<p>But let\'s talk to the people driving the vision, um, the roadmaps, the work that gets done for the people buying those products. So I wanna give, like, I, I personally, Robert, like [00:01:00] the human angle. I don\'t like to just buy from a button. I wanna buy from a human, ultimately know there\'s people out there. I give the example a lot of like Tom bin bags.</p>\n\n\n\n<p>And now Tom has actually exited that business. But I was like, you get to hear the story. You get to hear him, his background and talk about how you designed this particular backpack. But, uh, anyway, Robert, thanks for coming on to the draft podcast, talking about, uh, the product and what you\'re doing at Cloud Ways.</p>\n\n\n\n<p>But would you give us a set, uh, little background about yourself, how you got into it, what you, well, let\'s say, let\'s start with what you actually do at Cloud Ways, what you\'re responsible for, and then I\'ll ask how you got there.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Okay. So we\'ll, we\'ll, we\'ll, Teased it out backwards. Fantastic. Yeah. Thanks so much for, for having me here.</p>\n\n\n\n<p>Corey, I, you know, I, I love post status, love you and your family. Uh, really thrilled to be here. Uh, so I, my title, which titles don\'t mean Anything, but, uh, as director of WordPress at Cloud Ways, uh, it\'s a fancy way of saying [00:02:00] strategy partnerships, product marketing, c. So all the above. All the above. And probably things I\'m missing, and those</p>\n\n\n\n<p><strong>Cory Miller:</strong> that know you well, know that it\'s very fitting.</p>\n\n\n\n<p>All the things were in one hat and director of WordPress. I love it. .</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> But, uh, yeah, it\'s, I, I guess I could say it\'s been like a 20 year journey to get here. I\'ve been at, uh, cloud Ways for about a year and a half actually just. But started, uh, in open source decades ago. Boy, that makes it sound so long. . Years ago.</p>\n\n\n\n<p>Just, just years ago. And, uh, uh, built an agency around initially Java, but then actually jula, uh, the content management system and focused on that aspect of implementing backend work with Jum. Open source, connecting up to all that fun open source [00:03:00] stuff, which actually led me to being a leader of the project, uh, for a little bit in the late 20 teen.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s the part that I, I really appreciate. One of the many things about your story is like you were in, in this very big community called Joomla. And I, I\'ve told you my story, it was in 2006 when we were retailing our organization\'s website. I was working at, at the time, and one of the developers, uh, mentioned Joomla and Joomla, still around.</p>\n\n\n\n<p>Jim was still. And I think still with the open web conversation serves a vital interest, but you really were like in that inner circle of community helping lead and drive that project for a long time. And I know I bounce things off you over time because now we have this WordPress thing, and I know Drupla was even set up differently too from a governance standpoint and getting your feedback and the pros and cons and strengths and weaknesses of those.</p>\n\n\n\n<p>With all that say, I, I still am a cheerleader for Jula cuz I think it works in a lot of, [00:04:00] for a lot of people in a lot of settings. But I think there\'s lessons that you have from that experience that, that I know. I\'ve appreciated hearing your thoughts on WordPress specifically.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Oh my gosh. Well, we don\'t have 17 hours to go over that, but</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, exactly that.</p>\n\n\n\n<p>We\'ll say that one for another one. Yeah. But three</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> very differently run organizations. Each successful in the way they wanna be successful. So that\'s what actually makes it interesting that the way you run an organization can define, helps you define what success is and then you can actually focus on it more.</p>\n\n\n\n<p>Yeah. And</p>\n\n\n\n<p><strong>Cory Miller:</strong> the other part of the background for you too is running your own agency. So like you, when you\'re building product there, I love highlighting this because you\'re, you were, The user for a lot of companies, including cloudy product stuff that I think is really, uh, helps you build a more intuitive product too.</p>\n\n\n\n<p>But I know from years running your own agency, like you come in from the gr, you know, from the people doing the work out there, that always [00:05:00] don\'t get showcased as well. And WordPress and Post has specifically, but I think that\'s another angle is like you\'ve been there, you\'ve earned your straps as an</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> agency owner.</p>\n\n\n\n<p>Thank you. And I just, whenever I think that far back, I think of when we had our servers in a closet, you know, hosting customers, you know, way back then. Yeah. Oh wow.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Now you\'re, now you\'re dating yourself .</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> No, I don\'t miss that .</p>\n\n\n\n<p><strong>Cory Miller:</strong> So, uh, then fast forward, okay, so there was this time where I know you stepped into the WordPress community.</p>\n\n\n\n<p>This was before cloud. Can you share a little bit about that and why you chose to step into the WordPress</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> community? Sure. After I kind of, uh, rolled out of the agency, I started looking for just something new to do, for lack of a better term or phrase, and, uh, uh, joined the executive team at Perfect Dashboard, which is, uh, which was a company that built a automatic [00:06:00] update.</p>\n\n\n\n<p>Tool for WordPress, uh, that was acquired by WP Engine at the beginning of 2019. And then I just focused on, uh, in a lot of ways helping the open source community understand what businesses needed, but even more importantly, for businesses to let them know how open source communi. Work and, and it\'s not just about, you can throw, you know, millions of dollars at something and everyone\'s gonna love you there.</p>\n\n\n\n<p>There\'s a lot of, you know, get to know the people, get engaged, uh, be a part of everything from a word camp, you know, to a jula day, to, you know, whatever the open source project is. But you know, you, you need to have skin in the game to be taken seriously by a lot of people who have spent hundreds, thousands, tens of thousands of hours within those open source.</p>\n\n\n\n<p>Well, I\'m</p>\n\n\n\n<p><strong>Cory Miller:</strong> thankful you, you took the step into the WordPress community and then so fast forward, you got the [00:07:00] gig at Cloud Ways. You all have had a lot of, um, new things coming out from a product standpoint and then also new news coming out from a company standpoint and that you were acquired by Digital Ocean or, um, let\'s see, August, September, I</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> wanna say, uh, the beginning of September was, uh, yep.</p>\n\n\n\n<p>When we closed there. It\'s been, uh, 2022. Uh, so it\'s technically our 10 year anniversary. And, uh, I unfortunately we\'ve had like no time to celebrate it. It\'s been busy as can be. You know, the, the, the opening up of the world post, you know, post covid, uh, you know, depending how you look at it. So, lots of travel, lots of events, a lot of, you know, Meeting folks.</p>\n\n\n\n<p>Uh, uh, partnership with CloudFlare. We announced, uh, safe updates. Uh, so, and then of course the digital ocean acquisition. So we\'ve been, it\'s this, this one year\'s we feel like we\'ve done, uh, 10 years of work in one year for our 10th anniversary.</p>\n\n\n\n<p><strong>Cory Miller:</strong> That\'s how it goes. That was similar. Similar to mine with iThemes.</p>\n\n\n\n<p>We had just celebrated our [00:08:00] 10th anniversary and we were required. Um, okay. So let\'s talk about WordPress as it relates to cloud ways. So this is what you lead that particular product. Tell us about the product at Cloud Way specific to</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> WordPress. So, uh, we actually have a number of WordPress products, I guess to put it that way.</p>\n\n\n\n<p>The goal of Cloud Ways is to just, it\'s a managed cloud, you know, hosting solution and, you know, we can all blah, blah, blah about manage hosting. Um, and I will, don\'t worry. But, uh, you know, one of the things we, we focused on was just making it, you know, One click easy. So we, we really want to, uh, enable folks, you know, who have one 10, you know, hundred sites to just be able to get on there.</p>\n\n\n\n<p>Uh, either start from scratch with, you know, sort of a, a more, you know, cloud ways, uh, adapted version. WordPress. It\'s totally WordPress. We just make sure that, you know, caching and things are turned on the way you might want it. [00:09:00] Um, or, you know, or just sort of. Naked WordPress. So nothing\'s tweaked at all.</p>\n\n\n\n<p>Uh, WooCommerce of course. And then, you know, we, we have some bundles around, uh, other packages and products. Just make it, again, one click easy. Uh, lots of folks can do one click easy. WordPress, what, you know, we focused on the whole time is how do you get that WordPress Cloud site cloud enabled? And, uh, you know, yes, you can go to a shared hosting site and say, I want a WordPress install.</p>\n\n\n\n<p>But there\'s a lot more work behind the scenes. You know, we want our users to feel like, yes, it\'s just the same thing, but behind the scenes you\'re on a very scalable, uh, high performance, secure infrastructure. So when</p>\n\n\n\n<p><strong>Cory Miller:</strong> someone\'s looking at their building, building a website or launching a project, and they go, Hey, I want the scale of cloud.</p>\n\n\n\n<p>With the easiness, not having to kind of go through and tinker with settings and things like that from a, and you know me, I\'m not very technical, but [00:10:00] from the cloud is awesome in this dream, in that you can scale and do all these kinds of things, but there\'s work in between that needs to happen to help get it.</p>\n\n\n\n<p>WordPress ready. Is that where kind of cloud waste kind of comes in?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Without a doubt. I mean, if you go to any of \'em, so obviously we\'re now owned by digital lotion, but you know, digital lotion, aws, gcp, so that\'s Google Cloud, uhlin, node, vulture, you know, all these platforms are much more tech focused. So you can do a lot of really cool stuff on any of these platforms.</p>\n\n\n\n<p>Like really dive data, dive, uh, Deep in, uh, you get root, you can do, you know, all kinds of crazy tech voodoo and you have fantastic platforms and applications out there on that. But boy, if you just want to get WordPress going, that is a pain in the rear. Uh mm-hmm. , you know, we used to work with AWS and Azure back in the agency days, and [00:11:00] Oh man, just to get stuff going.</p>\n\n\n\n<p>You know, you need that certification or, or you\'re going to misconfigure something or even worse, you\'re gonna misbuild the Jesus outta yourself and what you thought was gonna be a, you know, a $50, you know, bill for the month. All of a sudden it\'s like 500 or a thousand dollars because you left something on that you weren\'t supposed to, and you didn\'t know that it was gonna be metered and build out in such and such a way, or some database process went crazier, haywire.</p>\n\n\n\n<p>So, We try to get rid of that risk at Cloud ways and just mitigate that so you can be like, oh, I am on Digital Ocean and I don\'t need to worry about any of this stuff. I\'m paying a monthly fee. I\'m not gonna get surprised with anything. Uh, really just kind of making it what, you know, a lot of shared hosting used to be back in the day, but without all the performance bottlenecks.</p>\n\n\n\n<p>Mm-hmm. now.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. You mentioned cloud. Is 10 years old and so I like been around for a long time. And I know this predates you [00:12:00] at the company, but like when did the WordPress specific offering start to come into the cloud? Ways history and product climate.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> We started out as actually a Magento shop. That was our first big offering, uh, that was sort of cloud enabled.</p>\n\n\n\n<p>As we, uh, look at it, I think with the n memory serves, About three years, two to three years, we, uh, had on, you know, put together our WordPress packages to be able to deploy across, uh, cloud providers.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. So when you think about the product, um, that we, we talked about this big problem, you know, and I love your phrase there, cloud enabled.</p>\n\n\n\n<p>Um, so who do you find in your customer community that you know just goes, okay, this. This is exactly what we need for what we\'re doing. Are there some common kind of avatars and customer journeys you see most often?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Uh, first and foremost, our best customers are agencies, uh, because it\'s really easy to manage, [00:13:00] uh, you know, the costs of having a ton of clients on your infrastructure.</p>\n\n\n\n<p>I mean, the flexibility is yes, I can have a digital ocean droplet. A hundred sites, if they\'re all, you know, small, simple brochure sites and you know, that\'s costing you $10 a month, plus or minus, I can\'t remember the exact, maybe it\'s 10 99 . Mm-hmm. , you know, a. To host as many, you know, as many sites as that droplet can handle, or you can scale that heck out of it and have, you know, a super e-commerce site that\'s, you know, got 300 plus concurrent users and chugging away, uh, on its own droplets.</p>\n\n\n\n<p>You, you can mix and match, you know, across the platform. Uh, not even just with one cloud provider, but across multiple providers. Cause some folks do have that. AWS expert in a house or as a contractor, and they do wanna tweak some things, uh, to the best of their ability. Again, it\'s managed so we don\'t let them blow up everything.</p>\n\n\n\n<p>But, [00:14:00] uh, we, we have, uh, use cases where, you know, there\'s front end stuff that\'s, you know, quickly being handled by, uh, digital ocean. And then there\'s like some crazy backend batch processing that\'s happening on a, you know, super high performant, you know, aws, uh, EC two. So like diversity</p>\n\n\n\n<p><strong>Cory Miller:</strong> of the projects within an agency, like you said, brochure wear all the way to something that skills bigger in one place where you can kind of manage all those.</p>\n\n\n\n<p>Um, that\'s pretty</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> compelling. Uh, I wish I would\'ve had that 20 years ago. , right, right. Building up a staging and deployment server and a production server and yeah. All that fun. And managing</p>\n\n\n\n<p><strong>Cory Miller:</strong> all that cloud complexity too. Uh, for sure. So what are some of the, um, examples, like you mentioned eCommerce, um, and I know WooCommerce is something that a lot of your customers do and use the platform for.</p>\n\n\n\n<p>Um, can you give us some more like, niche down examples too, of, it doesn\'t have to be by name [00:15:00] of course, but like what you\'re seeing in the community at cloud ways, you know, you\'ve got is WooCommerce, something that comes up quite a bit is obviously WordPress too, but what are some of. Uh, niche down, you know, journeys that you see</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> in the community too.</p>\n\n\n\n<p>Well, it\'s e-commerce across the board. So, uh, just jump back slightly on the sort of the audiences we have at, at Cloud Wastes. Yeah. Uh, we focus on SMBs. I mean, that, that, that is, you know, the crux of our mission, the crux of our joy. Uh, our, our model\'s always been moving dreams forward, but it\'s also, you know, how do we accelerate?</p>\n\n\n\n<p>Opportunity for our customers. And it, it, it\'s almost easiest to see in the SMB space cause you can do a few little things and, uh, performance increases, uh, trust increases. Uh, our customers, customers are happy. And that, that kind of is a, a flywheel of, of, I wanna say a flywheel of joy. Patent pending, um, , [00:16:00] uh, but that, but a lot of it\'s on the e-commerce side.</p>\n\n\n\n<p>So, Pretty much every site on the web these days has some kind of e-commerce component, however you wanna monetize it, whether that\'s through ad traffic or actually running a store. Uh, we focus a lot on WooCommerce because it\'s a, uh, a great platform. It\'s an open source e-commerce platform. Um, it\'s hard to name many of those.</p>\n\n\n\n<p>And, uh, it, it, it, there\'s a lot of flexibility with what you can do with it. And so, People wanna spin up a shop. Uh, no, we\'re not Shopify, you\'re not gonna be able to just start dragging, dropping. But when you\'re looking at, you know, do I wanna be locked into, uh, a system where, you know, I don\'t have all the control that I need?</p>\n\n\n\n<p>For my site that I, you know, I might be locked in on data. I might not be able to, uh, move or migrate or all that kind of stuff. We, you know, we certainly believe that W Commerce is the way to go. Uh, we [00:17:00] just, uh, had a, you know, w Commerce speed challenge. Uh, you know, we like to engage with the W Commerce community, with other users of Glu commerce.</p>\n\n\n\n<p>Uh, you know, it. I\'ve always loved open source. It\'s, it\'s the, the communities, uh, drive satisfaction, which makes it exciting to, uh, evolve with customers. And because it\'s open source, you can do a lot of stuff to, you know, quickly, uh, take in that feedback. So</p>\n\n\n\n<p><strong>Cory Miller:</strong> drilling down to the products, the offerings that you have too, what are some.</p>\n\n\n\n<p>You know, we, we could just say it as what are the kind of features, the core parts of the products that you\'re really most proud of, and that you see people really like maxing out to the, uh, to the, to the furthest they can with, with the actual products.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> I love having staging that\'s always there and one click ready</p>\n\n\n\n<p>I think that\'s, that\'s great. It should be everywhere. Um, you know, [00:18:00] we get you going with that right away. Uh, you know, one click to be able to migrate across cloud platforms, I think is, is amazing. I don\'t know where else you can just sit there and go, oh, you know, uh, I don\'t need Google anymore. You know, I just, I just wanna put this over on digital.</p>\n\n\n\n<p>Yeah, you can do that and you can go back and forth all day long. Um, that it\'s a, it\'s a unique, uh, for me cool factor to be able to take advantage of, uh, you know, how different platforms run and the, you know, the value some, you know, are obviously gonna cost more and maybe there\'s value, maybe there\'s, you know, you have the value, you don\'t need that, uh, type of, uh, expense performance, so you can easily ratchet down as well.</p>\n\n\n\n<p>Um, so, you know, that\'s cool. Uh, you know, a lot. Good things around, uh, optimizing and securing WordPress from, you know, how we implement CloudFlare, how, how, you know, how our safe updates work. Um, which is sort of that very similar to what I did back in [00:19:00] the perfect dashboard days. Um, automatic WordPress and plugin updates.</p>\n\n\n\n<p>Um, you know, getting those basics in line is critical. So I really like that those work and, you know, You don\'t wanna worry about that as a customer, you know, you wanna worry about the cool stuff or, you know, what\'s my next product gonna be? You know, or you know, how am I gonna launch a, you know, a Black Friday Cyber Monday campaign?</p>\n\n\n\n<p>You don\'t wanna be worried about, you know, is my site gonna get jammed up? Is it gonna get a hacked, is it, you know, gonna just flub around. Yeah, went</p>\n\n\n\n<p><strong>Cory Miller:</strong> back to the one click across the platforms that, that\'s a, seems like a compelling feature specifically for agencies who go, okay, I\'m not getting what I want here.</p>\n\n\n\n<p>And being able to click do a one click migration. That\'s outstanding. It, it\'s, it\'s,</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> it\'s really cool. It\'s, it\'s like, you know, that value proposition got me hook, line, and sinker when, uh, I first started working at cloud. Yeah, I</p>\n\n\n\n<p><strong>Cory Miller:</strong> remember, uh, we had, [00:20:00] uh, an aws, you know, part of our SaaS solution at Ithe, and that built, you know, initially the processing really awesome until you do it on scale and then you\'re like, just that, being able to move the, uh, and migrate to different, you know, cloud solutions I think would be great from a price standpoint, if anything, but I\'m sure there\'s other compelling reasons to do.</p>\n\n\n\n<p>Like if you\'re not the right solution, isn\'t there? But do you see other, do you see com, you know, other paths why people would go, okay, I\'m gonna use this one clip to go over here. Do you see that quite a</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> bit too? Uh, a lot of times just the needs have changed. So it\'s, you know, either I need to ramp up, uh, what I have at Digital Ocean or, you know, or ramp down from, uh, something that I thought was, that started off strong, but you know, It\'s going, but we really just don\'t need that.</p>\n\n\n\n<p>So we don\'t need, uh, whatever GCP may be offering and then, you know, ramp it down to, you know, maybe a high end [00:21:00] digital ocean server, but you\'re still save droplet, I should say. Um, but you\'re still saving 50%, uh, for what you were paying before. And, you know, we\'ve, we keep a, a big guy on. The value propositions, especially in our fund, ever-changing, uh, economy.</p>\n\n\n\n<p>And, uh, we\'re seeing a lot of people take the time to evaluate what they, you know, have provision for themselves, whether that\'s at Cloud ways or another provider and, and, and, you know, spend a week or two doing the math and being like, you know what, we can get the same kind of performance, you know, at cloud ways.</p>\n\n\n\n<p>Somewhere else, but you know, people are actually finally looking at, you know, those infrastructure costs I think a little bit more seriously.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And when you said the needs part, I thought it seems like a graduation. Okay, this served me for this season of time, for whatever I\'m doing now. I\'m graduating to a different, different offering.</p>\n\n\n\n<p>And then even though Cloud Wises is owned by Digital Ocean, I know you have all those. [00:22:00] Yeah. And um, I\'ve heard the plan is to continue to, to have those options so that. Being able to pick where you\'re at with that kind of ease is a lot, a lot in the hosting. Now I go way back here, but like in the, the problem with hosting was typically you can\'t move.</p>\n\n\n\n<p>It\'s hard to move, it\'s easy to get in, hard to get out. And so now with that, that those options out there you can graduate on when you have</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> needs change. Yeah, absolutely. I mean, we support digital Ocean Lin, node Vulture, gcp, and aws, and, uh, you know, yes, you\'re on top of clouds doing that, but of course, we\'re all, we\'re launching open source applications, so yes, you could even move off of clouds very easily.</p>\n\n\n\n<p>I mean, that\'s, that, that kind of, I think the, that idea of hosted lock in is it\'s never gonna leave because you can make a lot of money if you get the right, you know, Bit of traction initially. I mean, obviously you can look at, you know, the wickes of the world, but I, I think people are only satisfied for [00:23:00] so long with that until they realize that there are, there are a lot of stumbling blocks, uh, to doing what you want and having, you know, flexibility, freedom, scalability are, are, are much more important than, Just being able to do a little bit of drag and drop, and frankly, I\'m gonna keep rolling on this.</p>\n\n\n\n<p>Open source keeps improving. And, you know, I don\'t want those guys to disappear because, you know, it\'s great to keep, you know, open source projects on their toes. Like, you know, they\'re, they\'re finding niches in the market which are, are critical, important, and relevant, and, and users are going to them. So I think that\'s a great challenge for open source projects to, you know, evaluate what\'s going on there and being like, okay.</p>\n\n\n\n<p>That\'s something we should add in. We should add in blocks, for example, and we can have a block editor and we can have, oh my gosh, they just changed. Name. What\'s FSC being called now? Just site editor. It\'s not site editor. Site editor.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay, so we, we\'ve been talking about some of the product [00:24:00] solutions in particular, like the one click staging. Um, anything else before I ask about, you know, how you\'re seeing users in your community make the most of it, what the ones are going? Okay. They\'re, they\'re, they\'re taking the most advantage of what we designed this for.</p>\n\n\n\n<p>For anything else before we get to that?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Uh, I think folks should, I, I touched on just a mo a moment ago. Uh, take a look at your infrastructure, see what you\'re paying for, see if that\'s providing the value. Uh, you know, and cloud ways may not be the right fit and that\'s okay. Um, because if there is a right fit somewhere else, you should always go with the right fit.</p>\n\n\n\n<p>But, uh, take the time and I think this year especially is a good time to you. Just kind of go through that, you know, are, are you really getting the value out of you know, what you\'re paying for and maybe you\'re paying too little and getting too little and not even realizing it because you haven\'t done the homework of maybe running a couple of speed tests and realizing that, wow, my site actually.</p>\n\n\n\n<p>Takes five plus seconds to load. It\'s just really fast. Cause it\'s always cashed on my own [00:25:00] browser cause I\'m checking it every morning. So , you know, little things like that can make a huge difference in, you know, in seo, in sales, uh, and, and just friendliness, uh, for web visitors. People don\'t, people just are impatient on the internet.</p>\n\n\n\n<p>I like that. So</p>\n\n\n\n<p><strong>Cory Miller:</strong> the two themes I\'m hearing is value, being able to assess, hey, is this the right solution? Are we getting the right value? Are we spending too much? Whatever that is. And the other side of it, which is need, okay, are we getting what we need from that platform? We\'d rather, Hey, we\'ve been looking at this different option.</p>\n\n\n\n<p>And those are two that kind of funnel into what you built. You all build it cloud waste. Yep. Awesome. Okay. All right. So. Now let\'s how to use the most, how to get the most out of the product that you all have built at Cloud Wastes. So what are the ways you see in the community or the ways you even think from the product perspective?</p>\n\n\n\n<p>You\'re like, I just wish people would do this, this, and that, or whatever that is. Um, you, I built products for a long time, or at [00:26:00] least led product teams that both work and you\'re always. We built that. So you would do this, but they miss it or, gosh, we, we spend our, you know, for us it was like we spend every day thinking about the product and the, or the problem and the solution, and then people get it and you\'re like, they\'re using like 5% of it.</p>\n\n\n\n<p>What sticks out in your mind from that standpoint? People that are really using it for all it\'s worth or the, or also the ones that go, oh, I wish they\'d just do these two things, or whatever that is. Uh, in terms of making, making the most of what you\'ve, you and your team have built?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> So for the, for the technically and kind companies, I really wish they would use our API more.</p>\n\n\n\n<p>Uh, we have an agency partner that. Very geeky on the inside. So it was great. They, they, they jumped on the cloud ways and they said, oh, you guys have this api? We\'re like, yeah. And they\'re, well, can we do X, Y, and Z with it? [00:27:00] We\'re like, yes. So they are literally, uh, they\'ve created their whole, you know, to mention a competitor.</p>\n\n\n\n<p>They\'ve created their own like Pantheon esque. Instance of cloud ways. So the, all their deployments, uh, whether it\'s for existing projects or new projects from staging, from dev to staging, uh, production, it\'s all done with, you know, scripts, you know, on their, on their side of the universe, and they can, you know, Do very complicated, uh, integrations of, uh, new code and whatnot, you know, across their stack.</p>\n\n\n\n<p>And it\'s all on cloud ways, on, you know, a bunch of droplets. And it\'s brilliant. It\'s, it\'s actually my favorite use case for clouds and I really wish more people would take a look at the API and realize how powerful it is to really be able to spin up what you want when you.</p>\n\n\n\n<p>Dig that.</p>\n\n\n\n<p><strong>Cory Miller:</strong> So not being technical minded, [00:28:00] but how do you talk to those agencies? If I put on that hat and you talk to me for a second, you\'re like, Hey, here\'s some ways, but that seems like, for instance, on an API perspective, is customize it for your unique need. This is that last percentage where you\'re like, I\'m, we\'re never gonna be able to do these things, but we can put the API out here that allows those kind of custom.</p>\n\n\n\n<p>Anything specifically</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> St Yeah. Yeah, I mean, every company is, uh, I guess engineering, you know, uh, what\'s the word? Oh boy, uh, engineering resource constrain these days. So while there\'s a ton of cool stuff we like to do, some of it\'s gonna be edge cases, so we just wanna be able to say, Hey, you know, let us help you walk through this, you know, we\'ll guide you through any questions you have.</p>\n\n\n\n<p>And then run with it, you know, this is, it\'s full tested, uh, in, you know, in production api. It\'s the API we use. So it\'s not like , you know, if we sign, find something wrong with it, we\'re the first ones to know. Yeah.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. Awesome. Okay. API big one. Make use of [00:29:00] that. Anything else stand out to you? Um,</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> You know, on sort of the almost new user aspect, uh, I, I, I would like people to understand the variety of applications they can actually deploy. So, yes, you know, I\'m always gonna have my cloud way\'s WordPress head on, but if you\'re working in Laville, And, you know, or other custom PHP stuff, you can still deploy those applications with one click, or at least the framework with one click and be ready to go on, you know, on one or more, uh, servers.</p>\n\n\n\n<p>So, uh, you know, being able to just take advantage of that pretty quickly or ask questions about that we\'re. Always interested in people\'s opinions and questions and suggestions. I mean, we literally had, uh, a suggestion come over, uh, the wire this morning, which was like, duh, why haven\'t we done that? Okay.</p>\n\n\n\n<p>Cause you know, you sometimes you just get myopic on, you know, you\'re sitting in your, uh, you know, cubicle and, uh, what\'s a [00:30:00] cubicle? I, I think we don\'t use those . Um, but you know, you know too much about your product and you just make assumptions and that\'s, that\'s always tricky to. People internally to be like, oh yeah, of course.</p>\n\n\n\n<p>Duh. So as I talk to ask questions more, reach out to us, uh, you know, good, bad or ugly, uh, you know, that\'s, that\'s always one of those things. Feedback\'s never useless. It\'s, it can just be sometimes interesting . And that\'s</p>\n\n\n\n<p><strong>Cory Miller:</strong> an advantage of having Robert and Slack as well. So you can hit, you can hit up Robert and Slack too, and give.</p>\n\n\n\n<p>Feedback or ask some questions too, or he can point you in the right direction. But what I heard from you, um, too, is that it\'s, even though you are passionate about WordPress at Cloud Ways, cloud Ways is passionate about WordPress, it\'s not just. WordPress and I talk a lot to a lot of, uh, agency owners, particularly in our community.</p>\n\n\n\n<p>And it\'s interesting because I, I too have just won the WordPress hat for years and I, [00:31:00] and it\'s refreshing to hear what all these agencies are doing, but it\'s not just what, there\'s a lot of tools out there that they might go, I talked to one last week and they\'re doing API develop. With like dairy farmers and things like that.</p>\n\n\n\n<p>But there\'s, so what I hear you saying too is like, it\'s, even though we\'re having a WordPress conversation related to cloud wastes, it\'s not just cloud wastes. You can do other other</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> things with it. Oh, for sure. And I, I, I\'ll put my agency hat back on and, you know, we were a jula shop easily. 50% of the work we did was not ju.</p>\n\n\n\n<p>You know, direct, it was maybe tied into it, but there were custom applications, uh, maybe some kind of server architecture that we were building out. Um, you know, crazy database thing. Um, JUUL was a part of it, but then we needed to have other environments to support whatever other, uh, platforms we were, uh, integrating with.</p>\n\n\n\n<p>Gotcha.</p>\n\n\n\n<p><strong>Cory Miller:</strong> All right. Anything else on the making the most part, things [00:32:00] you wish people knew about or did? Uh, before we start talking about, I want to get your takes on the future where WordPress is too, and technology and vision values and things like that. But anything else on the making the most part that you wanna mention?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> APIs, reaching out, uh, you know, play with all the tools. We have a lot of, you know, sometimes people just do that one click and, uh, You know, skip over some of the, you know, interesting features that are already available to them. You know, we have different types of caching that are already available. Um, yes, it gets a little more geeky and you have to know what you\'re doing.</p>\n\n\n\n<p>So, yes. Um, but I mean, you can go all the way up to, you know, sort of, uh, enterprise esque, uh, CloudFlare, and uh, you know, that\'s pretty cool. I</p>\n\n\n\n<p><strong>Cory Miller:</strong> should have asked this earlier, but a lot of the, it seems like a lot of the, uh, customers you have, or at least the contact points with cloud ways or they\'re using the platform, might be more developer, technical minded people too.</p>\n\n\n\n<p>So can you speak? So that really speaks to them in the sense of get in there and play around. [00:33:00] They might not, okay, I\'m thinking solution and I just need this fixed. But there\'s also other things that they can get in, explore. Anything, particularly if we put on that developer and agency type role and like, what else would you say to</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> them?</p>\n\n\n\n<p>Uh, well, a lot of that developer-centric nature comes from being a completely self-service. You know, provider for a long time. Uh, you know, we\'re expanding how we reach out, how we communicate, how we, uh, expose offerings. But, you know, make sure you use, you know, a lot of the basics. Make sure you\'re using , the staging environments.</p>\n\n\n\n<p>They\'re already there. They\'re not gonna anything extra. Uh, take advantage of. You know, evaluating, you know, potentially different servers or how you, uh, load up on, you know, droplets or something like that. Uh, you may find that, uh, one application is really, you know, kind of, [00:34:00] uh, what\'s the, uh, impacting, that\'s the word I wanna look.</p>\n\n\n\n<p>sometimes hard find these, these seven letter words, um, impacting, you know, other applications. You know, never thought about it before, but you can actually tell now the difference. And so yeah, move that over to another, uh, you know, add an extra droplet into the, uh, mix and, and also play around with, uh, how you might split up that architecture.</p>\n\n\n\n<p>Again, I\'m, I get, I get geeky on this, but you know, no geek geeky. We, we, uh, uh, we have a customer. Yeah, put their entire database on a really high performant droplet, because that was getting hammered all the time by the type of applications that they were running, but their front end wasn\'t really that busy, so they could, you know.</p>\n\n\n\n<p>Put multiple versions and variations of that front end on a much more, uh, cost efficient, you know, value based, uh, package. So you can do [00:35:00] cool things like that without having to, uh, go crazy and worry about, you know, third party, you know, database as a service, things. I mean, it\'s already there. Um, so you can kind of take advantage.</p>\n\n\n\n<p>Right. Get</p>\n\n\n\n<p><strong>Cory Miller:</strong> in and look around the API and, uh, you play with the tools. Okay. Thanks for that, Robert. Now let\'s talk about, I want the, the part that I can talk better about is where is WordPress now in the open web, in the web in general? Um, where\'s the position, what are you seeing in WordPress? What are you excited about with WordPress as we kind of move forward and continue to like help democratize publish?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Uh, well, WordPress is the defacto content management system platform right now. I, I, I don\'t think there\'s any way just by the sheer volume, the ubiquity, the types of traffic. Uh, there are probably a hundred million people on a WordPress site right now. They don\'t even realize it, [00:36:00] so it, it, it, there, there\'s a ubiquity to it.</p>\n\n\n\n<p>Uh, that\'s not gonna disappear overnight. Uh, My assumption is it\'ll continue growing. It\'s, it\'s, there are a lot of things that have been done right with WordPress. There\'s a lot of, you know, quarreling, cobbling, squabbling, um, sometimes about how things get deployed and rolled out. But, uh, on the whole of, for a community driven project, it\'s pretty amazing.</p>\n\n\n\n<p>How far it\'s come, how far it\'s going to go, and, uh, the breadth of, of adoption. It\'s, it\'s, is it the easiest thing the universe to use? No, but it\'s not the hardest, uh, is, is, is it the most flexible thing? It\'s up there. I mean, there may be things, you know, if you really wanna just hand code everything from scratch, I guess that\'s the most flexible.</p>\n\n\n\n<p>But this allows a level of [00:37:00] consistency, uh, comfort. I know it\'s not a word we typically use with open source projects, but I can go from one word press site to another for completely different applications, and there\'s a comfort in knowing where all the pieces are and that there\'s documentation and training and all these things that help continue to grow an ecosystem.</p>\n\n\n\n<p>That at some point everyone knows at least enough about WordPress to be dangerous and people can build careers and companies out of it, uh, quite easily.</p>\n\n\n\n<p><strong>Cory Miller:</strong> Absolutely. Is there anything about in the project too that you like that\'s getting you excited? Uh, whether it\'s, um, a particular market that\'s able to really crush or, you know, cont not crush, crush in a good way, um, really expand into, and I think of enterprise here, so I\'m baiting you on that.</p>\n\n\n\n<p>But um, also specific features. Do you know we got good word, the code editor. Or the block editor always. We\'ve got side editor coming out now, changed from full side editing, but anything, anything that [00:38:00] you, you\'re excited about specifically related to the project that</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> it\'s doing? I think there\'s, uh, small stuff being done and you kind of, you know, um, lob the pitch at me, uh, to, to get enterprise just sort of, uh, happy.</p>\n\n\n\n<p>I mean, there\'s a. Performance work being done all the time on WordPress there, you know, there\'s, uh, you know, WordPress learnings now, I mean, these are the things the enterprise cares about. They wanna be performant, they wanna be secure, and they wanna know that there\'s a knowledge repository that they can go back to, uh, either for reference or for training their workers or being able to evaluate their workers against, or contractors, uh, vendors or whatnot that kind of.</p>\n\n\n\n<p>That\'s risk mitigation. And the enterprise cares about mitigating this kind of risk. And that\'s why open source had such a hard time in the beginning, and new projects have such a hard time getting traction. There\'s a lot of risk, you know, who\'s running the project. Uh, [00:39:00] you know, are they awake? What happens if something is horribly broken?</p>\n\n\n\n<p>What if there\'s a, a core vulnerability that destroys everything? You know, these corporations don\'t, the enterprises not wanna worry about those things. They do, but you know, let\'s not make it even scarier than it already is for them. And I think what you know, the project has done very well is try to cover some of these aspects and, uh, provide that faith and security.</p>\n\n\n\n<p>Yeah, I,</p>\n\n\n\n<p><strong>Cory Miller:</strong> I, I have no enterprise experience, um, but I love that WordPress is, seems to be really doing well on an enterprise. And I hear from a lot of marketing types in those companies that love WordPress, cuz it\'s. Faster, cheaper, and oh, we can actually make side changes on the side. Like they can actually use Gutenberg block editor to roll out things.</p>\n\n\n\n<p>And that\'s exciting for me. I, I came in from more the, here\'s your $80 theme, but to [00:40:00] see WordPress release, start to take. Take a lot of ground up there and help a lot of people, particularly at the enterprise is exciting. Talking with a lot of our agency owners. Same. Same thing is like, that was music to my ears.</p>\n\n\n\n<p>That\'s what you want to hear WordPress is doing, um, is continue to grow in the new markets and help with that expansion of the.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Of the open web and even things like headless. I mean, so again, you have all that consistency and reliability for from cord WordPress, but now I can just spit out my whole site via APIs.</p>\n\n\n\n<p>I mean, you could always kind of do that, but now it just gets better and more robust and, uh, again, uh, mitigates risk by being able to have the worker\'s stuff on one end and then sort of the display part on the other end. All right. Well,</p>\n\n\n\n<p><strong>Cory Miller:</strong> thank you for that. Anything else you\'re excited about, uh, the work you\'re doing at Cloud Ways, the work in WordPress?</p>\n\n\n\n<p>Anything else that we left out that you want to share? Oh,</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> there\'s so many things I\'d love to share. , uh, it\'s, it\'s, it\'s [00:41:00] a busy good time for WordPress. I know there\'s a lot of concern about, in the tech Mark about what\'s going on with this or what\'s going on with that. One of the amazing things about, you know, successful open source project, Is that the opportunities exist.</p>\n\n\n\n<p>I mean, if you\'re, if you\'re a Linux geek, you, you, there are so many millions of opportunities If you\'re a WordPress developer, implementer, you know, uh, editor, content creator, you know, those opportunities are all over the place. And, and it\'s, it\'s, you know, nice from. You know, working in this space now that, okay, the, you know, this is not just a one trick pony, this isn\'t the, you know, some kind of project, which may, may be fantastic or may just drop dead tomorrow.</p>\n\n\n\n<p>Uh, WordPress is, uh, It\'s solid and we should really take an immense amount of pleasure in the fact that it\'s solid. Yes, we\'re not getting things always done as quickly [00:42:00] or, you know, can\'t make everyone happy. But that\'s, that\'s not the worst problem to have in the universe. Uh, it\'s the project. And the platform is flexible enough to accommodate well third party solutions that can integrate with WordPress.</p>\n\n\n\n<p>You know, why not? And that kind of stability helps everyone from the enterprise on. Yeah, that\'s</p>\n\n\n\n<p><strong>Cory Miller:</strong> a good way to end it. Well, thank you my friend Robert, and also the cloud ways for continuing to support business award press at post status. And I love what you\'re doing over there. Keep it up and keep sharing, uh, what you and your team are doing.</p>\n\n\n\n<p>Will you be you and the team? Um, where will you be next? I know Word Camp are coming around, but, uh, where will you be?</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Yeah, a deploy, depending when this gets pushed out, there\'s a digital Deploy, digital Ocean Deploy conference, uh, virtual conference that that\'ll probably pass by the time this, uh, airs, uh, recurring revenue summit.</p>\n\n\n\n<p>Uh, all the Black Friday, cyber Monday madness that we, uh, are [00:43:00] already kicking off. Um, I, I think that\'ll, I think that\'ll finish out the year. I think the, uh, we\'ll, we\'ll all take a needed, uh, break at, you know, for at least a week or two at the end of December,</p>\n\n\n\n<p><strong>Cory Miller:</strong> break and kick into 2023. Well, thanks, Robert.</p>\n\n\n\n<p>Again, we appreciate you sharing the story and what you\'re doing, uh, with the product, WordPress product specifically over at Cloud Waste. We\'ll talk to you next time.</p>\n\n\n\n<p><strong>Robert Jacobi:</strong> Thanks so much, Corey.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 03:24:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: New WordPress Sandbox Project Demos: Test-Drive Themes and Plugins in the Browser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wptavern.com/new-wordpress-sandbox-project-demos-test-drive-themes-and-plugins-in-the-browser\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4025:\"<p><a href=\"https://github.com/WordPress/wordpress-sandbox\">WordPress Sandbox</a>, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser without a PHP server</a>, has been chugging along steadily since Automattic-sponsored core contributor Adam Zieliński introduced it earlier this year in September.</p>\n\n\n\n<p>Zieliński published three new updates to Twitter this week, demonstrating the project&#8217;s potential to provide an in-browser IDE for plugin development along with a quick way to spin up a test environment for themes and plugins. </p>\n\n\n\n<p>In the first example, he shows how the project could be used to test-drive themes from WordPress&#8217; Themes Directory right in the browser. Clicking the <a href=\"https://t.co/nYDjXUAwLv\">demo URL</a> will launch a site with the Pendant theme active, but the theme can be changed to another from the directory by appending a different theme name to the end of the URL. All your changes made on the demo are private and disappear after a page refresh. With a few improvements, this could be transformative for previewing themes on WordPress.org.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">With WordPress Sandbox, you can test-drive themes from the directory right in your browser.<br /><br />For example, click here to try Pendant theme:<a href=\"https://t.co/nYDjXUAwLv\">https://t.co/nYDjXUAwLv</a><br /><br />You can replace \"pendant\" in the URL with another theme from the directory. <a href=\"https://t.co/OFGqimFd6c\">pic.twitter.com/OFGqimFd6c</a></p>&mdash; Adam Zieliński (@adamzielin) <a href=\"https://twitter.com/adamzielin/status/1600484342588997634?ref_src=twsrc%5Etfw\">December 7, 2022</a></blockquote>\n</div>\n\n\n\n<p>Zieliński also showed WordPress Sandbox&#8217;s potential for test-driving plugins directly in the browser. The example uses CoBlocks but can be changed to any other plugin from the directory by replacing the plugin name. Having this available to WordPress users would greatly speed up the plugin selection process in cases where it&#8217;s not clear if a plugin will do what you hope it will do. It would also be handy if you could append multiple plugin slugs to the URL to install more than one.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">With WordPress Sandbox, you can test-drive plugins from the directory right in your browser.<br /><br />For example, click here to try CoBlocks:<a href=\"https://t.co/18jTGosPW7\">https://t.co/18jTGosPW7</a><br /><br />You can replace \"coblocks\" with another plugin from the directory. <a href=\"https://t.co/zzelQNtzK2\">pic.twitter.com/zzelQNtzK2</a></p>&mdash; Adam Zieliński (@adamzielin) <a href=\"https://twitter.com/adamzielin/status/1600482887710789635?ref_src=twsrc%5Etfw\">December 7, 2022</a></blockquote>\n</div>\n\n\n\n<p>The most recent demo is a video showing how the project can be used to create an in-browser IDE for plugin development, where changes are displayed live.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The future of WordPress development?<br /><br />Build plugins in your browser and see the results live.<br /><br />Here\'s an early demo with WordPress Sandbox – there is no WordPress running on the backend! <a href=\"https://t.co/yIhRoNW5IK\">pic.twitter.com/yIhRoNW5IK</a></p>&mdash; Adam Zieliński (@adamzielin) <a href=\"https://twitter.com/adamzielin/status/1600837230779580416?ref_src=twsrc%5Etfw\">December 8, 2022</a></blockquote>\n</div>\n\n\n\n<p>For more examples of WordPress Sandbox&#8217;s capabilities, check out the quick <a href=\"https://adamziel.github.io/tutorial.html\">showcase</a> Zieliński built and play around with a <a href=\"https://adamziel.github.io/index.html\">live in-browser WordPress instance</a> to see the site updated instantly as you code. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Dec 2022 01:41:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Course: A New Free Block Theme Compatible with Sensei LMS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/course-a-new-free-block-theme-compatible-with-sensei-lms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2136:\"<p>Sensei LMS, Automattic&#8217;s teaching and learning management plugin, has released a new free block theme called <a href=\"https://senseilms.com/meet-course-a-new-free-block-theme-by-sensei/\">Course</a>. In February 2022, <a href=\"https://wptavern.com/sensei-lms-4-0-includes-new-block-based-learning-mode-course-theme\">version 4.0</a> of the plugin introduced support for full-site editing with its bundled &#8220;Learning Mode&#8221; theme. Course features a new bold design made to be customized in the Site Editor.</p>\n\n\n\n<img />\n\n\n\n<p>Although Sensei works with neaerly any WordPress theme, the plugin looks its best with themes designed specifically for Sensei compatibility. Course includes styles for Sensei functionality to perfectly display course lists, sales pages, and the &#8220;Learning Mode&#8221; course templates. It integrates with the <a href=\"https://wordpress.org/plugins/sensei-lms/\">free Sensei LMS plugin</a> as well as the <a href=\"https://senseilms.com/pricing/\">pro version</a>. Sensei&#8217;s <a href=\"https://senseilms.com/new-course-list-block/\">new Course List</a> block will also inherit all the theme&#8217;s styles seamlessly.</p>\n\n\n\n<img />\n\n\n\n<p>If green is not your jam, Course includes four style variations suitable as a starting point with blue, dark, and gold as the accent colors and multiple font combinations.</p>\n\n\n\n<img />\n\n\n\n<p>In addition to the various styles, Course brings all the power of the Site Editor for customizing for Sensei templates, as seen in the Lesson template below.</p>\n\n\n\n<img />\n\n\n\n<img />\n\n\n\n<p>Although Course is ideal for website owners who are selling courses, the theme is also flexible to be used without Sensei for other purposes like blogging, coaching, and small businesses. Course isn&#8217;t easy to find if you&#8217;re hunting for block themes, as it doesn&#8217;t seem to be tagged as a block theme on WordPress.org. It&#8217;s <a href=\"https://wordpress.org/themes/course/\">free to download</a> in the official Themes Directory or <a href=\"https://senseilms.com/meet-course-a-new-free-block-theme-by-sensei/\">via the Sensei LMS website</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Dec 2022 20:44:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Do The Woo Community: Post-Black Friday with Katie Keith, Lesley Sim and Mark Westguard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73959\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/post-black-friday-with-katie-keith-lesley-sim-and-mark-westguard/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:472:\"<p>We chat with three WordPress plugin developers and ask them how Black Friday turned out this year including some great insights and perspectives.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/post-black-friday-with-katie-keith-lesley-sim-and-mark-westguard/\">Post-Black Friday with Katie Keith, Lesley Sim and Mark Westguard</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Dec 2022 10:18:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: The Block Editor Is Coming to WordPress’ Support Forums\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/the-block-editor-is-coming-to-wordpress-support-forums\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2880:\"<p>The block editor was introduced to WordPress in 2018 and has matured into a more user-friendly tool for expression over the past four years. WordPress.org&#8217;s Meta Team is now experimenting with how they can <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">bring the block editor into the support forums</a>. That they are even considering this is a testament to how far the block editor has come, as the support forums provide a critical lifeline for WordPress users who are struggling with their websites and wouldn&#8217;t benefit from adopting a buggy editor.</p>\n\n\n\n<p>&#8220;The support forums have a long history in WordPress,&#8221; Automattic-sponsored contributor Alvaro Gómez said. &#8220;So much so that the current forum editor predates TinyMCE. By introducing blocks, the support forum will make use of the modern WordPress editor to improve user experience. Users will be able to easily insert links, share code or embed screenshots. Using Blocks will also enable new possibilities, such as using patterns for common responses to allow for faster answers.&#8221;</p>\n\n\n\n<p>Due to the technical difficulty of how the forums currently work, the block editor would need to be rolled out to all users on all forums, precluding the possibility of rolling it out on a per-user, per-language, or per-forum basis.</p>\n\n\n\n<p>In a <a href=\"https://meta.trac.wordpress.org/ticket/6608\">ticket</a> opened six days ago, Meta contributors discussed bringing the block editor to the support forums using the <a href=\"https://wordpress.org/plugins/blocks-everywhere/\">Blocks Everywhere</a> plugin by Automattic. This plugin switches the default WordPress editor for comments, bbPress, BuddyPress, and admin moderation to use Gutenberg, giving users access to blocks. Instead of bundling Gutenberg, it side-loads the editor from WordPress.</p>\n\n\n\n<p>The Meta and Support teams intend to start with just four blocks available to forum users: paragraph, list, quote, and code.</p>\n\n\n\n<p>Gómez shared a few GIFs from a test site, demonstrating a user responding on a thread using the block editor:</p>\n\n\n\n<img />\n\n\n\n<p>Another item on the roadmap is creating an &#8220;add via URL&#8221; image block that would allow users to embed from various image hosting services.</p>\n\n\n\n<p>A live testing site is available at <a href=\"https://test.wordpress.org/support/\">https://test.wordpress.org/support/</a> and anyone who wants to join in the testing can leave a comment on the <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">announcement post</a>. Bugs can be filed on the meta trac <a href=\"https://meta.trac.wordpress.org/ticket/6608\">ticket</a> for the improvement to the forums. The Meta and Support teams are looking for feedback before Monday, December 12.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 23:40:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"Post Status: Annual Survey • State of the Word 2022 • LearnWP Site Updates • Block Editor in Support Forums • Dev Guide to Block Theme Course Pt2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=145643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"https://poststatus.com/annual-survey-state-of-the-word-2022-learnwp-site-updates-block-editor-in-support-forums-dev-guide-to-block-theme-course-pt2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13813:\"<h2 id=\"h-this-week-at-wordpress-org-december-5-2022\">This Week at WordPress.org (December 5, 2022)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">It\'s time once again to share your feedback about all things WordPress in the 2022 survey. Tune in next week to hear Matt Mullenweg during is annual address: State of the Word. When submitting issues in the WordPress forums, you\'ll soon find several blocks to use in the editor. #LearnWP has site updates and a new block theme course for developers. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div id=\"kt-info-box_68609b-a8\" class=\"wp-block-kadence-infobox\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kt-info-svg-icon kt-info-svg-icon-fe_checkSquare\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">2022 Survey, SotW, LearnWP Updates</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f3eb.png\" alt=\"👩🏻‍🏫\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">Learn WordPress Site Updates – December 2022</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d1-1f3ff-200d-1f4bb.png\" alt=\"🧑🏿‍💻\" class=\"wp-smiley\" /> <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64b-1f3fd-200d-2642-fe0f.png\" alt=\"🙋🏽‍♂️\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a><br />><br /></a><br /><br />><br /></a><br /><br /></p></div></div></div>\n\n\n\n<h2 id=\"h-news\">News<a href=\"https://wordpress.org/news/2022/10/wordpress-6-1-release-candidate-3/\"></a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Share Your Experience: The 2022 WordPress Survey is Open</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">People of WordPress: Huanyi Chuang</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_121b9e-cb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"is-layout-flex wp-container-41 wp-block-columns\">\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2022/12/02/call-for-team-rep-nomination-december-2022/\">Call for Team Rep Nomination – December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-community\">Community</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2022/12/06/wordcamp-mentors-december-check-in/\">WordCamp Mentors’ December check-in!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">Proposed 2023 Global Community Sponsorship Program</a></li>\n</ul>\n\n\n\n<h2 id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/05/a-week-in-core-december-5-2022/\">A Week in Core – December 5, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/02/core-team-reps-for-2023-submit-your-votes/\">Core Team Reps for 2023: Submit Your Votes</a></li>\n</ul>\n\n\n\n<h3 id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/07/devchat-agenda-december-7-2022/\">Devchat agenda, December 7, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/06/editor-chat-agenda-december-7-2022/\">Editor Chat Agenda: December 7, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/06/editor-chat-summary-wednesday-november-30-2022/\">Editor chat summary: Wednesday, November 30 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/30/dev-chat-summary-wednesday-november-30-2022/\">Dev Chat summary: Wednesday, November 30, 2022</a></li>\n</ul>\n\n\n\n<h3 id=\"h-dev-blog\"><a href=\"https://developer.wordpress.org/news/\">Dev Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/12/07/leveraging-theme-json-and-per-block-styles-for-more-performant-themes/\">Leveraging theme.json and per-block styles for more performant themes</a></li>\n</ul>\n\n\n\n<h2 id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/05/documentation-team-update-december-5-2022/\">Documentation Team Update – December 5, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2022/12/07/agenda-global-wordpress-marketing-team-meeting-december-7-2022/\">Agenda: global WordPress marketing team meeting, December 7, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2022/12/06/call-for-testing-wordpress-for-android-21-3/\">Call for Testing: WordPress for Android 21.3</a></li>\n</ul>\n\n\n\n<h2 id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2022/12/07/community-meeting-recap-7-december-2022/\">Community Meeting Recap (7 December 2022)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/12/06/performance-team-meeting-summary-6-december-2022/\">Performance Chat Summary: 6 December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2022/11/30/core-performance-team-update-november-30-2022/\">Core Performance Team Update – November 30, 2022</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"is-layout-flow wp-block-column\">\n<h2 id=\"h-polyglots\">Polyglots</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2022/12/06/agenda-weekly-polyglots-chat-dec-07-2022-1300-utc/\">Agenda: Weekly Polyglots Chat – Dec. 07, 2022 (13:00 UTC)</a></li>\n</ul>\n\n\n\n<h2 id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">Introducing the Block Editor in the Support Forums</a></li>\n</ul>\n\n\n\n<h2 id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/05/test-team-update-5-december-2022/\">Test Team Update: 5 December 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-themes\"><a href=\"https://make.wordpress.org/themes\">Themes</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2022/12/06/themes-team-update-december-06-2022/\">Themes team update December 06, 2022</a></li>\n</ul>\n\n\n\n<h2 id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/individual-learner-survey/\">How did you learn WordPress?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/06/vote-for-training-team-rep-2023/\">Vote for Training Team Rep 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">Learn WordPress Site Updates – December 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/05/meeting-agenda-for-december-6-2022/\">Meeting Agenda for December 6, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/05/training-team-meeting-recap-for-november-29-2022/\">Training Team Meeting Recap for November 29, 2022</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2022/12/05/november-month-retrospective/\">November Month Retrospective</a></li>\n</ul>\n\n\n\n<h3 id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">A Developers Guide to Block Themes – Part 2</a></li>\n</ul>\n\n\n\n<h3 id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-theme-with-the-create-block-theme-plugin-session-1\">Creating a Theme with the Create Block Theme Plugin Session 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=creating-a-theme-with-the-create-block-theme-plugin-session-2\">Creating a Theme with the Create Block Theme Plugin Session 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-category-templates-and-the-query-loop-block-session-2\">Exploring Category Templates and the Query Loop Block Session 2</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-category-templates-and-the-query-loop-block-session-1\">Exploring Category Templates and the Query Loop Block Session 1</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-developing-blocks-without-react-block-supports\">Let’s code: Developing Blocks without React! – Block Supports</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-development-live-stream-developing-blocks-without-react-block-supports\">WordPress development live stream: Developing Blocks without React – Block Supports</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-test-with-report-a-core-trac-ticket-bangla\">How to Test (with Report) a Core Trac Ticket | Bangla</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-own-your-expertise-start-speaking-at-wordpress-events-wpdiversity\">How to Own Your Expertise & Start Speaking at WordPress Events #WPDiversity</a></li>\n</ul>\n\n\n\n<h2 id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://phpconference.com/berlin-en/\">International PHP Conference Berlin 2023</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status\' <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://cdn.poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 18:17:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: #54 – Steve Burge on Where We’re at With Multi-Author Collaboration in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=140125\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://wptavern.com/podcast/54-steve-burge-on-where-were-at-with-multi-author-collaboration-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:44172:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, multi-author collaboration in WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, well, I&#8217;m very keen to hear from you. And hopefully get you, or your idea, featured on the show. Head over to WPTavern.com forward slash contact forward slash jukebox. And use the form there.</p>\n\n\n\n<p>So on the podcast today we have Steve Burge. Although Steve is originally from England, he now lives in Sarasota, Florida. He leads the team at PublishedPress, which is a plugin company focusing on improving the publishing experience for WordPress users. The topic of today&#8217;s podcast is very much in his wheelhouse.</p>\n\n\n\n<p>Several years ago, the block editor was brought into WordPress core. It was a dramatic change from the classic editor. Pages and posts could be created and edited with a growing variety of blocks. Blocks for paragraphs blocks for images, in fact blocks for everything.</p>\n\n\n\n<p>This ability to edit content with blocks was just one of four phases of the Gutenberg project. The other three phases being site editing, multi-author collaboration and multi-lingual support.</p>\n\n\n\n<p>If you&#8217;ve been following recent developments, then you&#8217;ll know that we&#8217;re currently in the site editing phase. And when that&#8217;s done, it will be time to turn our collective attention to multi-author collaboration.</p>\n\n\n\n<p>But what is that? And what does it mean? I think that the best way to think about this would be to imagine Google docs. For years, you&#8217;ve been able to open up a document, click a button and share that document with others. Those with the correct permissions can interact with you in real time. And you can see the amendments they&#8217;re making as and when they&#8217;re making them. It&#8217;s utterly brilliant, and how most people would prefer to work with their content. One document. One source of truth.</p>\n\n\n\n<p>Compare that to how WordPress currently works. Only one person can edit a piece of content at the same time. If you want to edit a post or a page at the same time as someone else, you can&#8217;t.</p>\n\n\n\n<p>Phase three of the Gutenberg project aims to bring into WordPress the ability for multiple users to interact with content at the same time. Steve talks today about why this is an elegant and necessary update to WordPress. But also why it&#8217;s a difficult feat of engineering to pull off.</p>\n\n\n\n<p>WordPress has a history of working with all manner of hosting configurations, and it&#8217;s one of the reasons that it&#8217;s so successful. Will it be possible to run WordPress on more affordable tech stacks given the burden that multi author collaboration will require?</p>\n\n\n\n<p>We also get into the projects that Steve has found from community members, which try to lay some of the foundations of how this might be implemented, as well as talking about how Steve&#8217;s finding it hard to discover new information concerning this important topic.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more. You can find all the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Steve Burge.</p>\n\n\n\n<p>I am joined on the podcast today by Steve Burge. Hello Steve.</p>\n\n\n\n<p>[00:04:29] <strong>Steve Burge:</strong> Hey, Nathan.</p>\n\n\n\n<p>[00:04:30] <strong>Nathan Wrigley:</strong> Steve and I met not that long ago. It was WordCamp US. We met for the very first time. Because he was at WordCamp US, you can pretty much guarantee that he&#8217;s into WordPress. But as we always do at the beginning of the podcast episode, just to orientate the listeners, Steve, about who you are and what your relationship is with WordPress. You can go back as far as you like, could be last year, could be 10 years ago. Tell us a bit about your WordPress journey, and then we&#8217;ll get into the subject of today&#8217;s podcast.</p>\n\n\n\n<p>[00:04:57] <strong>Steve Burge:</strong> Sure thing. I&#8217;m from England. I live in Florida in the US, and I&#8217;ve been dabbling in open source since about 2003, 2004 or so. And ran a training company for a long time called OS Training, and we were involved in publishing. We published a lot of videos and also a whole series of books on WordPress, Drupal, Magento, php. And about five years ago flipped into developing plugins, and so we went right into the publishing side of WordPress plugins.</p>\n\n\n\n<p>So we run three different plugin brands now, all focused on publishing. One is PublishPress, one is TaxoPress and one is Meta Slider. And that&#8217;s really kind of what led me to this interest in Gutenberg phase three. We work with a lot of publishers and to have the kind of collaborative editing that should be coming in phase three is really exciting for a lot of them.</p>\n\n\n\n<p>[00:05:55] <strong>Nathan Wrigley:</strong> Can I just pause the podcast general subject, which is, as you&#8217;ve just described the Gutenberg editor and phase three in particular, collaborative editing. Can I ask, because you ran OS Training, which I&#8217;m sure many people will have heard of, they might have books on their shelf or content on the computer and used it in the past. I certainly did. When you came into WordPress, was it your experience from having a real deep background in publishing that made you interested in publishing inside of WordPress? Because obviously your career now is very much tied up with publishing content, collaborative publishing permissions, and so on.</p>\n\n\n\n<p>[00:06:31] <strong>Steve Burge:</strong> Yes, partly. We had to do a lot of co-authoring of books. I wrote initially the first three or four books in our series, and then we started to work with authors. We had to do a lot of co-authoring. We worked with some big publishers like Pearson, and often collaboration involved, sending Word documents back and forth endlessly.</p>\n\n\n\n<p>And so you are working on chapter three. The first draft would be chapter_2.1 .doc. You&#8217;d edit it, send the Word document back, word document back and forth, and collaborative editing in those days would mean you got to like 250 Word documents for chapter two, and the name would be confused and you&#8217;d make an edit and your editor would say, oh, which document are we working on?</p>\n\n\n\n<p>I think I worked on the wrong document. I imagine now if we were able to do that kind of book publishing, but collaboratively online in something like a Google Docs style environment, my life would&#8217;ve been much, much easier.</p>\n\n\n\n<p>[00:07:29] <strong>Nathan Wrigley:</strong> I&#8217;m kind of imagining that literally anybody under the age of 25, is probably completely unfamiliar with a world in which technology wasn&#8217;t synchronous. So I don&#8217;t exactly remember the date it happened, but the first time I ever saw synchronous editing on a screen was, I guess I was sitting in my house and Google came out with a product called Google Wave.</p>\n\n\n\n<p>I don&#8217;t know if you remember that? Much like a lot of Google properties it&#8217;s now been mothballed and no longer in existence. But essentially for the very first time, you could open a document in a browser and you were able to see other people&#8217;s edits in real time. The cursor would appear and it would&#8217;ve a different color, and you could see that Joseph over here was writing text and Pauline over here, she was writing texts and it was all happening on the screen at the same time.</p>\n\n\n\n<p>And I remember at that point feeling that it was sublimely clever. I genuinely mean that. I&#8217;m not just saying that for the purposes of this podcast. I really did have a moment where breathed in and thought, boy, we&#8217;re not going back from here. This is the way it&#8217;s always going to be done from now on. It&#8217;s completely normal. Just about everybody, I would imagine, like I say, under the age of 25 is probably, this is the only way to do things.</p>\n\n\n\n<p>You can hand documents in online easily, and your tutors or peers or whoever it might be, your boss, can give you realtime feedback. And there&#8217;s one canonical version of the document, so you don&#8217;t have to keep sending it via email and adding .1, .2, .3 to the end of it, and so on. And it just seems that&#8217;s so straightforwardly the way it should be done.</p>\n\n\n\n<p>[00:09:05] <strong>Steve Burge:</strong> You end up with a, an undo and a back and forward button and everything is just, there&#8217;s no revisions. There&#8217;s, well, technically there are revisions, I guess, but so much easier to handle. I guess the big difference is all of those are often done on one central platform. Google Drive, Google Wave, back in the day. Just yesterday my kid was doing her homework with a friend and they were doing this collaborative editing online.</p>\n\n\n\n<p>This was Microsoft, because that&#8217;s what the school gives them. They&#8217;re on FaceTime, happily chatting back and forth while working on the shared document. But all of that was done on a big central shared server, on the Microsoft server or the Google servers. And it does get more complicated when it comes down to doing that.</p>\n\n\n\n<p>[00:09:49] <strong>Nathan Wrigley:</strong> Yeah so, we&#8217;ve got all of this positivity around collaborative editing, and the fact that more or less, everybody now understands that paradigm, and it basically is the way to edit documents, for most people at least anyway. You may have instances where you just want something to be completely private and you don&#8217;t want it to be in the cloud, and so it is still done in a, an old fashioned document, which is saved away, and you edit it yourself, that&#8217;s fine.</p>\n\n\n\n<p>But then you open up a WordPress website and you are confronted with a completely different paradigm. You&#8217;ve got the option to create content of whatever type you like, text and images may be the, the most common use case. But you are utterly constrained in your collaborations. The best that you&#8217;ve got at the moment is, you go to edit a document, if somebody else is editing it, you get a little warning telling you that somebody else is editing and you can either back out or you can take over. In other words, you can kick them out, and they&#8217;re your two choices. And so it must seem to people coming to WordPress, like I say, under the age of 25, let&#8217;s keep going with that paradigm.</p>\n\n\n\n<p>It must seem that WordPress is something from like a time machine. What do you mean I can&#8217;t edit it at the same time? Of course I must be, I&#8217;m doing something wrong. But it cannot be done at the moment, but it is in the pipeline. And maybe Steve, you could just lay out the four phases of the Gutenberg project so that we can see where this fits into that jigsaw puzzle.</p>\n\n\n\n<p>[00:11:19] <strong>Steve Burge:</strong> Sure thing. So this dates back to about 2018 or so, when, I think that was when Matt said we&#8217;re not just doing Gutenberg, but Gutenberg is going to be a big four phase product. We&#8217;re going to have one, the actual Gutenberg editor inside the posts. And that one shipped in WordPress 5.0. Then we would tackle full site editing, which I think has just been renamed to the site editor.</p>\n\n\n\n<p>[00:11:51] <strong>Nathan Wrigley:</strong> That&#8217;s right.</p>\n\n\n\n<p>[00:11:52] <strong>Steve Burge:</strong> And that one shipped at the beginning of this year I think, in 5.9.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> I think 5.9 was what&#8217;s in my head.</p>\n\n\n\n<p>[00:11:59] <strong>Steve Burge:</strong> And we are in that stage two, which is customization. And then they&#8217;re going to be two more phases. And one we&#8217;re talking about is the next one up, phase three, called collaboration, which has the Google Doc style editing.</p>\n\n\n\n<p>And then the fourth and final one is going to be multilingual, where inside the core you&#8217;re going to be able to translate every element of WordPress.</p>\n\n\n\n<p>[00:12:23] <strong>Nathan Wrigley:</strong> Okay, so phase three is going to be the main thrust of this podcast. So this is basically what we&#8217;ve just talked about. The ability for multiple people to concurrently edit and leave comments and you visually see on the screen what other people are doing as they&#8217;re doing it. So, I guess the question to begin with is why hasn&#8217;t this been done already? And I don&#8217;t mean that in a cantankerous way. I literally mean to serve that on a plate. Are you able to give an explanation of why this hasn&#8217;t been done already?</p>\n\n\n\n<p>[00:12:57] <strong>Steve Burge:</strong> There are limited resources, and Gutenberg itself was a big project, a big changeover. We still see probably equal usage between Gutenberg and classic editor in the support tickets we get. And then there&#8217;s all the other page builders too. And then an even bigger project was the full site editing, which is still ongoing now.</p>\n\n\n\n<p>So the resources have been constrained. It takes a very big team, working very hard, simply to ship what we&#8217;ve been able to ship so far. So that&#8217;s part of it. And also the collaborative editing is just going to be a, quite a difficult challenge I think. Technically, it&#8217;s one thing to run collaborative editing on your Google servers with Google Docs, where you are in control of just about everything.</p>\n\n\n\n<p>But, if you try and do something similar on a $2 a month hosting company, which WordPress is going to have to do, because almost any WordPress feature you ship has to work on any WordPress site anywhere. That&#8217;s when the challenge comes in. If everyone was hosted on WP Engine or WordPress VIP, we probably would&#8217;ve had this already. But actually rolling it out to 50% of the web, and all the different hosting configurations, it&#8217;s going to be a challenge, a technical challenge.</p>\n\n\n\n<p>[00:14:17] <strong>Nathan Wrigley:</strong> So two reasons there. The first one is the amount of time it&#8217;s taken to get through the first, well, the first stage. And then we&#8217;re, as you said, we&#8217;re in the second stage, the full site editing. I&#8217;m going to link in the show notes to an article that you wrote over on Publish Press several years ago, actually it was 2019. In fact it was almost exactly three years ago. It was written in November, 2019.</p>\n\n\n\n<p>And at that point you were talking about getting through full site editing, getting through stage one and two, customization, full site editing, and then eventually landing on the collaborative side of things. It was interesting because back then, much more, probably confident in the ability to get through those first two stages because you were pointing to perhaps a date of 2020.</p>\n\n\n\n<p>[00:15:03] <strong>Steve Burge:</strong> Oh yeah. Blame me. Those are my guesses.</p>\n\n\n\n<p>[00:15:05] <strong>Nathan Wrigley:</strong> That&#8217;s right. But it just goes to show, doesn&#8217;t it, especially the full sight editing is taking a lot longer. And there was never a flag in the sand which said, this is going to be the date that we&#8217;re going to begin. It was very much, these are the things that we want to achieve, but there&#8217;s no date in mind. So it took a lot longer.</p>\n\n\n\n<p>And then you mentioned the fact that yes, it&#8217;s all very well working on Microsoft products or Google products, but they own all of that. They&#8217;ve got the infrastructure and it&#8217;s probably, let&#8217;s be honest, pretty impressive infrastructure. And they own the full tech stack, so they can make sure that everything works, and your Google Doc is going to work seamlessly, no matter what level of computing you have at home. You don&#8217;t need a particularly fast computer. It&#8217;s all handled on their end.</p>\n\n\n\n<p>WordPress has a completely different problem. Some people spend a fortune on their hosting because they need it and they&#8217;re happy to do that. Other people spend very little. Sometimes, really, it can be incredibly affordable.</p>\n\n\n\n<p>Are you able to, I don&#8217;t know if you are, but are you able to go into the technicalities of why cheap hosting wouldn&#8217;t be suitable for, let&#8217;s say something like Google Docs at the moment? In other words, what&#8217;s actually happening when a page is open that two or more people are trying to edit on. And does the problem scale?</p>\n\n\n\n<p>If there&#8217;s five people editing, is it more resource heavy than if there&#8217;s two people editing or 10 people editing, what have you? So are you able to discuss what the problems are from a technical point of view a little bit?</p>\n\n\n\n<p>[00:16:40] <strong>Steve Burge:</strong> I&#8217;m not a hardcore developer enough to dig too deep into this without embarrassing myself, but it is very process heavy, and you need some kind of a central server or perhaps a peer-to-peer network that is able to be a central source of truth for what is the latest update and to connect the two together.</p>\n\n\n\n<p>I&#8217;ve looked at different approaches that people have taken to doing this. One of the most common ways is web sockets. Which are able to update the content on the screen without refreshing the whole page. Which is a key part of this because both people need to see their page refreshing in real time.</p>\n\n\n\n<p>A few years ago that was impressive to do with Ajax. We&#8217;re doing a much more advanced version of that now with both people seeing live updates on the content without refreshing their page. So you need some way to connect the two or three or four or five people who are doing those updates.</p>\n\n\n\n<p>And web sockets is perhaps the most popular way to do it. It&#8217;s basically an API to send messages and responses back and forth. But the limitation there is, some of the low budget hosting companies are not able to do it. And you do need some kind of a central service.</p>\n\n\n\n<p>Part of me wonders whether, I don&#8217;t know if they would do this, but if they&#8217;ve thought about perhaps running it through the WordPress.com or WordPress.org infrastructure, in order to make this work for low end hosts. Because they do need some kind of, like Google servers or Microsoft servers, some kind of centralized server would be a massive benefit to this.</p>\n\n\n\n<p>The alternative, which I&#8217;ve dug into most, is from a company called Tag One in Europe. They&#8217;re like a big, a big agency and they&#8217;ve been developing a script called YJS, which allows you to do collaborative editing through a peer to peer network.</p>\n\n\n\n<p>It&#8217;s a pretty different solution to web sockets, but it seems to be, and I&#8217;m guessing here, the one that the Gutenberg team have taken on board. There seems to have been a bit of radio silence on the technical side of things. We&#8217;ve seen Matt mention phase three at a couple of State of the Words. He talked about it in Europe a little bit, in Lisbon.</p>\n\n\n\n<p>But I&#8217;ve been trying to pull the strings on the technical side of things on GitHub, and there&#8217;s not much there at the moment. I think from what I&#8217;ve been told, that there&#8217;s action going on in private. They&#8217;re working on it in the background and perhaps on some private repositories. But the only real thing that&#8217;s emerged, at least, someone feel free to correct me on this, is a script called an Isolated Block Editor, which basically takes Gutenberg as a kind of standalone product that I think could be used in Tumblr, or the Day one app, or Drupal or anywhere else. And it&#8217;s kind of building in collaborative editing into that isolated block editor, which is a version of Gutenberg.</p>\n\n\n\n<p>So really the technical hints that I&#8217;ve heard about this, are two or three years old. We did a big interview on the PublishPress blog with the YJS team, where they dig into some of the technical challenges around this. But from everything I&#8217;ve been able to read or talk about with people, it&#8217;s a real technical challenge.</p>\n\n\n\n<p>The CK Editor team, WordPress uses TinyMCE. CK Editor is kind of an alternative to TinyMCE. They have a really long and detailed blog post about how they tried to build collaborative editing into their, into their editor editor. It took four plus years, and I think ended up with lots of them tearing their hair out and growing prematurely gray. And there&#8217;s a Twitter thread from a guy who tried to do this with Microsoft Office. He basically says the same thing. Just an enormous technical challenge is particularly in retrospect, to try and take existing software and add collaborative editing to it. But, and this is one of the reasons why I wonder if they&#8217;re thinking about some kind of a central server, for example, WordPress.com.</p>\n\n\n\n<p>We&#8217;re finally starting to see the possibility of collaborative editing coming soon. Automattic have a product called P2, which is I think used for their internal blogs, their internal networking. And just in the last month or so, they have an update on the P two blog. They&#8217;ve been rolling out collaborative editing to some of their P2 users. I don&#8217;t know if I&#8217;m on a blacklist or something, but I&#8217;ve been sending several messages to the WordPress.com staff seeing if I can get in on the beta invite list. But no luck so far. So collaborative editing is actually live on WordPress.com for some users at the moment, and I can share the link that you can put in the show notes.</p>\n\n\n\n<p>But down in their, in the documentation they have about it, they say that it&#8217;s a work in progress, it&#8217;s a beta. It can become unstable under some circumstances. If you are running a VPN or some kind of a proxy, often if you&#8217;re using Safari, it can become unstable.</p>\n\n\n\n<p>It is kind of a long winded answer to your original question. The technical side is a little bit of a mystery still. I suspect that YJS will play a part. I suspect they may be working on some kind of a central server to make it stable to run on those $2 a month hosting companies. And if you go over to the P2 area on WordPress.com, there&#8217;s a little video of it emerging, and collaborative, editing, we may start to see a lot more of it in the next few months suspect.</p>\n\n\n\n<p>[00:22:24] <strong>Nathan Wrigley:</strong> There was a lot in there, wasn&#8217;t there? And I&#8217;m just going to go through some of the thoughts that were coming into my head as you were saying it. So the first one is obviously people like Google, they&#8217;ve completely cracked this nut. I cannot remember a time at any point where my Google doc froze, for example. Or I was editing it with somebody else, and they seemed to sort of blip out of existence. Suddenly 20 lines got updated when it looked like they weren&#8217;t even editing the document. In other words, they were always typing. I could see them typing. It was as if they were right next to me in many senses. No problems in other words.</p>\n\n\n\n<p>[00:23:04] <strong>Steve Burge:</strong> Is a beautiful experience when it works well, right?</p>\n\n\n\n<p>[00:23:06] <strong>Nathan Wrigley:</strong> But I&#8217;m guessing that could be the problem, couldn&#8217;t it? You know, if somebody has infrastructure running their WordPress website, and it simply isn&#8217;t up to the task. I don&#8217;t fully understand what that means, but we all know that computers given a certain volume of things to do, tend to grind down and prioritize some things over others, and in some cases just cease to function and collapse. But if you were editing a document, you mentioned a source of truth. You have to know, don&#8217;t you? You really have to be confident that what you are seeing on the screen now, is what the final version is looking like.</p>\n\n\n\n<p>You can&#8217;t be in a situation where, I&#8217;ve got you Steve over there. You are editing, I&#8217;m editing this document, and it looks to me like you finished because you are no longer contributing. And it turns out you&#8217;d written another couple of hundred words, which never made it into the document because your system collapsed in the background. And I didn&#8217;t know about that, and that would truly be a calamity.</p>\n\n\n\n<p>You can also imagine collisions in terms of things getting overwritten or me saving a document in some way that then removes the possibility of your a hundred words ever making it in there in the first place. So there&#8217;s all these really big problems and as you say, the very fact that we are all using different qualities of hardware, different computers, different versions of Linux, all sorts of different engines going on in the background, powering our websites.</p>\n\n\n\n<p>There has to be some way of figuring out what the source of truth is at this moment. And I really do, kind of understand a little bit more now that that really is genuinely a tricky challenge and one that perhaps hasn&#8217;t been faced by another company. Also, your idea of it being a dot com type thing. In other words, this capability is offloaded to, let&#8217;s say, some sort of Automattic property.</p>\n\n\n\n<p>[00:24:59] <strong>Steve Burge:</strong> I would put a caveat in there that that is entirely my guess. I have no, no evidence to that at all. I&#8217;ve just been thinking through possible solutions to the problem.</p>\n\n\n\n<p>[00:25:09] <strong>Nathan Wrigley:</strong> But I find that to be quite an interesting solution. So again, let&#8217;s assume that this collaborative editing is something that everybody aspires to. But we can also agree that if you have incredibly modest hosting, it may be something that your aspirations aren&#8217;t living up to.</p>\n\n\n\n<p>Well, maybe there is a sort of commercial angle for having that capability built on top of affordable hosting, if you know what I mean. In other words, WordPress.com, whichever company it may be, I don&#8217;t know. There&#8217;s some kind of upgrade. You have a WordPress website, but you would like the collaborative editing capability to be added in, simply because you know that your infrastructure can&#8217;t cope with it.</p>\n\n\n\n<p>Now, that&#8217;s less than ideal. I think it would be the ideal that any architecture can cope with it. That would be obviously ideal. But it was an interesting thought, and it just sort of prompted me to think, I wonder if even a company as large as Automattic, I wonder if they could saddle the burden of all of that given that there wouldn&#8217;t be any commercial side to paying off that debt, if you know what I mean.</p>\n\n\n\n<p>If there&#8217;s 40% of the web, let&#8217;s say 20% of those websites can&#8217;t manage it, and so they&#8217;re doing their collaborative editing on Automattic&#8217;s hardware. Presumably there&#8217;s a bill for that, which would need to be paid.</p>\n\n\n\n<p>[00:26:33] <strong>Steve Burge:</strong> I mean, that&#8217;s part of the problem of being WordPress, right? You&#8217;re trying to solve problems at a scale that no one else has ever solved it. We talked about CK Editor for example, Well, CK Editor has collaborative editing. It took them four years and just about burned out some of the best developers. But there were tiny fraction of the size of WordPress, and what WordPress needs to do. I guess until we, until more of this starts to emerge, perhaps when the full site editing winds down, we&#8217;re not going to know too much.</p>\n\n\n\n<p>But I think the two options available are either to build a peer to peer network, using something like YJS or to go through the centralized option of WordPress.com .org or an other service.</p>\n\n\n\n<p>[00:27:19] <strong>Nathan Wrigley:</strong> I wonder if there&#8217;s other options that could be explored. And forgive me, my technical ignorance here might be screaming loudly at you as I say these words, but I wonder if it might be possible to have a scenario in which you are alerted to the fact that changes have been made, but you have to, I don&#8217;t know, maybe click a button or.</p>\n\n\n\n<p>[00:27:42] <strong>Steve Burge:</strong> We have lost a connection. There&#8217;d be some kind of mess. I guess the most common point of failure for collaborative editing will probably be, the connection is lost, and each person goes back to editing their own separate version of the document. You just lose the collaboration aspect, and there could be some kind of message saying you have disconnected from the collaborative editing, you have disconnected from the network.</p>\n\n\n\n<p>[00:28:03] <strong>Nathan Wrigley:</strong> Yes. And of course that throws up all sorts of enormously difficult problems on its own. Because then, let&#8217;s say there&#8217;s four people editing the document, do they then carry on? And then those four people have to combine their efforts after the fact to figure out, okay, well what did you do? Which bit did you?</p>\n\n\n\n<p>Can we just copy and paste that in here now? In other words, it makes more of a mess than the old asynchronous way of doing things, where I edit it, hand it to you, you edit it, hand it to person three, they edit it, and it finally comes back to me. And at least I know that those three edits have been made. And that&#8217;s in the scenario of collapse that we just described, we&#8217;d be back to that basically. And obviously if we&#8217;re offering the promise of collaborative editing, you have to trust it.</p>\n\n\n\n<p>Another thought occurred to me is, does it need to be as beautiful, let&#8217;s say as Google Docs? And what I mean by that is, I can literally watch you type letter by letter. I&#8217;ll see each letter coming in one at a time. Does it need to refresh quite as often as that? Is a two second delay, a three second delay, a five second delay. I don&#8217;t know if this adds complexity. I don&#8217;t know if it solves any problems or creates others?</p>\n\n\n\n<p>[00:29:13] <strong>Steve Burge:</strong> Well, there is a video on the P2 site. Just a little five second video showing how this works. And it is just like Google Docs to be honest. It has the avatars of the people editing in the top right corner. Each person gets assigned the color. So, if there&#8217;s a little Nathan avatar on the top right, you might have red around your avatar, and any changes you make are being highlighted in red. I might have purple. Any changes I make are being highlighted in purple. It is, at least in this video, aiming right for the Google Drive, Google Docs experience.</p>\n\n\n\n<p>[00:29:49] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s interesting. In your article, I will link to it, and people can go and find it and there&#8217;s a couple of them in fact, and I&#8217;ll make sure to link to both of those. There was raised, and I can&#8217;t remember whether this was raised and then has now been put to bed, or if it was raised and is still a possibility. In order to try and do this, people are coming up with interesting and clever solutions to sidestep maybe some problems that were becoming obvious.</p>\n\n\n\n<p>The idea of being able to only edit the block that you are currently editing by yourself. So in other words, let&#8217;s say for example, if we&#8217;ve got a page and it&#8217;s got 50 paragraphs and a couple of images. I could edit one paragraph, but that paragraph would be locked to you. But all the other 49 paragraphs would be open to anybody. And the first person that gets in there, gets to edit it until they are in effect booted out.</p>\n\n\n\n<p>So we&#8217;d have a, an option, very similar to what we have now, on a page basis where I can&#8217;t get into the page if somebody else is editing it. We&#8217;d have that on a block by block basis. And I think in many cases that might satisfy 90%, 95% of the problems. What are the chances that I want to edit an image at the same time as you? What are the chances that I want to edit a paragraph at the same time as you? Maybe there&#8217;s a high chance of collision. I&#8217;m not sure.</p>\n\n\n\n<p>[00:31:05] <strong>Steve Burge:</strong> No, no, I think that kind of thing makes sense. And certainly, while we&#8217;re talking, I have the, the demo video playing on my screen in front of me. And that seems to be what they&#8217;re doing. That it is a block by block approach. I may be wrong. They may have something else in the background.</p>\n\n\n\n<p>But in the video that I&#8217;m watching, one person is editing the header, one person is editing a table, one person is editing a paragraph, and they&#8217;re working on the same document, but on different blocks.</p>\n\n\n\n<p>[00:31:32] <strong>Nathan Wrigley:</strong> One of the things that you introduced to me just before we hit the record button, was there&#8217;s a developer called Riad Benguella, and I&#8217;m sorry, Riad if that is in fact not how you say your name, I do apologize, but I&#8217;ll link to a website that you mentioned in a tweet. I&#8217;ll mention the tweet, and I&#8217;ll post the website URL as well. It&#8217;s Gutenberg with collaborative editing built into it. And you and I were editing on it, ala Google Docs. And it all seemed to work. So obviously there are people who are tackling this problem, but I&#8217;m sure the problem that, that we have here is that we don&#8217;t know what the tech stack is behind it that&#8217;s making it possible.</p>\n\n\n\n<p>We&#8217;re both looking at asblocks.com, a s b l o c k s .com, and you can go there. I suspect it&#8217;s going to be there for years to come, and share. The first person that logs in can share the link, assign themselves a name, and then presumably that shared link looks the same to you. You have to assign yourself a name and we can both see each other editing and it works as far as I can see perfectly.</p>\n\n\n\n<p>[00:32:32] <strong>Steve Burge:</strong> Yeah, Riad solved this problem two plus years ago with as blocks, and the demo is still live and still working now. It&#8217;s the, the scale out to every WordPress site that is the big stumbling block I presume.</p>\n\n\n\n<p>[00:32:47] <strong>Nathan Wrigley:</strong> Yeah, we just simply don&#8217;t know how many people are using this at the same time. And so the collapse of it might not be a problem. Do you have any insight or any kind of spidey sense of when things may start to move in this direction? So obviously we really have to get to the point where full site editing or site editing is more or less complete to the satisfaction of the majority of people, at least anyway. Then we&#8217;ll be working on this thorny problem. Do you have any conception of when the work on this will begin properly?</p>\n\n\n\n<p>[00:33:20] <strong>Steve Burge:</strong> I wish I did. To be honest, I&#8217;m a little geeky about this stuff and, our customers want it, and I really wanted it. It would be a wonderful feature for WordPress. So I&#8217;ve probably been following this as closely as anyone that isn&#8217;t actually involved on the technical side. Every time I Google Gutenberg phase three, I seem to come across something I wrote myself, because there&#8217;s not much written about it.</p>\n\n\n\n<p>It&#8217;s been done a little bit, not entirely under a veil of secrecy, but maybe they don&#8217;t want to distract from the focus on full site editing. But it has been hard to find information. And so I was happy to see something emerge on the P2 blog that this is in progress still. If I had to guess, we&#8217;ll start to see more next year. We&#8217;ve had a couple of mentions of it from Matt, I mentioned at different WordCamps, and Matias, who is one of the lead developers of Gutenberg since the beginning, has a blog post from June this year on WordPress.org talking about phase three, but really only tangentially.</p>\n\n\n\n<p>It was more about the ending of phase two and full site editing. And so there really has been a lot of radio silence. Quite a lot of the active GitHub repos have gone quiet. I hope next year. But as someone who follows this closely, I&#8217;ve not been able to find that anymore.</p>\n\n\n\n<p>[00:34:39] <strong>Nathan Wrigley:</strong> Everything that I&#8217;ve heard has stuck rigidly to the four phases of Gutenberg. I haven&#8217;t heard of anybody discounting phase three. So collaborative editing I think is definitely destined to be tackled, and hopefully succeeding in tackling. But you&#8217;re right, it&#8217;s been very, very quiet.</p>\n\n\n\n<p>Normally, there&#8217;s a lot of speculation. There might be more proofs of concept or people popping up, giving their insight into it. But as you say, you followed it really, really closely, and it&#8217;s, it&#8217;s almost like a veil of secrecy, as you said. So hopefully that doesn&#8217;t indicate anything negative. It just means that people are concentrating their efforts on other things and trying to get those things tackled.</p>\n\n\n\n<p>Steve, I&#8217;ve probably used up more of your time than I intended to. I&#8217;m sorry about that. Just before we go, if people want to talk to you about this whole proposition, collaborative editing, where&#8217;s the best place to reach out?</p>\n\n\n\n<p>[00:35:32] <strong>Steve Burge:</strong> steve@publishpress.com. And actually one of the reasons I wanted to talk about this topic with you was I hoped I might be able to shake a bit more information out of the tree. Someone hears this and has information about it, wants to talk about it, happy to do a video podcast or share the information.</p>\n\n\n\n<p>I would love to see this in WordPress. I&#8217;m happy to help. I&#8217;m sure they have the reasons for keeping it, for keeping it quiet to the moment. But, this would be a killer feature for WordPress, and if anyone has more information, I&#8217;d love to hear it.</p>\n\n\n\n<p>[00:36:00] <strong>Nathan Wrigley:</strong> I really think you are right. I think the realization of this in Gutenberg and if we had an implementation which worked basically effectively for everybody, the day it was released into WordPress core. I think it will really, would dramatically change the prospects of what people would wish to do with WordPress. At the moment it&#8217;s largely for websites.</p>\n\n\n\n<p>It really genuinely could be a tool for all sorts of internal communications and publishing things that just are for your close network, your job, your industry, whatever it might be. There&#8217;s a, there&#8217;s a whole lot that could happen that at the minute is probably left to the likes of Microsoft Teams and Google Docs and all of that kind of stuff, so.</p>\n\n\n\n<p>[00:36:43] <strong>Steve Burge:</strong> Well, it did pop up on P2 initially, which is the kind of WordPress versions of Google Docs, the kind of internal, Automattic, documentation system.</p>\n\n\n\n<p>[00:36:51] <strong>Nathan Wrigley:</strong> Yeah, thank you Steve for chatting to me today. I really appreciate it.</p>\n\n\n\n<p>[00:36:55] <strong>Steve Burge:</strong> Thanks, Nathan.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://steveburge.com/\">Steve Burge</a>.</p>\n\n\n\n<p>Although Steve is originally from England, he now lives in Sarasota, Florida. He leads the team at <a href=\"https://publishpress.com/\">PublishPress</a>, which is a plugin company focusing on improving the publishing experience for WordPress users. The topic of today&#8217;s podcast is very much in his wheelhouse.</p>\n\n\n\n<p>Several years ago, the block editor was brought into WordPress Core. It was a dramatic change from the classic editor. Pages and posts could be created and edited with a growing variety of blocks. Blocks for paragraphs, blocks for images, in fact, blocks for everything.</p>\n\n\n\n<p>This ability to edit content with blocks was just one of four phases of the Gutenberg project, the other three phases being, site editing, multi-author collaboration, and multilingual support.</p>\n\n\n\n<p>If you’ve been following recent developments, then you’ll know that we’re currently in the site editing phase. When that’s done, it will be time to turn our collective attention to multi-author collaboration. But what is that and what does it mean?</p>\n\n\n\n<p>I think that the best way to think about this would be to imagine Google Docs. For years, you’ve been able to open up a document, click a button and share that document with others. Those with the correct permissions can interact with you in real time, and you can see the amendments they’re making as and when they’re making them. It’s utterly brilliant, and how most people would prefer to work with their content. One document. One source of truth.</p>\n\n\n\n<p>Compare that to how WordPress currently works. Only one person can edit a piece of content at the same time. If you want to edit a post or a page at the same time as someone else, you can’t.</p>\n\n\n\n<p>Phase three of the Gutenberg project aims to bring into WordPress the ability for multiple users to interact with content at the same time.</p>\n\n\n\n<p>Steve talks today about why this is an elegant and necessary update to WordPress, but also why it’s a difficult feat of engineering to pull off. WordPress has a history of working with all manner of hosting configurations, and it’s one of the reasons that it’s so successful. Will it be possible to run WordPress on more affordable tech stacks given the burden that multi-author collaboration will require?</p>\n\n\n\n<p>We also get into the projects that Steve has found from community members which try to lay some of the foundations of how this might be implemented, as well as talking about how Steve’s finding it hard to discover new information concerning this important topic.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://publishpress.com/blog/google-docs-editing-gutenberg/\">Collaborative Editing is a Really Difficult Challenge in WordPress</a></p>\n\n\n\n<p><a href=\"https://p2help.wordpress.com/using-p2/the-editor/collaboration/\">P2 Beta launch and video</a></p>\n\n\n\n<p><a href=\"https://asblocks.com/\">AsBlocks</a></p>\n\n\n\n<p><a href=\"https://github.com/youknowriad/asblocks\">AsBlocks project on GitHub</a></p>\n\n\n\n<p><a href=\"https://github.com/Automattic/isolated-block-editor\">Automattic&#8217;s Isolated Block Editor on GitHub</a></p>\n\n\n\n<p><a href=\"https://yjs.dev/#intro\">YJS website</a></p>\n\n\n\n<p><a href=\"https://github.com/yjs/yjs\">YJS project on GitHub</a></p>\n\n\n\n<p><a href=\"https://publishpress.com/blog/yjs/\">Steve&#8217;s podcast with the Tag1 team about YJS</a></p>\n\n\n\n<p><a href=\"https://publishpress.com/blog/google-docs-editing-gutenberg/\">Steve&#8217;s post about why collaborative editing in Gutenberg is hard</a></p>\n\n\n\n<p><a href=\"https://ckeditor.com/blog/Lessons-learned-from-creating-a-rich-text-editor-with-real-time-collaboration/\">CKEditor post about lessons learned from creating a rich-text editor with real-time collaboration</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2022/06/13/thinking-through-the-wordpress-admin-experience/\">Matias Ventura&#8217;s post about thinking through the WordPress admin experience</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-6-1-to-focus-on-refining-full-site-editing-next-phase-collaboration-and-multilingual-features-anticipated-in-2023-2025\">WordPress 6.1 to Focus On Refining Full-Site Editing, Next Phase Collaboration and Multilingual Features Anticipated in 2023-2025</a></p>\n\n\n\n<p><a href=\"https://ostraining.com/\">OSTraining</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Google_Wave\">Google Wave</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Do the Woo is Headed to the State of the Word, NYC, Again\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/do-the-woo-is-headed-to-the-state-of-the-word-nyc-again/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:440:\"<p>I am lucky to be able to attend the event again and looking forward to connections, reflections and optimism around the community.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/do-the-woo-is-headed-to-the-state-of-the-word-nyc-again/\">Do the Woo is Headed to the State of the Word, NYC, Again</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"HeroPress: Blessings and curses of turning your hobby into a career – Välsignelser och förbannelser med att förvandla sin hobby till en karriär\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=4948\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:186:\"https://heropress.com/essays/blessings-and-curses-of-turning-your-hobby-into-a-career/#utm_source=rss&utm_medium=rss&utm_campaign=blessings-and-curses-of-turning-your-hobby-into-a-career\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:32039:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/12/120622-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Balance. That’s what I lost when I turned my hobby into a career.\" />\n<p><a href=\"https://heropress.com/feed/#svenska\">Den här essän finns även på svenska.</a></p>\n\n\n\n<p>Back in 2012, I was a media and communications student at Umeå University in northern Sweden. The overall state of the newspaper business had convinced me not to pursue a career in journalism, and I had figured the second best thing would be to work with media relations for a business or organization I’d feel passionate about. That’s about how much thought I put into my choice of education. With each lecture I attended and essay I handed in, I realized that I enjoyed studying media and communications, but I wasn’t overly excited about making it my career.</p>\n\n\n\n<p>Fortunately, the lectures and essays left me enough time to pursue other things as well. Girls, friends, parties – things you’re keen on when you’ve moved to a city 500 kilometers from home – but also side projects. Money is always tight when you’re a student. I had started to consider different ways of making money from the web tinkering I’d had as a hobby from an early age.</p>\n\n\n\n<p>I was aware that the business for selling premium WordPress themes was growing rapidly, with themes on websites like ThemeForest making immense amounts of money. Could that be a way to help pay the bills?</p>\n\n\n\n<h2 class=\"kt-adv-heading_564506-1f wp-block-kadence-advancedheading\">Finding WordPress</h2>\n\n\n\n<p>I have a very clear memory of the first time I wrote HTML. I was eleven years old, and I was browsing a popular link directory called Annas Länkburkar (”Annas link jars”) on one of the computers at school. The front page consisted of rows of jars, bottles, boxes and tea bags, each labeled with the type of links they contained. Somewhere in the dark blue bottle labeled ”Data”, I found a tutorial for writing simple web pages in HTML. My desktop was soon littered with .html files exploring the basics of coding web pages, all carefully written in Notepad. I learned that the email accounts my parents had at the web portal Spray came with member pages with HTML support, and I quickly planted a flag on my first plot of land on the World Wide Web. If I remember correctly, it had the memorable URL of http://medlem.spray.se followed by a random number sequence.</p>\n\n\n\n<p>I kept tinkering with web development over the next few years, learning CSS from a book in the library and trying and failing to wrap my head around JavaScript. I was aware of Content Management Systems, but since I couldn’t afford a host on my weekly allowance, I was limited to what I could accomplish on the free web hosts available at the time. I started to play around with other programming languages as well. I found C++ too complicated and Visual Basic dull, but QBasic struck the right balance for me and I built simple ASCII games with it for a while. As you can tell, I was a very cool kid.</p>\n\n\n\n<p>I switched schools when I was 15, and my interest in computers dipped for a while. Instead, I discovered Photoshop. Most of my output consisted of moody illustrations captioned with song lyrics – the main form of expression for 15-year-olds. I was also tricked into working with the school paper, which lit the spark for my interest in journalism and introduced me to InDesign.</p>\n\n\n\n<p>When I started high school, back in 2006, the blog phenomenon was just starting to take off in Sweden, and I was eager to jump on the bandwagon. I had gotten it in my head that I was going to develop indie games, and rather than actually spend my time developing games, I decided that the sensible thing to do was to create a blog about indie game development. This would mark the start of a lifelong habit of creating websites about my interests instead of practicing them. A Google search for after free blog services took me to WordPress.com. The service was only a little more than a year old at the time.</p>\n\n\n\n<p>I published my first blog post with WordPress on January 14, 2007. I can tell you the date with certainty because I’m looking at the post right now, but no, I won’t share it here. I have already told you about my moody Photoshop illustrations, and there are limits to how much I will embarrass myself in public. Despite the WordPress.com domain name and bad English, I somehow managed to trick a handful of game developers to be interviewed for the blog. Most notably, Doom and Quake co-creator John Romero. My final question was ”Pizza or hamburger?”. Maybe it’s for the best that I didn&#8217;t end up a journalist.</p>\n\n\n\n<p>My delusions about indie game development soon faded, but I hadn’t lost my interest in blogging. I had grown used to working with WordPress from my WordPress.com blog, so when it came time to register my own domain name and sign up for a proper host, the choice of CMS was an easy one. I dusted off my old HTML and CSS skills to make some small visual tweaks to the theme I was running, and I started to pick up a little bit of PHP as well. I soon realized that tinkering with the code was as much fun as writing blog posts.</p>\n\n\n\n<p>More sites quickly followed. One with news about Nintendo, one with news about Apple, one link directory, one with tutorials about blogging, one about the murder of Swedish prime minister Olof Palme, and so on. The last one is the only one of them <a href=\"https://palmemordet.se/\">online</a> today, although it has received a couple of visual updates since then. I still get emails from conspiracy loonies every month or so. Almost all of the sites were built with WordPress, usually with a tweaked free or premium theme. I kept updating them through my high school graduation, and after high school, a part time job at a small IT company led to me getting paid to write code for the first time. I still didn’t think of it as a possible career path. I had my eyes set on college.</p>\n\n\n\n<h2 class=\"kt-adv-heading_5ca9f6-a1 wp-block-kadence-advancedheading\">A career built on themes</h2>\n\n\n\n<p>Two years later, I was sitting in my student apartment in Umeå, thinking about building premium WordPress themes to help pay the bills. Having nothing to lose and spare time on my hands, I decided to give it a go. My first theme was a simple blog theme called Lasseter, named after former Pixar director John Lasseter, and it was released on Mojo Themes in August 2013 for $49. Realizing I needed some way to market my premium themes, I decided to develop free themes for the WordPress.org theme directory as well. Visitors would come to my site for the free themes, and hopefully decide to pay a couple of bucks for a premium theme instead. That was the plan. Things didn’t work out that way.</p>\n\n\n\n<p>I released my first free theme, <a href=\"https://andersnoren.se/teman/lingonberry-wordpress-theme/\">Lingonberry</a>, the same month as Lasseter. The Trac ticket for the theme is still <a href=\"https://themes.trac.wordpress.org/ticket/13558\">live</a>, and the list of issues I had to fix before the theme was approved is a mile long. <a href=\"https://heropress.com/essays/challenge-gladly-accepted/\">Carolina Nymark</a> of the WordPress.org Theme Review Team reviewed the theme, and she was very patient with me. I had no idea how little I knew about WordPress theme development before I submitted my first theme to WordPress.org. Seven years later, Carolina and I would be co-leads on the &lt;a href=\"http://&lt;!-- wp:paragraph --&gt; &lt;p&gt;I released my first free theme, &lt;a href=\"https://andersnoren.se/teman/lingonberry-wordpress-theme/\"&gt;Lingonberry&lt;/a&gt;, the same month as Lasseter. The Trac ticket for the theme is still &lt;a href=\"https://themes.trac.wordpress.org/ticket/13558\"&gt;live&lt;/a&gt;, and the list of issues I had to fix before the theme was approved is a mile long. Carolina Nymark of the WordPress.org Theme Review Team reviewed the theme, and she was very patient with me. I had no idea how little I knew about WordPress theme development before I submitted my first theme to WordPress.org. Seven years later, Carolina and I would be co-leads on the [Twenty Twenty](&lt;a href=\"https://wordpress.org/themes/twentytwenty/\"&gt;https://wordpress.org/themes/twentytwenty/&lt;/a&gt;) default theme in WordPress 5.3. I owe her and the other WordPress.org theme reviewers a lot.&lt;/p&gt; <!-- /wp:paragraph -&gt;\"&gt;-->Twenty Twenty</a> default theme in WordPress 5.3. I owe her and the other WordPress.org theme reviewers a lot.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/lingonberry-1680x1680-1.jpg\"><img /></a>Lingonberry, my first free WordPress theme.\n\n\n\n<p>There’s something special about seeing people take something you’ve built and do creative things with it, and when Lingonberry went live, it was exciting in a way I have a hard time putting into words. It made me realize I was a lot more eager to see my themes being used than I was making money from them. My next theme, <a href=\"https://andersnoren.se/teman/hemingway-wordpress-theme\">Hemingway</a>, was free as well. As was my next one, and the one after that, and all the themes that followed. After a year or two, I decided to remove Lasseter from sale. It had sold maybe ten copies at that point.&nbsp;</p>\n\n\n\n<p>During that same time, my free themes had been downloaded hundreds of thousands of times. I was starting to get requests about making paid adjustments to them, and in some cases, building completely custom themes. When I was a couple of months away from graduating college, I received an offer from Smashing WordPress author <a href=\"https://tdh.se\">Thord D. Hedengren</a> to come to Stockholm for a job interview at Odd Alice, his web agency. After 15 years of building web sites as a hobby, the offer was on the table to turn it into a career. I took it.</p>\n\n\n\n<h2 class=\"kt-adv-heading_74b792-05 wp-block-kadence-advancedheading\">The blessing and the curse</h2>\n\n\n\n<p>In the years that followed, I worked remotely for two years before I moved to Stockholm, went through a breakup, made friends for life and grew both as a person and as a theme developer, experienced a company merger and the implosion of said company, and became a freelancer in November 2019 just months before the pandemic hit. All the while, I kept on releasing free WordPress themes.</p>\n\n\n\n<p>I also felt lost. Anyone who has been allowed to turn their hobby into a career – and there are a lot of us in the WordPress community – know that it is both a blessing and a curse. A blessing because you’re allowed to spend your nine to five working on something that you’re truly passionate about. A curse because working on your passion from nine to five will result in that passion wearing out and, in periods, be extinguished altogether. This is when a hobby comes in handy. It’s a shame you’ve turned your hobby into a job, isn’t it?</p>\n\n\n\n<p>The pandemic was a turning point for me, as it was for so many others. I had increasingly started to feel like a WordPress website generator with legs, and after months of isolation in my studio apartment in Stockholm, I realized I needed a change. I needed something that could give me a sense of purpose and sense of self that isn’t rendered with pixels on a screen.</p>\n\n\n\n<h2 class=\"kt-adv-heading_8e86d0-af wp-block-kadence-advancedheading\">Hike your own hike</h2>\n\n\n\n<p>The seed was planted during a family trip to Scotland in August 2019. Me, my parents and my siblings were exploring the country by train, and our first stop after leaving Edinburgh was a little town in the Scottish Highlands called Fort William. Fort William lies at the foot of Ben Nevis, the highest mountain in the United Kingdom. It is the end point for the West Highland Way hiking trail to the south and the starting point for the Great Glen Way hiking trail to the north. Early August is peak hiking season, and Fort William was filled with long-distance hikers either finishing their hike or just about to start it. The sight of excited hikers getting ready to head out on the trail stuck with me.&nbsp;</p>\n\n\n\n<p>When I got back to Sweden, I saw that I had received an email asking me whether I’d like to take part in designing the Twenty Twenty default theme in WordPress 5.3. It’s the sort of offer you would kick yourself for life for turning down, so I swallowed all of my anxieties and said yes. The next couple of months were intense. In addition to a hectic work schedule and contributing to Twenty Twenty in the evenings and weekends, me and my partner were separating, I was buying an apartment, and I was transitioning from full-time employment to freelance work. I would watch hiking videos on YouTube to decompress. I watched a lot of hiking videos that fall.</p>\n\n\n\n<p>The next spring, as the pandemic shutdown began, I put on my hiking backpack for the first time and headed out for my first night in the wild. Despite a heavy backpack, aching muscles and chafing in all the wrong places, it was love at first sight. That August, a year after the Scotland trip, I did my first long-distance hike in the Swedish mountains. Nine days on the Dag Hammarskjöld trail from Abisko to Nikkaluokta. Hiking had me properly hooked.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/anders-noren-dag-hammarskjoldsleden.jpg\"><img /></a>One of my tent sites on Dag Hammarskjöldsleden, between the Sälka and Singi cabins.\n\n\n\n<h2 class=\"kt-adv-heading_b10867-03 wp-block-kadence-advancedheading\">The missing puzzle piece</h2>\n\n\n\n<p>Balance. That’s what I lost when I turned my hobby into a career. When I was a student, I could turn to side projects and theme development for a creative outlet and a change of pace. When I started to work full-time as a theme developer, I still tried to use my themes as that creative outlet, and it only worked to a point. When I finally reached that point, I came very close to burning out on theme development altogether. I started to question my decisions at every fork in the road that had brought me to that chapter in my life. Maybe I should have been a media relations person after all?</p>\n\n\n\n<p>None of us can be all work, all of the time. Finding something that we’re passionate about outside of our day job is key to maintaining balance in our lives. I think that’s especially true for those of us lucky enough to get to turn our hobby into a career. For me, that something turned out to be hiking. Every time I come back from a hike I feel rejuvenated and inspired, with my passion for theme development burning a little bit brighter than when I left. None would have been more surprised than my twelve year old self, with his nose buried in books about C++ and QBasic.</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/grona-bandet-map.jpg\"><img /></a>My planned route on Gröna bandet.</div>\n\n\n<p>Next summer, I’ll head out on my biggest adventure yet: A two month hike of the entire Swedish mountain chain, from Grövelsjön in the south to the point where the borders of Sweden, Norway and Finland meet in the north. About 1 300 kilometers in all. The hike is called Gröna bandet, and unlike most long-distance trails, you have to chart your own path from the starting point to the end. A fitting metaphor for a career in WordPress. All of it will be documented in excruciating detail on my <a href=\"https://www.instagram.com/andersnoren1/\">Instagram</a>, if you’re interested in tagging along.&nbsp;</p>\n\n\n\n<p>It is an immense privilege to be able to go on adventures like this one, and I likely wouldn’t have had that opportunity without the strange career path the WordPress community has given me. For that, I’m incredibly grateful.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 id=\"svenska\">Välsignelser och förbannelser med att förvandla sin hobby till en karriär</h1>\n\n\n\n<p>År 2012 var jag en medie- och kommunikationsstudent på Umeå universitet. Mediebranschens nedåtgående kurva hade övertygat mig om att inte satsa på en karrär som journalist, och jag intalade mig själv att det näst bästa var att jobba som kommunikatör på en spännande arbetsplats. Det var ungefär så mycket tanke jag hade lagt bakom mitt val av utbildning. För varje föreläsning jag gick på och uppgift jag lämnade in insåg jag att jag tyckte om att studera kommunikation, men jag var inte särskilt pepp på att göra en karriär av det.</p>\n\n\n\n<p>Som tur är gav föreläsningarna och uppgifterna mig tillräckligt tid över för att ta mig an andra saker. Att ändra på min civilstatus, träffa nya vänner, gå på fester – saker man prioriterar när man flyttar till en stad 500 kilometer bort – men också sidoprojekt. Det är tufft att få ihop hushållsbudgeten som student. Jag började överväga olika sätt att tjäna pengar på det webbfixandde jag hade haft som hobby sedan jag var liten.</p>\n\n\n\n<p>Jag var medveten om att marknaden för premiumteman för WordPress växte snabbt, och att teman på marknadsplatser som ThemeForest drog in enorma summor. Det kunde kanske vara ett sätt att dryga ut hushållsbudgeten.</p>\n\n\n\n<h2 class=\"kt-adv-heading_a25f3f-c1 wp-block-kadence-advancedheading\">Mitt möte med WordPress</h2>\n\n\n\n<p>Jag har ett väldigt tydligt minne av när jag skrev HTML för första gången. Jag var elva år gammal, och jag utforskade en länksamling som hette Annas Länkburkar i skolans datorsal. I och med att du läser det här på svenska kanske du minns den själv, beroende på när du gick i skolan. Om inte så bestod startsidan på Annas länkburkar av rader med burkar, flaskor, lådor och tepåsar, märkta med den typ av länkar kategorisidorna innehöll. Någonstans i den mörkblåa flaskan märkt ”Data” hittade jag en guide till att skriva enkla webbsidor i HTML. Mitt skrivbord var snart helt belamrat med .html-filer i vilka jag utforskade grunderna i att koda webbsidor. Jag fick veta att e-postkontot som mina föräldrar hade hos webbportalen Spray kom med medlemssidor med HTML-support, och jag planterade snart flaggan i mitt första lilla utrymme på WWW. Om jag minns rätt hade medlemsidan den minnesvärda webbadressen http://medlem.spray.se, följt av en slumpmässig nummersekvens.</p>\n\n\n\n<p>Jag fortsatte att experimentera med webbutveckling under de närmaste åren. En bok på Sandvikens folkbibliotek introducerade mig till CSS, och jag försökte och misslyckades också med att lära mig JavaScript. Jag var medveten om att det fanns innehållshanteringssystem redan då, men i och med att det inte fanns utrymme för en serveravgift i min veckopeng fick jag nöja med med vad jag kunde göra med .tk-domännamn och gratis webbhotell. Jag började experimentera med andra programmeringsspråk också. C++ var för komplicerat och Visual Basic för tråkigt, men QBasic träffade rätt och jag byggde enkla ASCII-spel i QBasic under en tid. Som du märker var jag en väldigt cool och populär kille.</p>\n\n\n\n<p>Jag bytte skola när jag var 15 år gammal, och mitt intresse för datorer svalnade under en period. Istället upptäckte jag Photoshop. Mina alster bestod främst av lågmälda illustrationer med utdrag från sångtexter i bildtexten – 15-åringens främsta uttrycksform. Jag blev också lurad att jobba med skoltidningen, vilket väckte mitt intresse för journalistik och introducerade mig till InDesign.</p>\n\n\n\n<p>Bloggfenomenet var precis på väg att ta fart i Sverige när jag började gymnasiet år 2006, och jag var ivrig att haka på. Jag hade fått för mig att jag skulle utveckla indiespel, och istället för att ägna min tid åt att lära mig spelutveckling bestämde jag mig för att starta en blogg om indie-spelutveckling. Det utgjorde starten för en livslång vana av att bygga webbplatser om mina intressen istället för att utöva dem. Efter en snabb Google-sökning efter olika bloggtjänster hamnade jag på WordPress.com. Tjänsten vara bara drygt ett år gammal då.</p>\n\n\n\n<p>Jag publicerade mitt första blogginlägg med WordPress den 14 januari 2007. Jag kan säga datumet med säkerhet för att jag tittar på blogginlägget i detta ögonblick, men nej, jag kommer inte att publicera länken till det här. Jag har redan berättat om mina lågmälda Photoshop-illustrationer, och det finns gränser för hur mycket jag är villig att göra mig till åtlöje i ett publikt forum. Trots WordPress.com-domännamnet och min knackiga engelska lyckades jag övertala en handfull spelutvecklare att bli intervjuade för bloggen. Den mest kända var John Romero, designer av Wolfenstein 3D, Doom och Quake. Min sista fråga var ”Pizza eller hamburgare?”. Det är nog lika bra att jag inte blev journalist.</p>\n\n\n\n<p>Mina dagdrömmar om indie-spelutveckling svalnade snabbt, men jag hade inte förlorat mitt intresse för bloggande. Jag var van vid WordPress efter att använt WordPress.com, så när det blev dags att registrera ett domännamn och bli kund hos ett webbhotell var valet av innehållssystem enkelt. Jag dammade av mina gamla HTML och CSS-kunskaper för att göra mindre justeringar i temat jag använde, och jag började lära mig lite PHP också. Jag insåg snart att det var lika roligt att experimentera med koden som att skriva blogginlägg.</p>\n\n\n\n<p>Fler sajter följde snabbt. En med nyheter om Nintendo, en med nyheter om Apple, ett länkarkiv, en med guider till hur man bloggar, en om mordet på Olof Palme, och så vidare. Den sista är den enda av dem som fortfarande <a href=\"https://palmemordet.se/\">ligger uppe</a>, men dess utseende har uppdaterats flera gånger sedan jag först la upp den 2010. Jag får fortfarande e-postmeddelanden från konspirationsteoretiker några gånger per år. Nästan alla av webbplatserna var byggda med WordPress, vanligtvis med ett gratis- eller premiumtema med mindre modifikationer. Jag fortsatte uppdatera dem efter att jag gick ut gymnasiet, och något år efter min examen fick jag ett jobb på ett litet IT-företag där jag fick betalt för att skriva kod för första gången. Jag såg det fortfarande inte som en möjlig karriärväg. Mitt sikte var inställt på universitetet.</p>\n\n\n\n<h2 class=\"kt-adv-heading_8f7792-b0 wp-block-kadence-advancedheading\">En karriär byggd på teman</h2>\n\n\n\n<p>Två år senare satt jag i min studentlägenhet i Umeå och övervägde att dryga ut hushållsbudgeten genom att bygga premiumteman. Jag hade fritid till övers och inget att förlora, så jag bestämde mig för att ge det ett försök. Mitt första tema var ett enkelt bloggtema vid namn Lasseter, döpt efter den tidigare Pixar-regissören John Lasseter, och jag släppte det på marknadsplatsen Mojo Themes i augusti 2013 för 49 dollar. Jag visste att jag behövde marknadsföra mina premiumteman på något sätt, och jag bestämde mig för att utveckla gratisteman för WordPress.orgs temabibliotek också. Besökare skulle komma till min webbplats för gratisteman och förhoppningsvis bestämma sig för att betala en slant för ett premiumtema istället. Det var planen. Det blev inte riktigt så.</p>\n\n\n\n<p>Jag släppte mitt första gratistema, Lingonberry, samma månad som Lasseter. Trac-ticketen för temat är fortfarande <a href=\"https://themes.trac.wordpress.org/ticket/13558\">live</a>, och listan på buggar jag behövde åtgärda innan temat godkändes är en kilometer lång. Carolina Nymark från WordPress.orgs Theme Review Team granskade temat, och hon var väldigt tålmodig. Jag hade inte en aning om hur lite jag visste om temautveckling innan jag skickade in mitt första tema till WordPress.org. Sju år senare var jag och Carolina co-leads för <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a>-standardtemat i WordPress 5.3. Jag är skyldig henne och de andra temagranskarna på WordPress.org väldigt mycket.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/lingonberry-1680x1680-1.jpg\"><img /></a>Lingonberry, mitt första gratis WordPress-tema.\n\n\n\n<p>Det är något speciellt med att se människor ta något som du har skapat och göra något kreativt med det, och när Lingonberry släpptes var det spännande på ett sätt som jag har svårt att sätta ord på. Det fick mig att inse att jag var mycket mer intresserad av att se mina teman bli använda än jag var av att tjäna pengar på dem. Mitt nästa tema, <a href=\"https://andersnoren.se/teman/hemingway-wordpress-theme\">Hemingway</a>, var gratis. Det var temat efter det också, och temat efter, och alla teman som följde. Efter något år bestämde jag mig för att sluta sälja Lasseter. Det hade kanske sålts&nbsp; i tio exemplar vid det laget.</p>\n\n\n\n<p>Under samma period hade mina gratisteman laddats ned hundratusentals gånger. Folk började fråga mig om jag kunde göra mindre justeringar av dem mot betalning, och så småningom började jag också få frågor om att bygga nya teman från grunden. När jag hade ett par månader kvar av min utbildning frågade Smashing WordPress-författaren <a href=\"https://tdh.se\">Thord D. Hedengren</a> om jag ville komma ner till Stockholm för en jobbintervju på hans webbyrå: Odd Alice. Efter att ha byggt webbplatser som en hobby i 15 år hade jag nu ett konkret erbjudande om att göra det till min karriär. Jag tog det.</p>\n\n\n\n<h2 class=\"kt-adv-heading_e569ed-3c wp-block-kadence-advancedheading\">Välsignelsen och förbannelsen</h2>\n\n\n\n<p>Under åren som följde jobbade jag på distans från Umeå i två år innan jag flyttade till Stockholm, separerade från min flickvän, fick vänner för livet och växte både som person och som temautvecklare, fick uppleva en företagssammanslagning och kollapsen av det företaget, och blev frilansare i november 2019 bara månader innan pandemin började. Under hela den tiden fortsatte jag att släppa gratisteman.</p>\n\n\n\n<p>Jag kände mig också vilse. Alla som har fått möjlighet att göra en karriär av deras hobby – och det finns många av oss i WordPress-sfären – vet att det är både en välsignelse och en förbannelse. En välsignelse för att du får ägna dina nio till fem åt något som du verkligen är passionerad för. En förbannelse för att om du jobbar på din passion varje dag så kommer det att leda till att din passion falnar och, i perioder, slocknar helt och hållet. Det är då det är bra att ha en hobby. Trist att du har gjort din hobby till ditt födkrok, eller hur?</p>\n\n\n\n<p>Pandemin var en vändpunkt för mig, precis som den var för många andra. Jag hade mer och mer börjat känna mig som en WordPress-maskin på två ben, och efter månader av isolering i min etta i Stockholm insåg jag att jag behövde en förändring. Jag behövde något som gav mitt liv en mening som inte renderades med pixlar på en skärm.</p>\n\n\n\n<h2 class=\"kt-adv-heading_170e02-94 wp-block-kadence-advancedheading\">Vandra din egen vandring</h2>\n\n\n\n<p>Fröet såddes i augusti 2019 under en familjesemester i Skottland. Jag, mina föräldrar och mina syskon ägnade två veckor åt att utforska landet med tåg, och vårt första stopp efter Edinburgh var en liten by i de skotska högländerna som heter Fort William. Fort William ligger vid foten av Ben Nevis, Storbritanniens högsta berg, och det är slutpunkten för vandringsleden West Highland Way åt söder och startpunkten för vandringsleden Great Glen Way åt norr. Början av augusti var högsäsong för vandring i området, och Fort William var fyllt av långdistansvandrare som antingen precis hade avslutat sin vandring eller precis skulle påbörja den. Det var något med synen av exalterade vandrare på väg ut i naturen med sina överfulla ryggsäckar som jag inte kunde släppa.</p>\n\n\n\n<p>När jag var tillbaka i Sverige såg jag att jag hade blivit tillfrågad om jag ville vara med och designa Twenty Twenty-standardtemat i WordPress 5.3. Jag visste att jag aldrig skulle förlåta mig själv om jag sa nej, så jag svalde alla mina farhågor och sa ja. Månaderna som följde var intensiva. Utöver en hektisk period på jobbet och arbete med Twenty Twenty på kvällar och helger så separerade jag och min flickvän, jag köpte en lägenhet, och jag började övergången från heltidsanställning till livet som frilansare. Jag tittade på vandringsfilmer på YouTube för att slappna av. Jag tittade på mycket vandringsfilmer den hösten.</p>\n\n\n\n<p>Nästa vår, när pandemin hade börjat och samhället stängdes ner, tog jag på mig vandringsryggan för första gången och gav mig ut på min första övernattning i naturen. Trots en tung ryggsäck, ömma muskler och skavsår på helt fel ställen var det kärlek vid första ögonkastet. Ett år efter resan till Skottland gjorde jag min första långvandring i de svenska bergen. Nio dagar på Dag Hammarskjöldsleden från Abisko till Nikkaluokta. Jag var fast.</p>\n\n\n\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/anders-noren-dag-hammarskjoldsleden.jpg\"><img /></a>En av mina tältplatser på Dag Hammarskjöldsleden, mellan Sälka- och Singistugorna.\n\n\n\n<h2 class=\"kt-adv-heading_6ae430-01 wp-block-kadence-advancedheading\">Den saknade pusselbiten</h2>\n\n\n\n<p>Balans. Det är vad jag förlorade när jag gjorde min hobby till min karriär. När jag var student kunde jag vända mig till sidoprojekt och temautveckling för att få ett kreativt utlopp och en paus från vardagen. När jag började jobba som temautvecklare på heltid försökte jag fortfarande använda mina gratisteman som ett kreativt utlopp, och det fungerade tills det inte fungerade längre. När jag till slut nådde den punkten var jag på gränsen till att bli utbränd och tappa lusten för temautveckling helt och hållet. Jag började ifrågasätta varje vägval jag hade gjort i mitt liv. Jag kanske skulle ha blivit kommunikatör ändå?</p>\n\n\n\n<p>Ingen av oss kan vara hundra procent jobb, hundra procent av tiden. Vi behöver alla hitta något annat än våra jobb att vara passionerade för om vi ska kunna leva balanserade liv. Jag tror att det är extra sant för oss som var haft turen att få bygga en karriär på våra fritidsintressen. För mig visade sig vandring vara den saknade pusselbiten. Jag känner mig utvilad och inspirerad varje gång jag kommer tillbaka från en vandring, och jag är redo att ta mig an både kundjobb och gratisteman med förnyad passion. Ingen hade blivit mer överraskad än mitt tolvåriga jag, med näsan begravd i böcker om C++ och QBasic.</p>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://heropress.com/wp-content/uploads/2022/12/grona-bandet-map.jpg\"><img /></a>Min planerade rutt på Gröna bandet.</div>\n\n\n<p>Nästa sommar ska jag ge mig ut på mitt största äventyr hittills: en två månader lång vandring genom hela den svenska fjällkedjan, från Grövelsjön i söder till Treriksröset i norr. Drygt 130 mil totalt. Vandringen heter Gröna bandet, och till skillnad från de flesta vandringsleder måste man välja sin egen väg från starten till slutet. En passande metafor för en karriär i WordPress. Hela vandringen kommer att dokumenteras i olidlig detalj på min <a href=\"https://www.instagram.com/andersnoren1/\">Instagram</a>, om du är nyfiken.</p>\n\n\n\n<p>Det är ett enormt privilegium att kunna ge sig ut på såna äventyr, och jag skulle sannolikt inte ha haft den möjligheten utan den underliga karriärväg som WordPress-communityt har gett mig. För det är jag oändligt tacksam.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/blessings-and-curses-of-turning-your-hobby-into-a-career/\">Blessings and curses of turning your hobby into a career &#8211; Välsignelser och förbannelser med att förvandla sin hobby till en karriär</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Anders Norén\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Google Rolls Out December 2022 “Helpful Content” Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140146\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/google-rolls-out-december-2022-helpful-content-update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3164:\"<p>Google is in the process of rolling out its <a href=\"https://developers.google.com/search/updates/ranking\">December 2022</a> &#8220;helpful content&#8221; system update, which started on the 5th and is becoming more visible in search results. The company estimates it will take approximately two weeks to fully roll out.</p>\n\n\n\n<p>The helpful content system generates a signal that is used by Google&#8217;s <a href=\"https://developers.google.com/search/docs/appearance/ranking-systems-guide\">automated ranking systems</a> to provide people with what it deems to be more original and helpful content &#8220;written by people, for people&#8221; in search results. This particular update improves the system&#8217;s classifier and works across content in all languages. </p>\n\n\n\n<p>The system was designed to reward content where Google determines that visitors have had a satisfying experience and, conversely, where visitors do not find what they are looking for, the content will not perform as well. This is distilled into a site-wide signal where Google&#8217;s systems automatically identify &#8220;content that seems to have little value, low-added value or is otherwise not particularly helpful to those doing searches.&#8221; </p>\n\n\n\n<p>If Google finds relatively high amounts of unhelpful content on a site, the rest of the site&#8217;s content is not as likely to perform well in Search. With this application of the system, unhelpful content is like a poison for the rest of the website. Google said removing it could boost the rankings for the rest of the site&#8217;s content. It can take months for Google to reclassify a site&#8217;s content as helpful after unhelpful content has been removed.</p>\n\n\n\n<p>Google published more information on how the classifier works and what it means for rankings:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>This classifier process is entirely automated, using a machine-learning model. It works globally across all languages. It is not a&nbsp;<a href=\"https://support.google.com/webmasters/answer/9044175\">manual action</a>&nbsp;nor a spam action. Instead, it&#8217;s just one of&nbsp;<a href=\"https://www.google.com/search/howsearchworks/how-search-works/ranking-results/\">many signals Google evaluates</a>&nbsp;to rank content.</p>\n\n\n\n<p>This means that some people-first content on sites classified as having unhelpful content could still rank well, if there are other signals identifying that people-first content as helpful and relevant to a query. The signal is also weighted; sites with lots of unhelpful content may notice a stronger effect.</p>\n</blockquote>\n\n\n\n<p>This is the first major update to helpful content since August 2022. At that time Google encouraged site owners to focus on creating &#8220;people-first content,&#8221; as opposed to search engine-first content. Site owners are encouraged to reference Google&#8217;s guide to &#8220;<a href=\"https://developers.google.com/search/docs/fundamentals/creating-helpful-content\">Creating helpful, reliable, people-first content,</a>&#8221; which includes dozens of questions for evaluating whether content will be deemed helpful or not.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 04:04:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Jetpack 11.6 Adds Block Pattern Support to Forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140131\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/jetpack-11-6-adds-block-pattern-support-to-forms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2090:\"<p>Jetpack has introduced a major update to its Form block in the latest version <a href=\"https://jetpack.com/blog/jetpack-11-6-update-to-the-form-block-and-more/\">11.6 release</a>. Users can now interact with the various form templates as patterns. </p>\n\n\n\n<p>A new quick start placeholder appears anytime users invoke a new form block. It displays a selection of the most commonly used form types as icons. Clicking on any one of the form templates will instantly add it to the block. From there, users can further customize the form fields and labels. It also displays a link to documentation on customizing forms and a link to view and export form responses.</p>\n\n\n\n<img />\n\n\n\n<p>Version 11.6 also introduces a patterns explorer, similar to the one found in the block inserter. Here users can see all available patterns fully expanded to better inform their decisions during the form creation process.</p>\n\n\n\n<img />\n\n\n\n<p>After testing, I found the pattern explorer to be a somewhat clunky way to view available form templates. In the default view they appear one at a time and expand to fit the explorer&#8217;s viewport. They are also difficult to scroll. Clicking on the grid style view, the patterns are easier to see but the design could be improved to better differentiate each pattern, as they all seem to run right into the next with faint borders around each.</p>\n\n\n\n<p>Although I&#8217;m eager to see Jetpack iterate on the execution of these new ways to build forms, the placeholder and pattern explorer undoubtedly help users get started faster than trying to build a form from scratch in the block editor.</p>\n\n\n\n<p>Other notable updates in this release include SEO improvements that allow users to have more granular control over how their content is presented (or not presented) to search engines. In the Jetpack SEO panel, users can now exclude that specific post or page from being indexed, while allowing the content to remain publicly accessible. Users can also now set a custom SEO title for posts and pages that will show in the search snippet and browser tab.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2022 02:13:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: A Product Builders Journey with Eran Shor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=73747\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/a-product-builders-journey-with-eran-shor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"<p>Eran has a history with both WooCommerce and WordPress and shares his story on building Zorem and his latest product, TrackShip.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-product-builders-journey-with-eran-shor/\">A Product Builders Journey with Eran Shor</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a> .</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2022 10:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: ChatGPT Creates a Working WordPress Plugin – On the First Try\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140097\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/chatgpt-creates-a-working-wordpress-plugin-on-the-first-try\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3742:\"<p>ChatGPT <a href=\"https://twitter.com/sama/status/1599668808285028353\">passed 1 million users</a> today and Twitter is brimming with a steady stream of creative questions and applications for the AI-powered chatbot. The language model, <a href=\"https://openai.com/blog/chatgpt/\">created by OpenAI</a>, is powered by GPT-3.5, a series of models trained on text and code from before Q4 2021. The model features a dialogue format that gives ChatGPT the ability to &#8220;answer followup questions, admit its mistakes, challenge incorrect premises, and reject inappropriate requests.&#8221;</p>\n\n\n\n<p>While some are busy predicting the <a href=\"https://twitter.com/jdjkelly/status/1598021488795586561\">end of search engines</a> and sounding the death knell for human-generated writing, others are fascinated by the potential of AI systems to fundamentally reshape the process of creation. WordPress developer Johnathon Williams brought this close to home when he asked ChatGPT to spin up a WordPress plugin.</p>\n\n\n\n<p>Ordinarily, plugin creation is a task that requires a certain level of technical proficiency. Williams demonstrated that, with a little bit of expert guidance, ChatGPT can drastically reduce the amount of time it takes to extend WordPress.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">ChatGPT wrote a working WordPress plugin for me today on the first try. <br /><br />Custom menu item, custom admin screen, saving a custom options value, validating the field before saving &#8230;<br /><br />Holy hell.</p>&mdash; Johnathon Williams (@johnofhousejohn) <a href=\"https://twitter.com/johnofhousejohn/status/1599858839771176960?ref_src=twsrc%5Etfw\">December 5, 2022</a></blockquote>\n</div>\n\n\n\n<p>Williams installed the plugin and found that it worked on the first try. Although he didn&#8217;t save the prompt for this first try, he <a href=\"https://gist.github.com/oddjar/54bd63399e2e27b15a25d10b6edd4ec2\">published a gist on GitHub</a> of the generated code.</p>\n\n\n\n<p>On a second attempt of creating a different plugin, he used the following prompt:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Create a custom WordPress plugin called &#8220;Big Daddy Media&#8221; that deletes images older than one year from the media library. OOP. Custom admin screen. one button delete. log the full URL of all deleted media files.</p>\n</blockquote>\n\n\n\n<p>He published a screen recording of ChatGPT at work creating the plugin:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Open AI\'s ChatGPT can generate an entire WordPress plugin based on a simple description.<br /><br />Watch it work: <a href=\"https://t.co/LZQbxFq0aP\">pic.twitter.com/LZQbxFq0aP</a></p>&mdash; Johnathon Williams (@johnofhousejohn) <a href=\"https://twitter.com/johnofhousejohn/status/1599932681076473856?ref_src=twsrc%5Etfw\">December 6, 2022</a></blockquote>\n</div>\n\n\n\n<p>Williams said that although he&#8217;s had mixed results with his prompts, he has gotten the best results from asking ChatGPI to generate entire functions versus specific filters or actions.</p>\n\n\n\n<p>Theoretically, with additional training on plugin best practices and common architecture, ChatGPT could be used by people of all skill levels to extend WordPress in creative ways.</p>\n\n\n\n<p>&#8220;Very soon, describing the WordPress plugin you need to ChatGPT will generate a new one faster than searching for an existing one in the plugin directory,&#8221; Williams said. &#8220;This won&#8217;t be true for all types of plugins, of course. But for relatively simple plugins performing established tricks &#8230; well *very soon* should probably read &#8216;right now.\'&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2022 04:14:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Gutenberg Times: Gutenberg 14.6, Divi builder’s future,Block and Theme development courses and more – Weekend Edition 237\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=22812\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"https://gutenbergtimes.com/gutenberg-14-6-divi-builders-futureblock-and-theme-development-courses-and-more-weekend-edition-237/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:29783:\"<p>Howdy, </p>\n\n\n\n<p>It has been a whirlwind year for me, and now 2022 is coming to an end. Two more Weekend Editions, one more Gutenberg Changelog episode and our vacation around the Holidays and New Year&#8217;s will start. I can hardly wait, to be honest. I have a few personal projects, I finally need to get going on them. </p>\n\n\n\n<p>In this week&#8217;s <a href=\"https://www.therepository.email/?mailpoet_router&endpoint=view_in_browser&action=view&data=WzE3NCwiMjAxZTExZjMzOTNjIiw1NTYsIjFqb2g0ZGtiNnZmbzh3NG9vb3dnNG9zODhnazA0czR3Iiw0NzMsMF0\">The Repository</a> newsletter (150) I read the community profile of Ryan Sullivan who identified <em>Entropy</em> as the one concept that is worth understanding. He shared a link to a blog post by James Clear (<em>Atomic Habits</em>) &#8220;<a href=\"https://jamesclear.com/entropy\">Entropy: Why Life Always Seems to Get More Complicated</a>&#8220;. I found some solace in the fact that chaos seems to be our natural state of things. </p>\n\n\n\n<p>In a GitHub discussion about Custom-CSS coming to the Block editor, I also learned about Cumming&#8217;s Law: &#8220;Law that affirms that the best way to get the right answer on the Internet is not to ask a question, but to post the wrong answer&#8221; Wisdom of the crowd. </p>\n\n\n\n<p>Well, WordPress problem-solving is a holistic experience. It takes the whole person. It&#8217;s not all about bits, bytes, servers, PHP and JavaScript. It&#8217;s about people, too. 🤦‍♀️ 😜</p>\n\n\n\n<p>For a more down to Earth developers, you&#8217;ll find below two posts linked that tell use of the journey of backend or PHP developer to learn working with blocks. </p>\n\n\n\n<p>I<s>f you haven&#8217;t yet, browse through the <strong><a href=\"https://www.wordfest.live/2022/november/schedule/\">schedule of WordFest Live</a> </strong>&#8211; a 24-hour virtual conference and celebration of WordPress around Transformation. It will take place on <strong>December 16, 2022</strong>, </s> I was sorry to learn, that <em>WordFest Live was cancelled</em>. (12/4 &#8211; Thank you, DJ for letting me know)</p>\n\n\n\n<p>The day before, <strong>December 15, 2022</strong> Matt Mullenweg will will give his annual keynote address called <strong><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\"> State of the Word</a></strong>, when he shares reflections on the project’s progress and the future of open source. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-s\">Upcoming WordPress events</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-l\">Learn WordPress Online Meetups</a></li></ul></li></ul></div>\n</div></div>\n\n\n\n\n<h2 id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Gutenberg 14.6 </strong>was release on November 23rd, 2022. <strong>Fabian Kägy</strong> highlighted in his release post <strong><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\">What’s new in Gutenberg 14.6? (23 November)</a></strong> the following features:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#add-a-variation-picker-to-the-group-block-placeholder\">Add a Variation Picker to the Group Block Placeholder</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#add-list-based-editing-to-navigation-block\">Add List-Based Editing to Navigation Block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#hide-block-toolbar-when-spacing-visualizer-is-shown\">Hide Block Toolbar when Spacing Visualizer is Shown</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#transform-paragraph-into-heading\">Transform Paragraph into Heading via Keyboard Shortcut</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#update-the-design-of-the-focal-point-handle\">Update the Design of the Focal Point Handle</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#fluid-typography-adjust-font-size-min-and-max-rules\">Fluid typography: Adjust font size min and max rules</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#define-a-min-height\">Define a Minimum Height</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/#generate-new-color-palets-automatically\">Generate New Color Pallets Automatically</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well: <a href=\"https://wptavern.com/gutenberg-14-6-adds-list-view-for-editing-navigation-block-introduces-new-automatic-color-palette-generator\">Gutenberg 14.6 Adds List View for Editing Navigation Block, Introduces New Automatic Color Palette Generator</a>. She wrote: &#8220;One of the most creative features introduced in this release is the new&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/40988\">“Randomize colors” feature</a>&nbsp;that will automatically generate color palettes on the fly. It utilizes hue rotations based on the&nbsp;<a href=\"https://www.mrao.cam.ac.uk/~dag/CUBEHELIX/\">Cubehelix color scheme</a>.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you are a subscriber to the <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-76-the-new-developer-blogs-public-beta-gutenberg-14-5-and-14-6-and-whats-coming-up-in-6-2/\">Gutenberg Changelog podcast</a>, your favorite podcast app probably made the latest episode available to you. To my absolute delight, <strong>Ryan Welcher</strong>, Twitch streamer and developer advocate joined me again for this show. It was great fun! </p>\n\n\n\n<img />\n\n\n\n<p>Welcher&nbsp;was quoted in the the&nbsp;<a href=\"https://www.therepository.email/?mailpoet_router&endpoint=view_in_browser&action=view&data=WzE3NCwiMjAxZTExZjMzOTNjIiw1NTYsIjFqb2g0ZGtiNnZmbzh3NG9vb3dnNG9zODhnazA0czR3Iiw0NzMsMF0\" target=\"_blank\" rel=\"noreferrer noopener\">Repository Newsletter #150</a>&nbsp;&#8220;In the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-76-the-new-developer-blogs-public-beta-gutenberg-14-5-and-14-6-and-whats-coming-up-in-6-2/\" target=\"_blank\" rel=\"noreferrer noopener\">latest episode</a>&nbsp;of the Gutenberg Changelog podcast, Ryan Welcher, a Developer Relations Advocate at Automattic, some &#8220;quality of life&#8221; updates in Gutenberg 14.6 that make using it a more pleasant experience: &#8220;It’s nice there&#8217;s this level of refinement happening to these existing tools,&#8221; he says.&#8221; TY to <a href=\"https://twitter.com/raemoreywrites\">Rae Morey</a>, editor of the newsletter. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-77-gutenberg-14-7-whats-new-for-block-themes-an-upcoming-live-qa-in-january/\">Gutenberg Changelog #77 – Gutenberg 14.7, what’s new for Block Themes, an upcoming Live Q&amp;A in January</a> with special guest, Daisy Olsen and host Birgit Pauli-Haack. </p>\n</div></div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you’re all about the words, be it blogging for yourself or as a content author for your clients, WordPress 6.1 has a number of writing and editing improvements you’ll want to take advantage of. <strong>Anne McCarthy</strong> published another post in the series of Core editor improvements. In <strong><a href=\"https://make.wordpress.org/core/2022/10/28/core-editor-improvement-advancing-the-writing-experience/\">Advancing the writing experience</a></strong> they wrote: <em>&#8220;The experience of writing your latest post, whether as part of your weekly routine or out of excitement from a recent adventure, just got easier in&nbsp;many&nbsp;different ways. From a new mode that helps you focus on just writing to more keyboard shortcuts for quickly navigating content, there’s something for everyone, no matter how you approach writing your posts.&#8221;</em></p>\n\n\n\n<h2 id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>In the last edition, I shared with you the <a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\">story that GiveWP is revamping their plugin to use Gutenberg as a framework</a> for their Donations plugin and use the interface components, and scripts already built into WordPress to modernize and standardize the plugin page and settings. </p>\n\n\n\n<p>Last month, <strong>Nick Roach</strong>&nbsp;CEO Elegant Themes, the company that built the Divi Builder, announced the start of the Divi 5.0 release process in the post <strong><a href=\"https://www.elegantthemes.com/blog/general-news/the-future-of-divi\">Let’s Talk About Divi 5.0 And The Future Of Divi</a></strong>. &#8220;In fact, developers familiar with creating blocks for WordPress will find a lot of similarities in the Divi 5.0 module API. WordPress blocks will be more easily adapted to Divi and WordPress developers will be able to jump head first into building things for our community. We are building this new version of Divi to work in harmony with WordPress.&#8221; he wrote. As time of the writing the post has around 190 comments. I haven&#8217;t started to read yet. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on it on the WPTavern: <a href=\"https://www.elegantthemes.com/blog/general-news/the-future-of-divi\"><strong>Divi 5.0 Aims to Bring Greater Compatibility with Gutenberg</strong></a>. She talked to developer, Josh Ronk and quoted him: “On the block theme front, as a part of Divi 5.0, we are also transitioning into a Block-Based theme, and since Divi 5.0 is actually internally built using the same ‘packages’ that Gutenberg itself is composed of, Divi 5.0 has a lot of compatibility built in from the core,”.</p>\n\n\n\n<p>In his video, <strong>Jamie Marsland</strong>, PootlePress, posed the question: <a href=\"https://www.youtube.com/watch?v=fJUCzJYfzNQ\"><strong>Is The Divi WordPress Theme Dying?</strong></a></p>\n\n\n\n<p><em>Are you a Divi user? How do you feel about this announcement? Share in the comments, or email me to <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a></em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jean-Baptist Audras</strong>, Whodunit Agency and outgoing team rep of the WordPress Core team <strong><a href=\"https://twitter.com/AudrasJb/status/1598350878037221382\">tweeted</a></strong> that his agency released two new plugins that help with creating accessible content. </p>\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/lang-attribute/\">&#8220;Lang Attribute for the Block Editor&#8221;</a></strong> provides a way to ensure language changes in the content of a page are properly indicated to assistive technologies, using the <code>lang</code> attribute. See <a href=\"https://www.w3.org/WAI/WCAG21/Understanding/language-of-parts.html\"><em>WCAG Success Criterion 3.1.2 “Language of Parts”</em></a></p>\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/abbreviation-button-for-the-block-editor/\">“Abbreviation Button for the Block Editor”</a></strong> helps you to provide definitions for abbreviations, using the &lt;abbr&gt; HTML element. See <em><a href=\"https://www.w3.org/WAI/WCAG21/Understanding/abbreviations.html\">WCAG success criterion 3.1.4 “Abbreviations”</a></em></p>\n\n\n\n<p>Audras also wrote: &#8220;Worth noting that indicating language changes in content is mandatory for WCAG compliance, and there is currently no way to do that in the Block Editor (except by editing the code manually). I think this feature should be implemented natively into Gutenberg&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Marko Segota</strong> at Anariel Design wrote about <a href=\"https://www.anarieldesign.com/how-to-create-columns-in-wordpress/\"><strong>How to Create Columns in WordPress Block Editor (Gutenberg)</strong></a>? He covers the topic from adding columns to the editor canvas, and adding blocks to each column. Then Segota goes over all the various design options and how to add borders. Equipped with the full knowledge of available features, you now can channel your creativity to build enticing layouts and page sections. </p>\n\n\n\n<p><em>Share your creation, if you&#8217;d like and send me your screenshots or links. Please don&#8217;t hesitate to also send your questions, and your bug reports, to my email address <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a></em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On WPEngine&#8217;s Builders Resouces site, <strong>Nick Diego</strong> wrote a tutorial on <a href=\"https://wpengine.com/builders/designing-with-column-blocks/\"><strong>Designing with Column Blocks in WordPress</strong></a> and explored two block layouts that rely on the Columns block. &#8220;While both are relatively simple, they demonstrate how powerful and versatile this block can be. &#8221; He also included ways to add additional functionality using custom CSS classes.</p>\n\n\n\n<h2 id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> and <strong>Damon Cook</strong> facilitated a conversation in a recent <strong>Hallway Hangout</strong> about <a href=\"https://wordpress.tv/2022/12/02/hallway-hangout-future-of-css-in-block-themes/\"><strong>the future of CSS in block&nbsp;themes</strong></a>. In the more casual chat the group discussed some Block Theme development-related features that are under active development. I was sorry, that I missed it and I have this on my watch list once this newsletter is done 🙂 </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Speaking of WordPressTV: the recording of a recent Learn WordPress Builder Basics event was uploaded, too. <a href=\"https://wordpress.tv/2022/12/02/builder-basics-building-with-columns-groups-rows-and-stacks/\"><strong>Builder basics: building with columns, groups, rows and&nbsp;stacks</strong></a> with <strong>Nick Diego</strong>, where he &#8220;explored how to design sophisticated layouts using Columns, Group, Row, and Stack blocks. These blocks represent the fundamental building blocks of every WordPress website. You’ll learn the nuances of each block type and how to configure them correctly, with a special focus on new features in WordPress 6.1.&#8221;</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post <strong><a href=\"https://themeshaper.com/2022/11/28/how-to-add-typographic-fonts-to-wordpress-block-themes/\">How to add typographic fonts to WordPress block&nbsp;themes</a>, Matias Benedetto</strong> explains how to use the Create Block Theme plugins to bundle fonts to your theme with just a few clicks.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ganesh Dahal</strong> published a tutorial on <a href=\"https://css-tricks.com/using-the-new-constrained-layout-in-wordpress-block-themes/\"><strong>how to use the new constrained layout In WordPress block&nbsp;themes</strong></a>. &#8220;Now that we have JSON-ified styles for the margins and padding of layout containers, that opens us up to&nbsp;more flexible and robust ways to define spacing in our theme layouts.&#8221; Dahal wrote. </p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n \n <div class=\"ngl-articles-wrap ngl-articles-webview\">\n \n \n <div class=\"ngl-article-mobile\">\n <table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td valign=\"top\">\n <div class=\"ngl-article-mob-wrap\">\n <div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/a-walk-through-of-layout-classes-in-wordpress-6-1/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2022/11/keyboard.jpeg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/a-walk-through-of-layout-classes-in-wordpress-6-1/\" target=\"_self\" rel=\"\"><span>A Walk-Through of Layout Classes in WordPress 6.1</span></a></div><div class=\"ngl-article-excerpt\">WordPress 6.1 introduced several necessary changes to its layout framework. Namely, core has now centralized its layout definitions, created semantic class names, and reduced code duplication on container blocks. Originally,&hellip; <a href=\"https://gutenbergtimes.com/a-walk-through-of-layout-classes-in-wordpress-6-1/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div> </div>\n </td>\n </tr>\n </table>\n </div>\n \n \n \n\n \n \n </div>\n\n</div>\n\n\n\n\n<p><strong>Isabel Brison </strong>published the Dev Note for the WordPress 6.1 release: <a href=\"https://make.wordpress.org/core/2022/10/10/updated-editor-layout-support-in-6-1-after-refactor/\"><strong>Updated editor layout support in 6.1 after refactor</strong></a>. &#8220;A new layout type, “constrained”, was added to the already available Flow and Flex layouts types. In addition, layout refactor efforts bring new layout styles, new block level spacing, more semantic class name for layouts, root padding and a method to disable all layout styles altogether for themes.&#8221; Brison wrote.</p>\n\n\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p><strong><a href=\"https://twitter.com/briancoords/\">Brian Coords</a></strong>, <em>MasterWP</em>, talked to <strong>Cory Hughart</strong> and <strong>Phil Hoyt</strong> on their podcast <em>In The Loop</em> about all things block editing, open-source theme frameworks, and creating media in the world of WordPress. To listen to the full podcast episode head on over to In The Loop: <strong><a href=\"https://anchor.fm/blackbird-digital/episodes/21-Mastering-Theme-Development-with-Brian-Coords-e1qonaa\">Mastering Theme Development with Brian Coords</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<img src=\"https://i0.wp.com/learn.wordpress.org/files/2022/08/Screen-Shot-2022-08-16-at-7.42.45-PM-1024x549.png?resize=652%2C350&ssl=1\" alt=\"\" />\n\n\n\n<p>The second part of the new Block Theme building course on Learn WordPress has gone live. You can now take both courses back to back. </p>\n\n\n\n<p><strong><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">Developers Guide to Block Themes (Part 1)</a> </strong>covers the fundamental aspects of developing a block theme, like </p>\n\n\n\n<ul>\n<li>The minimum requirements of a block theme</li>\n\n\n\n<li>The primary elements of a block theme, and how that differs from a classic theme</li>\n\n\n\n<li>Turning a design into a block theme</li>\n\n\n\n<li>Different methods of creating block theme elements in the Site Editor, and then exporting them to theme files</li>\n</ul>\n\n\n\n<p><a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\"><strong>Developers Guide to Block Themes (Part 2)</strong></a> dives into more advanced block theme development topics: </p>\n\n\n\n<ul>\n<li>Adding custom fonts to your block theme</li>\n\n\n\n<li>Adding custom functionality through block patterns</li>\n\n\n\n<li>Creating Global Styles variations</li>\n\n\n\n<li>Making your block theme translation ready</li>\n\n\n\n<li>Locking down your theme settings and blocks</li>\n</ul>\n\n\n\n<p>A less code-heavy course to building a WordPress Theme is also in the works, It&#8217;s called <a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\"><strong>Develop Your First Low-Code Block Theme</strong></a> it&#8217;s in public preview, and not all advanced modules are done, but you get a fabulous introduction into WordPress block theme and how you can create them through the Site Editor. </p>\n\n\n\n<h2 id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Core contributor, <strong>Michael Burridge</strong> published <a href=\"https://developer.wordpress.org/news/2022/11/29/a-php-developers-guide-to-getting-started-with-block-development/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>a PHP developer’s guide to getting started with block development</strong></a> on the shiny new WordPress Developer Blog. &#8220;This post is intended to guide you through the murkiness and emerge blinking into the clear light of day. It has been written by someone who has followed the same path. Before learning about block development I was a PHP developer who started by creating custom themes and went on to develop plugins to implement custom functionality on WordPress/WooCommerce sites.&#8221; Burridge wrote from his experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger </strong>held part 4 of his workshop series this week: <a href=\"https://www.youtube.com/watch?v=8rf0h14cANQ\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Developing Blocks without React &#8211; Block Controls</strong></a>. This series of workshops looks at building a WordPress block, without using React JSX. In the previous part, Bossenger built a WordPress block using plain JavaScript which supports custom styles via a stylesheet, and which uses block attributes and the RichText component to allow the user to edit the block content. In this iteration, he added a block control and an additional attribute to allow the user to edit the block alignment.</p>\n\n\n\n<p>Catch up on the earlier workshops of the series <strong>Developing Blocks without React</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/2022/11/25/lets-code-developing-blocks-without-react-part-2-take-2/\">Attributes and&nbsp;RichText</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/18/lets-code-developing-blocks-without-react-all-about-attributes/\">All about Attributes</a></li>\n\n\n\n<li><a href=\"https://wordpress.tv/2022/11/11/lets-code-developing-blocks-without-react-part-1/\">Block&nbsp;Basics</a></li>\n</ul>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p>On his Twitch Stream, <strong>Ryan Welcher </strong>worked three weeks in a row on Query Block variations of all types. Here is the list of the shows on Twitch. A deep dive into the world of post lists. </p>\n\n\n\n<ul>\n<li><a href=\"https://www.twitch.tv/videos/1655281302\"><strong>Working with Query Loop block variations</strong></a></li>\n\n\n\n<li><a href=\"https://www.twitch.tv/videos/1661574564\"><strong>MOAR Query Loop block variations!</strong></a></li>\n\n\n\n<li><a href=\"https://www.twitch.tv/videos/1667449595\"><strong>Building an Advanced Query Loop block variation plugin</strong></a></li>\n</ul>\n\n\n\n<p>And if you are a bit fuzzy on what the shows are about, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> wrote the Dev Note on this topic for WordPress 6.1. <a href=\"https://make.wordpress.org/core/2022/10/10/extending-the-query-loop-block/\"><strong>Extending the Query Loop block</strong></a>. He starts out with &#8220;Extenders required a way to present bespoke versions of the Query&nbsp;Loop&nbsp;block, with their presets, additional settings and disabled customization options when irrelevant to their use-case. With WordPress 6.1, the Query Loop block offers mighty ways to create such versions, through&nbsp;<a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-variations/\">Block Variations</a>.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Tom McFarlin</strong> published part 4 of his series <a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-4/\"><strong>A Backend Engineer Learns to Build Block Editor Blocks</strong></a> in which he walks you through how to handle the process to save content from a block and how to control how it is rendered on the front end. If you are keen on learning block development, McFarlin recommends to start reading part one through three first: </p>\n\n\n\n<ol>\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-1/\">Required Tools, Plugin Structure, Dependencies, Block Metadata</a></li>\n\n\n\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-2/\">The Backend, The Frontend, Functionality, Styles, a Working Demo</a></li>\n\n\n\n<li><a href=\"https://tommcfarlin.com/learning-to-build-block-editor-blocks-3/\">Block Attributes, Editable Content, Components, Editor Styles</a></li>\n</ol>\n\n\n\n<h2 id=\"5-s\">Upcoming WordPress events</h2>\n\n\n\n<p>December 15, 2022 &#8211; 1 pm ET / 18:00 UTC <br /><strong><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word 2022</a></strong> &#8211; Matt Mullenweg&#8217;s annual keynote. </p>\n\n\n\n<p>New Date!&nbsp;<strong>December 16, 2022</strong><br /><strong><a href=\"https://www.wordfest.live/2022/november/\">WordFest Live Returns</a></strong>&nbsp;– the 24-hour Festival of WordPress</p>\n\n\n\n<p>February 17 – 19, 2023<br /><a href=\"https://asia.wordcamp.org/2023/\"><strong>WordCamp Asia 2023</strong></a>&nbsp;– the&nbsp;<a href=\"https://asia.wordcamp.org/2023/speakers-announcement-round-1/\">first round of speakers was announced</a></p>\n\n\n\n<p class=\"has-light-background-background-color has-background\"><a href=\"https://central.wordcamp.org/schedule/\"><strong>Have a look at the schedule of upcoming WordCamps</strong></a>&nbsp;to find one near you.</p>\n\n\n\n<h3 id=\"1-l\">Learn WordPress Online Meetups</h3>\n\n\n\n<p><strong>December 5, 2022 &#8211; 2 am ET / 7am UTC </strong><br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289957594/\">Using the Navigation Block</a> </strong>with Ben Evans</p>\n\n\n\n<p><strong>December 8, 2022 – 3 pm ET / 22:00 UTC</strong><br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289521234/\">Builder Basics: Demystifying theme.json and Global Styles</a></strong>&nbsp;with Nick Diego</p>\n\n\n\n<p>December 12, 2022 &#8211; 3 pm ET / 22:00 UTC <br /><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/289957641/\"><strong>Creating a Call To Action with the Block Editor</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Fantasy CityScape created with the Imajinn AI plugin</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Dec 2022 16:02:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"WPTavern: The WP Community Collective Launches Nonprofit to Fund Individual Contributors and Community-Based Initiatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140056\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://wptavern.com/the-wp-community-collective-launches-nonprofit-to-fund-individual-contributors-and-community-based-initiatives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4917:\"<p>The <a href=\"https://www.thewpcommunitycollective.com/\">WP Community Collective</a> (WPCC) officially launched today as a new nonprofit organization dedicated to funding individual WordPress contributors and community-led initiatives. It was founded by Sé Reed, Katie Adams Farrell, and Courtney Robertson.</p>\n\n\n\n<p>The organization was created to address some of the challenges of contribution, where larger companies tend to have more resources to sponsor contributors, while individuals and smaller companies may struggle to balance their ability to volunteer with the need to make ends meet.</p>\n\n\n\n<p>One of the primary ways the WPCC aims to support contributors is through Fellowships. This is an agreement where individuals receive financial support for their contributions to WordPress with global pay parity. They will also engage in professional development and are encouraged to participate in regional WordCamps as attendees, speakers, and/or organizers with expenses covered by the fellowship.</p>\n\n\n\n<p>The fellowships are an interesting concept, designed to incubate high quality contributors who are connected to the community with a well-rounded set of expectations that are not narrowly limited to the code produced. </p>\n\n\n\n<p>WPCC aims to identify areas where the community is underrepresented or contribution is needed and fund Fellowships in those areas. The first fellowship they plan to fund is for <a href=\"https://opencollective.com/thewpcc/contribute/accessibility-fellowship-46812\">an Accessibility contributor</a>, who will dedicate 5-10 hours a week to work on the Make WordPress Accessibility Team and its existing accessibility initiatives.</p>\n\n\n\n<p>&#8220;The Accessibility Fellowship will be a bit of a test, in terms of fundraising and response from the community,&#8221; WPCC co-founder Sé Reed said. &#8220;Accessibility is an easy place to start because the community already knows it is important and we have contributors who are doing crucial work without any monetary support.&#8221;</p>\n\n\n\n<p>WPCC is using Open Collective as the fiscal sponsor for its 501(c)3 status, enabling donations to be classified as charitable giving, which is in many cases tax-deductible. All transactions that run through the organization are transparent and publicly documented on the organization&#8217;s <a href=\"https://opencollective.com/thewpcc/transactions\">transactions page</a>.</p>\n\n\n\n<p>Reed said the tipping point for her team to get organized to make this happen was a tweet from Matt Mullenweg shortly after the 2022 WordCamp US, where he responded to people calling for users of assistive technology to be paid for testing Gutenberg.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'m not opposed to paying people for labor or people getting paid for their labor. It\'s just not something that <a href=\"https://t.co/0IkxYEeLJd\">https://t.co/0IkxYEeLJd</a> or the WordPress Foundation are set up to do, nor will they be in the future. Individuals have sponsored paid user tests before, just directly.</p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1568789183413776385?ref_src=twsrc%5Etfw\">September 11, 2022</a></blockquote>\n</div>\n\n\n\n<p>&#8220;His statement in that tweet really made two things clear to me,&#8221; Reed said. &#8220;One, that this funding concept would not be in conflict with the work of the WordPress Foundation or the official project, and two, that if we wanted something like this to happen it would have to be done as an independent entity.&#8221;</p>\n\n\n\n<p>The WPCC founders joined in on a recent WPwatercooler podcast episode where they shared their contributor stories and why they started the organization. One of their commonalities was a sincere desire to contribute more but not enough time in the day. With very few sponsored contributor positions available, volunteering is not always possible, resulting in the project being led primarily by sponsored contributors.</p>\n\n\n\n<p>“We hope that the WP Community Collective can help bridge the gap between the passion people feel for WordPress, and the very real and practical limits of volunteer contribution,” Reed said.</p>\n\n\n\n<p>WPCC is starting out with a small governance team that consists of the three co-founders but plans to expand the organizational structure to include more community representation, including an Advisory Board with a permanent seat for the Executive Director of WordPress.&nbsp;</p>\n\n\n\n<p>People who want to support the WPCC can join with an <a href=\"https://opencollective.com/thewpcc/contribute/individual-membership-47231\">individual membership</a> for free to stay up to date with the organization&#8217;s activities. Check out the podcast episode below to meet the co-founders and learn more about the initiative.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Dec 2022 03:39:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"WPTavern: UK Publishers File £13.6 Billion Lawsuit Against Google Alleging Market Abuse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=140040\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/uk-publishers-file-13-6-billion-lawsuit-against-google-alleging-market-abuse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3405:\"<p>A group of 130,000 businesses publishing around 1,750,000 websites and applications in the UK have filed a lawsuit against Google and its parent company, Alphabet. The claim is being managed by law firms Humphries Kerstetter and Geradin Partners, who allege that &#8220;Google abused its dominant position in the market for online advertising, earning super-profits for itself at the expense of the tens of thousands of publishers of websites and mobile apps in the UK.&#8221;</p>\n\n\n\n<p>The firms&#8217; economic analysis of Google’s alleged anti-competitive behavior suggests that some companies may have had advertising revenues reduced by 40%. Although Google has been the subject of multiple regulatory investigations in the EU, UK, and USA, resulting in a €220m fine from French competition authorities, this claim aims to compensate publishers and recover losses through a competition class action lawsuit.</p>\n\n\n\n<p>A <a href=\"https://www.humphrieskerstetter.com/category/news/\">statement</a> published by Humphries Kerstetter details the focus of their investigations:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>These competition investigations all focus on the same core facts. Google dominates the markets for ad tech services in the UK and across the world controlling up to 90% of the market in certain sectors. This allows Google to dictate terms, control pricing and, in some scenarios, enables it to favour its own platforms in the process by which advertisements are selected to be published.</p>\n</blockquote>\n\n\n\n<p>The allegations of the competition claim are similar to the complaint brought by the US Department of Justice that alleges <a href=\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\">Google used AMP to impede header bidding and throttle the load time of non-AMP ads</a>. </p>\n\n\n\n<p>&#8220;The marketplace for online advertising is sophisticated, technical and highly automated,&#8221; Claudio Pollack, who is heading the UK publishers&#8217; competition claim, said. &#8220;Advertising is sold in a fraction of a second in a process which is designed to match the product being advertised with the profile of an individual visiting a website. Third party platforms operate on both sides of the marketplace matching supply with demand and – in an ideal world – ensuring the market operates efficiently and effectively. Unfortunately, it is now well established that this market has developed in a way that is primarily serving Google.&#8221;</p>\n\n\n\n<p>A separate multi-billion Euro claim will be running in parallel in the EU, handled by a Dutch law firm in cooperation with Geradin Partners. They are seeking compensation for the alleged damage to small, local publishers who have struggled to stay afloat amid decreased advertising revenue.</p>\n\n\n\n<p>“While the value of the claim we are bringing is substantial, we believe this matter is about much more than money,&#8221; Geradin Partners founding partner Professor Geradin said. &#8220;For years Google has been denying companies in the UK and Europe and beyond, including the local press and the publishers of community focused websites, the chance to earn a proper income by way of advertising. As well as bringing Google to account the parties who have lost out need proper compensation, something a CAT claim can achieve at no cost to those parties.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Dec 2022 22:54:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 28 Dec 2022 00:34:18 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 28 Dec 2022 00:15:32 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no');
  295. INSERT INTO `wp_options` VALUES (188,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1672230859','no');
  296. INSERT INTO `wp_options` VALUES (189,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1672187659','no');
  297. INSERT INTO `wp_options` VALUES (190,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1672230859','no');
  298. INSERT INTO `wp_options` VALUES (191,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\'>WP Briefing: Episode 45: State of the Word Reflections</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\'>The Month in WordPress – November 2022</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/community-wrap-up-week-ending-december-23/\'>Post Status: Community Wrap-up Week Ending December 23</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/commercial-and-community-categorization-is-live-on-wordpress-org-theme-and-plugin-directories\'>WPTavern: Commercial and Community Categorization Is Live on WordPress.org Theme and Plugin Directories</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\'>WPTavern: Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</a></li></ul></div>','no');
  299. INSERT INTO `wp_options` VALUES (192,'_site_transient_timeout_popular_importers_66f1202693d4a48e2614d1abdd4f8bb6','1672360495','no');
  300. INSERT INTO `wp_options` VALUES (193,'_site_transient_popular_importers_66f1202693d4a48e2614d1abdd4f8bb6','a:2:{s:9:\"importers\";a:7:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts &amp; media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','no');
  301. INSERT INTO `wp_options` VALUES (194,'_site_transient_timeout_available_translations','1672198512','no');
  302. INSERT INTO `wp_options` VALUES (195,'_site_transient_available_translations','a:130:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"am\";a:8:{s:8:\"language\";s:2:\"am\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-09-29 20:43:49\";s:12:\"english_name\";s:7:\"Amharic\";s:11:\"native_name\";s:12:\"አማርኛ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.3/am.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"am\";i:2;s:3:\"amh\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ቀጥል\";}}s:3:\"arg\";a:8:{s:8:\"language\";s:3:\"arg\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-09-22 16:46:56\";s:12:\"english_name\";s:9:\"Aragonese\";s:11:\"native_name\";s:9:\"Aragonés\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/arg.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"an\";i:2;s:3:\"arg\";i:3;s:3:\"arg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continar\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-04 13:58:35\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.22/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-12 16:24:24\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-24 12:03:10\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-13 14:46:37\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 20:56:45\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-14 15:48:08\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-11 09:43:06\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-02 17:33:39\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/6.1.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 19:05:31\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.1.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 19:21:41\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-03-17 12:58:14\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-02 17:31:02\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-16 12:13:09\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-22 18:55:37\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-09 10:47:19\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2021-12-24 12:36:39\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 21:58:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-16 06:36:35\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-04-01 22:35:34\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-18 21:56:09\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-22 14:08:10\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-11 23:25:26\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-28 20:06:07\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 18:26:21\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-10 19:19:07\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.17\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.17/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-17 14:28:26\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-16 13:13:32\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-15 05:47:03\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-17 08:19:07\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-19 05:14:04\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-07 05:25:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-12 18:38:54\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-02 09:17:04\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"fy\";a:8:{s:8:\"language\";s:2:\"fy\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 12:53:23\";s:12:\"english_name\";s:7:\"Frisian\";s:11:\"native_name\";s:5:\"Frysk\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/fy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fy\";i:2;s:3:\"fry\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Trochgean\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-12 08:21:50\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.29\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.29/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-02 09:16:06\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.12/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-15 19:56:23\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-18 19:40:10\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-09 10:40:12\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-15 22:53:06\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-23 17:14:53\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-20 15:21:43\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-10-24 08:01:09\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-04 12:58:16\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.17\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.17/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-10-20 17:15:28\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-21 23:01:12\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.6/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-24 03:51:58\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-25 11:09:34\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-10-01 09:23:52\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.0.3/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-09 09:08:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.22/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.11\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.11/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.34\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.34/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-11 01:42:08\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-25 15:38:17\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-07 11:49:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-24 09:01:20\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-05 12:28:58\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/6.1.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.21/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-27 05:43:37\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.30\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.30/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-08-09 12:26:21\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-28 11:31:11\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-10-01 12:16:29\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-16 14:13:20\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-19 13:22:57\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-24 05:36:29\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.12/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-19 13:25:21\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-06 09:43:42\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/6.1.1/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-11 12:48:55\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-18 19:47:58\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.6/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-12 19:29:14\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.14\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.14/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.34\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.34/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.6\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.6/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.21\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.21/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-04 23:05:35\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.22\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.22/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"6.0.3\";s:7:\"updated\";s:19:\"2022-09-11 15:51:48\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.0.3/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.12\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.12/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-17 10:13:02\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/6.1.1/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-07-15 15:25:03\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"香港中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-11-15 22:21:52\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"6.1.1\";s:7:\"updated\";s:19:\"2022-12-18 06:20:30\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/6.1.1/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no');
  303. INSERT INTO `wp_options` VALUES (196,'WPLANG','ru_RU','yes');
  304. INSERT INTO `wp_options` VALUES (197,'new_admin_email','shadrin.vlad.2001@gmail.com','yes');
  305. INSERT INTO `wp_options` VALUES (202,'_transient_timeout_feed_92227bfe1354c9fe21266d111aae5ed4','1672231065','no');
  306. INSERT INTO `wp_options` VALUES (203,'_transient_feed_92227bfe1354c9fe21266d111aae5ed4','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Блог | WordPress.org Русский\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://ru.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Русский\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2022 18:06:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"ru-RU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.2-alpha-55016\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Блог | WordPress.org Русский\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://ru.wordpress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Ежегодный опрос пользователей и участников разработки WordPress 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://ru.wordpress.org/news/2022/12/2022-wordpress-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Dec 2022 16:13:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:25:\"Общие вопросы\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2547\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:715:\"Каждый год сообщество WordPress проводит ежегодный опрос для пользователей и участников сообщества. Ключевые выводы и тенденции, выявляемые в результате этого опроса, часто отражаются в ежегодном обращении State of the Word, публикуются в общедоступных блогах проекта и могут влиять на направление и стратегию проекта WordPress. Проще говоря: этот опрос помогает тем, кто создает WordPress, больше узнать [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6094:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile\"><div class=\"wp-block-media-text__content\">\n<p style=\"font-size:18px\">Каждый год сообщество WordPress проводит ежегодный опрос для пользователей и участников сообщества. </p>\n</div><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"342\" src=\"https://ru.wordpress.org/files/2019/11/image-12-1.png\" alt=\"\" class=\"wp-image-2145 size-full\" srcset=\"https://ru.wordpress.org/files/2019/11/image-12-1.png 768w, https://ru.wordpress.org/files/2019/11/image-12-1-300x134.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></figure></div>\n\n\n\n<p>Ключевые выводы и тенденции, выявляемые в результате этого опроса, часто отражаются в ежегодном обращении <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a>, публикуются в общедоступных блогах проекта и могут влиять на направление и стратегию проекта WordPress.</p>\n\n\n\n<p>Проще говоря: этот опрос помогает тем, кто создает WordPress, больше узнать о том, как и кем используется программное обеспечение. Опрос также помогает руководителям проектов с открытым исходным кодом WordPress больше узнать об опыте наших участников.</p>\n\n\n\n<p>В этом году опрос был переработан и стал заметно короче, поэтому ответы на него займут у вас не так много времени.</p>\n\n\n\n<p>В этом году мы предлагаем пройти вам этот опрос:</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/ru-2022\" target=\"_blank\" rel=\"noreferrer noopener\">На русском</a></div>\n\n\n\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/en-2022\" target=\"_blank\" rel=\"noreferrer noopener\">In English</a></div>\n</div>\n\n\n\n<p>Как и в прошлом году, предлагаются и другие языки: <a href=\"https://wordpressdotorg.survey.fm/fr-2022\">французский</a>, <a href=\"https://wordpressdotorg.survey.fm/de-2022\">немецкий</a>, <a href=\"https://wordpressdotorg.survey.fm/it-2022\">итальянский</a>, <a href=\"https://wordpressdotorg.survey.fm/jp-2022\">японский</a>, и <a href=\"https://wordpressdotorg.survey.fm/es-2022\">испанский</a>. Это шесть наиболее часто используемых языков, помимо английского, основываясь на количестве загрузок программного обеспечения WordPress. Возможно, в 2023 году будут добавлены и другие.</p>\n\n\n\n<p>Сбор данных осуществляется в полном соответствии с <a rel=\"noreferrer noopener\" href=\"https://ru.wordpress.org/about/privacy/\" target=\"_blank\">политикой конфиденциальности WordPress.org</a>: все данные будут анонимизированы и не будут ассоциироваться с IP-адресами и адресами e-mail.</p>\n\n\n\n<p>Опрос открыт до конца 2022 года, его результаты будут опубликованы позже в блоге WordPress.org. </p>\n\n\n\n<p>Помогите распространить информацию об опросе, поделившись им в социальных сетях или иным способом. Чем больше людей пройдут опрос и поделятся своим опытом работы с WordPress, тем больше пользы получит проект в будущем.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Благодарность</h2>\n\n\n\n<p>За помощь в создании, оформлении и переводе на национальные языки опроса, спасибо следующим участникам: <a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Прекращение поддержки старых версий WordPress 3.7-4.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://ru.wordpress.org/news/2022/11/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Nov 2022 09:17:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:25:\"Общие вопросы\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"Релизы\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2544\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:826:\"Команда безопасности WordPress прекратит предоставлять обновления для версий WordPress 3.7–4.0, начиная с 1 декабря 2022 года. Официально WordPress предоставляет поддержку только последней версии программного обеспечения. Команда безопасности исторически практикует предоставление исправлений безопасности в качестве любезности для сайтов с более старыми версиями в ожидании, что сайты будут автоматически обновлены. До сих пор эти исправления включали все [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2294:\"\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/security/\" target=\"_blank\">Команда безопасности</a> WordPress прекратит предоставлять обновления для версий WordPress 3.7–4.0, начиная с 1 декабря 2022 года.</p>\n\n\n\n<p>Официально WordPress предоставляет поддержку только последней версии программного обеспечения. Команда безопасности исторически практикует предоставление исправлений безопасности в качестве любезности для сайтов с более старыми версиями в ожидании, что сайты будут автоматически обновлены.</p>\n\n\n\n<p>До сих пор эти исправления включали все версии WordPress, поддерживающие автоматические обновления. Версии WordPress 3.7 – 4.0 достигли <a rel=\"noreferrer noopener\" href=\"https://ru.wordpress.org/about/stats/\" target=\"_blank\">уровней использования менее 1%</a> от общего числа установок, где польза от предоставления этих обновлений перевешивается затраченными усилиями.</p>\n\n\n\n<p>Сегодня, 30 ноября 2022, выйдут последние обновления для веток 3.7, 3.8, 3.9 и 4.0, в них единственным изменением станет анонсирование прекращения поддержки безопасности и предложение перейти на более свежую версию WordPress.</p>\n\n\n\n<p>Если у вас возникнут проблемы при переходе к новой версии WordPress, вы можете обратиться на <a rel=\"noreferrer noopener\" href=\"https://ru.wordpress.org/support/\" target=\"_blank\">форумы поддержки</a>. Не забывайте о резервном копировании перед внесением изменений на свой сайт.</p>\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Люди WordPress: Михаил Кобзарёв\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://ru.wordpress.org/news/2022/08/people-of-wordpress-mikhail-kobzarev/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Aug 2022 09:05:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2526\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:742:\"Мы продолжаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру.&#160; Сегодня мы беседуем с Михаилом Кобзарёвым, автором плагинов и техноблогером, чье имя и никнейм на слуху у всех, кто интересуется новостями WordPress. — Более 13 лет ты совмещаешь веб-разработку с личным блогом, а последние 5 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:34551:\"\n<p>Мы продолжаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру.&nbsp;</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-1024x683.jpg\" alt=\"\" class=\"wp-image-2531\" srcset=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-300x200.jpg 300w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-768x512.jpg 768w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-1536x1024.jpg 1536w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-2-2048x1365.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Сегодня мы беседуем с <a href=\"https://profiles.wordpress.org/mihdan/\">Михаилом Кобзарёвым</a>, автором плагинов и техноблогером, чье имя и никнейм на слуху у всех, кто интересуется новостями WordPress.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Более 13 лет ты совмещаешь веб-разработку с личным блогом, а последние 5 лет еще и </em></strong><a href=\"https://wp-digest.com/\"><strong><em>WordPress Digest</em></strong></a><strong><em> ведешь. Как удается все совмещать и не разбрасываться, что тебя вдохновляет и чему научился за это время?&nbsp;</em></strong></p>\n\n\n\n<p>Начнем с того, что мой общий стаж в разработке почти 19 лет, за которые я перепробовал все методики управления своим временем и проектами. Плюс после переезда из мегаполиса в деревню я стал работать удаленно задолго до того, как это стало мейнстримом. По этим причинам я выработал для себя определенный график труда и отдыха.</p>\n\n\n\n<p>Во-первых, никакой работы по выходным, праздникам и в отпуске — мозги нужно постоянно разгружать, иначе очень просто выгореть, когда ведешь несколько проектов одновременно и держишь огромные массивы данных в голове, постоянно что-то просчитываешь, прикидываешь, прорабатываешь разные варианты.</p>\n\n\n\n<p>Во-вторых, на протяжении дня обязательны перерывы, во время которых никаких гаджетов и телевизоров быть не должно — глазам тоже нужен отдых. В это время лучше выйти на улицу, пройтись, поглядеть вдаль и помечтать о будущем ) Тут может помочь любой pomodoro таймер.</p>\n\n\n\n<p>В третьих, необходимо соблюдать режим дня (который у меня последнее время немного сбился). Исторически сложилось, что мой рабочий день вот уже много лет начинается в 11 и заканчивается в 19 часов по московскому времени. В Москве это самые удобные часы, чтобы добраться до работы и безболезненно уехать домой, а утром всегда есть время на семью: походы по магазинам или поездка в поликлинику с ребенком.</p>\n\n\n\n<p>Свой блог я начал вести еще когда учился в университете на радиотехника в Туле, он задумывался именно как дневник/записная книжка для себя и одногруппников, где я делился своими открытиями в чудесном мире разработки на РНР, верстки под IE6, Netscape 4 и Opera 6.</p>\n\n\n\n<p>Я очень много поглощаю информации из интернета за день (в основном через RSS как старый добрый олдфаг), особо интересные заметки кладу в закладки для чтения позже. И есть огромное желание делиться этими знаниями с людьми (я помню то время, когда не было интернета и всю информацию мы получали из книг, журналов и энциклопедий), поэтому с появлением Твиттера я стал постить много контента туда, так как&nbsp;под содержимое моего блога.</p>\n\n\n\n<p>Со временем русскоязычный Твиттер стал превращаться в помойку и одновременно с этим появился Телеграм, в котором я был одним из первых бета-тестеров. Мы стали переводить рабочие чаты туда, создавать каналы для своих, так появились сначала закрытые, а потом уже и открытые публично чаты и каналы: WordPress Digest (сюда мы постим новости по WordPress), WordPress Jobs (работа вокруг WordPress), Elementor (чат по конструктору страниц Elementor) и многие другие. Основные можно поглядеть у меня <a href=\"https://www.kobzarev.com/wordpress/wordpress-resources/\">в блоге</a>.</p>\n\n\n\n<p>Вдохновляет меня на все эти подвиги моя семья и мои родители, я им искренне благодарен за знания, которые они в меня вложили в детстве и научили самостоятельности, благодаря которой я много лет занимаюсь самообразованием и стараюсь помогать другим. А вот опыт больших компаний (Apple, Microsoft, Tesla) меня не вдохновляет, так как они всего лишь попали в нужное место в нужное время. Каждый должен наступить на свои грабли, ведь человек не учится на чужих ошибках.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Почему WordPress? Всегда ли сложный проект значит «интересный» для тебя как разработчика?</em></strong></p>\n\n\n\n<p>За эти 19 лет я набрался огромного опыта почти во всех сферах необъятного веба: фронтенд, бэкенд, seo и даже дизайн, перепробовал кучу языков программирования, прошел десятки курсов и прочитал сотни книг, поработал в нескольких крупных компаниях и мелких веб-студий и могу сказать однозначно: WordPress — сила.</p>\n\n\n\n<p>К WordPress я пришел не сразу. Это был долгий тернистый путь. Все начиналось с написания своей CMS в компании Ingate (которая была блочная как текущий Gutenberg и использовала ныне непопулярный XML/XSLT).</p>\n\n\n\n<p>Потом была своя CMS в студии Imagos на чистом РНР4 без фреймворков, которую можно до сих пор встретить на некоторых сайтах.</p>\n\n\n\n<p>А после переезда из Тулы в Москву я попал в информационное агентство Инфорос, где мы делали сайты для МИД, дипломатов, РАН, поднимали свои информационные, новостные порталы, здесь мне пригодился опыт написания своих CMS под нужды заказчиков и мы с коллегами запилили не просто новую CMS, а целую платформу, на которой сейчас крутится около 12к сайтов для сельских газет, они им достались совершенно бесплатно.</p>\n\n\n\n<p>И тут случился кризис в стране и нам пришлось всем временно уйти на удаленку, так как ЗП платить нам перестали, а на дорогу и покушать в Москве нужно было много денег, плюс съемная квартира и маленький ребенок.</p>\n\n\n\n<p>В это время, чтобы прокормить семью, пришлось работать с разными CMS (Joomla, Drupal, ModX) и фреймворками (Zend, Symfony, Laravel, Yii).</p>\n\n\n\n<p>Компания не смогла быстро выйти из этого кризиса и мы с бывшими коллегами покинули занимаемые должности и запустили несколько стартапов разной направленности, которые мы сделали на популярном тогда Битрикс.</p>\n\n\n\n<p>Работая с Битрикс, я испытал много боли и унижения. В итоге мы уперлись в потолок его кастомизации и решили попробовать WordPress, у меня был небольшой опыт работы с ним в то время. Максимум, что я тогда сделал — развернул свой блог на нем и перенес туда все свои заметки за много лет. Так начался мой путь в WordPress.</p>\n\n\n\n<p>Следующие несколько лет с каждым днем проектов на WordPress мне попадалось все больше и больше, как простых так и сложных, копился опыт и я начал писать свои <a href=\"https://profiles.wordpress.org/mihdan/#content-plugins\">бесплатные плагины под WordPress</a>, которые я по сей день дополняю и поддерживаю, новый функционал добавляется за счет донов и отдается бесплатно.</p>\n\n\n\n<p>И вот уже 10 лет я делаю сайты на WordPress, разрабатываю бэкенд для мобильных приложений на WordPress REST API или использую «безголовый» (headless) WordPress для сайтов на React/Vue.</p>\n\n\n\n<p>Это не всегда интересные проекты, но всегда достаточно сложные, высоконагруженные и объемные с большим количеством кастомного кода на бэкенде. Я стараюсь не брать (но в качестве исключения иногда беру) совсем простые проекты и не заниматься доработками чужих, предпочитаю стартапы — там всегда можно найти для себя что-то интересное и ограничивает тебя лишь полет фантазии ))</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Ты родом из маленького села в Магаданской области и сейчас предпочитаешь сельскую местность мегаполисам. Давно ли ты работаешь удаленно, легко ли это и почему выбрал жизнь вне города?</em></strong></p>\n\n\n\n<p>Родился я в поселке Сеймчан («Солнечная долина» по-эвенски) Магаданской области, после окончания школы поступил в ТулГУ в городе Тула на радиотехника и мечтал ремонтировать телевизоры и видеомагнитофоны, но судьба распорядилась иначе и я открыл для себя бесплатный кабинет интернета в Политехе, который меня заворожил, а после того как я случайно нажал CTRL+U на странице <a href=\"http://ya.ru\">ya.ru</a> и увидел разноцветные строки кода — «поплыл» и не могу остановиться до сих пор.</p>\n\n\n\n<p>Несколько лет работал в Туле, потом в Москве, потом по стечению обстоятельств попал в деревню под Тулой и мне тут так стало просто и кайфово, что я больше не стал возвращаться в мегаполис. Тут чистый воздух, свое хозяйство, красота, спокойствие и нет городской суеты и пробок, в которых я проводил по 2-4 часа в сутки, живя в большом городе. И так уже 7 лет я удаленщик, не путайте с фрилансом (работаю официально, фултайм).</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-1024x683.jpg\" alt=\"Фотографии Михаила Кобзарева на отдыхе с сыном\" class=\"wp-image-2529\" srcset=\"https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-300x200.jpg 300w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-768x512.jpg 768w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-1536x1024.jpg 1536w, https://ru.wordpress.org/files/2022/08/Mikhail-Kobzarev-1-2048x1365.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption class=\"wp-element-caption\">Михаил на отдыхе с сыном</figcaption></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Но есть и свои минусы: за продуктами, в больницу, стоматологию, кинотеатр приходится ездить в город, но это не является проблемой, когда у тебя есть автомобиль и четкий распорядок дня, когда ты можешь час-два в день отлучиться по личным вопросам.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Сейчас в профессиональных чатах активно обсуждается тема трудоустройства и возникает ощущение, что работодатели и кандидаты не могут друг друга найти. Ты размещаешь в Дайджесте вакансии и общаешься и с теми, и с другими. Действительно ли существует проблема и что нужно делать, чтобы найти работу или нанять подходящего специалиста?</em></strong></p>\n\n\n\n<p>К сожалению, эта проблема сейчас как снежный ком. Образовалась она не так давно по понятным причинам, в основном из-за оттока специалистов за границу во всех сферах жизни и не только в IT.</p>\n\n\n\n<p>Мы с ребятами-волонтерами на нашем проекте <a href=\"https://wp-digest.com/vacancies/\">WordPress Jobs</a> стараемся помогать обеим сторонам, чтобы компании находили достойных специалистов, а соискатели — работу мечты.</p>\n\n\n\n<p>Сейчас не достаточно просто разместить резюме на сайте HH.ru. Многие компании ушли с рынка и сейчас практически некому заниматься обучением джунов (за исключением таких компаний как Сбер, Яндекс, Тинькофф), все хотят минимум мидлов, которых осталось тоже не так много, поэтому необходимо помимо резюме иметь открытый живой GitHub аккаунт, где рекрутеры смогут увидеть ваши скилы. Желательно крутиться в тематических чатах, куда HR-ы тоже часто заглядывают дабы схантить новых кандидатов. Не стоит забывать про личные блоги (с моего блога на меня приходит 30% заказов) и LinkedIn (правда придется заморочиться с VPN).</p>\n\n\n\n<p>А для компаний один совет — пишите про себя больше и исключительно правду, сейчас всю информацию очень легко проверить, а если работодателя уличат во лжи — доверия от соискателей ждать не стоит. У нас были случаи, когда мы отказывали в размещении вакансий, так как я стараюсь сам лично проверять каждое объявление, «пробивать» компании по открытым базам, общаться с ними лично. Это долго, но снижает процент мошенничества с обеих сторон.</p>\n\n\n\n<p>Мы как раз хотим вынести WordPress Jobs на отдельный домен, доработать его, сделать удобный поиск, интеграцию с биржами типа HH.ru и попытаться давать гарантии как это делают фриланс-биржи, добавить возможность менторинга, обучения, но нужно найти заинтересованных спонсоров и участников проекта, а с этим пока не густо.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Порталы по поиску работы рекомендуют делать отдельные резюме точно подходящие под названия вакансий и писать сопроводительное письмо индивидуально каждому работодателю, это весьма трудоемко и поиск работы может растянуться на месяца. Существует другой подход, аналогичный «воронке продаж»&nbsp; — откликнуться на 1000 вакансий и рассчитывать, что после прохождения 30 собеседований получишь 2-3 предложения о работе. Из-за этого HR специалисты тонут под грудами резюме и подходящие кандидаты, не указавшие в своем резюме все нужные ключевые слова теряются в этом потоке. Есть ли выход из сложившийся практики?</em></strong></p>\n\n\n\n<p>Оба подхода имеют место быть, в каждом из них есть свои плюсы и минусы.</p>\n\n\n\n<p>Первый подход со стороны соискателя позволяет более точечно подстраиваться под вакансии с определенным набором ключевых слов, но на создание такого количества резюме нужно очень много времени и велик шанс ошибиться лишь в одном месте, наплодив ошибку повсеместно, что может негативно сказаться на вас в дальнейшем. Рекрутерам и компаниям здесь проще в поиске соискателя, но не всем нравится копаться в груде одинаковых резюме, где отличается пара абзацев или список скиллов. С их точки зрения это похоже на переспам и плюсов вам особо не добавит. Это больше моё личное мнение и доверять ему на 100% не нужно.</p>\n\n\n\n<p>Второй подход я считаю более надежным и проверенным годами, сам им часто пользуюсь. Соискателю достаточно создать резюме на любой площадке или в своём блоге или на GitHub и откликнуться хоть на 100500 вакансий и вы с уверенностью в 99% получите пару-тройку офферов. HR, конечно, закопаются в огромном количестве откликов, но такая у них работа.</p>\n\n\n\n<p>Тут самое главное найти золотую середину в обоих подходах и составить детализированное резюме. Постараться указать развернуто должность, на которую вы претендуете, все свои hard и soft skills, опыт работы в хронологическом порядке, занимаемую должность, выполняемые обязанности и ваши достижения в каждой из компаний, где вы когда-либо работали.</p>\n\n\n\n<p>Высшее образование в текущих реалиях не является обязательным условием приема на работу, но указать его желательно. Многие компании до сих пор требуют наличие диплома о высшем образовании для отчетности, не более того.&nbsp;</p>\n\n\n\n<p>Обязательно укажите контакты, по которым с вами можно связаться в реальном времени. Если есть какие-то рекомендательные или сопроводительные письма &#8212; тоже добавьте их к вашему резюме.</p>\n\n\n\n<p>Не стоит указывать ничего лишнего.</p>\n\n\n\n<p>Если вы устраиваетесь не в русскоязычную компанию, то сделайте копию вашего резюме на английском языке.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Для WordPress существует огромное количество плагинов и тем, создать сайт можно в считанные минуты, и многие разработчики специализируются на «сборке» сайтов и у них даже не возникает необходимости «заглядывать под капот». В результате работодатели не знают с каким стеком технологий разработчик им нужен, а кандидаты претендуют на работу, которая им не подходит. Можно ли кардинально изменить ситуацию?</em></strong></p>\n\n\n\n<p>Работодатель по факту и не должен это знать, это больше задача HR или тех людей с техническими навыками, кто у вас будет проводить в итоге собеседования. К сожалению, уровень знаний HR сейчас тоже оставляет желать лучшего, и очень часто годные специалисты не проходят их отсев, но тут только самим проводить интервью.</p>\n\n\n\n<p>Ну и стоит справедливо заметить, что существует огромное количество проектов, где технические навыки для соискателя вообще не нужны. Нет необходимости знать PHP, JavaScript, HTML, SQL, чтобы поставить пачку плагинов, потыкать пару кнопок в админке и запустить сайт для проверки какой-то гипотезы или прощупывания ниши. Мы таких специалистов в своём сообществе называем «Модератор админки».</p>\n\n\n\n<p>А есть очень сложные, запутанные проекты с кучей логики, микросервисов и высокой нагрузкой, где без технических знаний ты и дня не продержишься.</p>\n\n\n\n<p>Поэтому вакансии должен создавать не руководитель и не менеджер проекта, а технически подкованный специалист, ваш будущий коллега, который на пальцах может расписать в резюме, что же вас ждет на будущей работе.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Опытные разработчики часто находятся в латентном поиске, то есть сидят и ждут, когда работодатель придет и предложит. Это работает? Что делать работодателю, которому нужен специалист на сложный высоконагруженный проект? Есть ли они вообще такие?</em></strong></p>\n\n\n\n<p>Я сам постоянно нахожусь в латентном поиске и жду «работу мечты», где мне будет интересно и за это будут соответствующе платить. Это работает, работало и будет работать. И таких специалистов в режиме ожидания достаточно много, обычно они собираются в сообществах в социальных сетях и прекрасно знают друг друга.</p>\n\n\n\n<p>Поэтому, если вам нужно найти реально хорошего профессионала на высоконагруженный проект, то нет ничего лучше, чем «сарафанное радио». Гуру обычно уже где-то работают, но если знакомый коллега предложит что-то более интересное, то, скорее всего, у работодателя появится шанс схантить к себе этого человека. Тут главное внимательно посмотреть соцсети, блоги и GitHub аккаунт, чтобы не попасть на простого «разговорника», которые встречаются в любом сообществе. На словах они гуру, а по факту не далеки от джунов.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что ты посоветуешь тем, кто хочет начать свою карьеру как WordPress-разработчик? Многие курсы предлагают трудоустройство после обучения. Насколько это реально?</em></strong></p>\n\n\n\n<p>Посоветую только одно — не бояться. WordPress не страшный и не монструозный как его обычно описывают поклонники классического ООП и любители фреймворков типа Symfony и Laravel. У него есть EAV (Entity Attribute Value) вместо ORM и EDA (Event Driven Architecture) вместо MVC. Именно из-за этих отличий у многих разработчиков возникает нелюбовь к WordPress — они не понимают архитектуру и не допускают мысли, что почерпнутые в книгах по ООП подходы не являются единственно правильными. Никто не запрещает использовать ООП, PSR.</p>\n\n\n\n<p>WordPress уже давно не простенькая CMS для создания бложиков. У нее под капотом более <a href=\"https://codex.wordpress.org/WordPress_APIs\">десятка различных API для разработчика</a>, весь код покрыт юнит-тестами, соответствует стандартам WPCS (WordPress Coding Standards для PHP_CodeSniffer), простой интерфейс для создания CRUD постепенно внедряется так любимое многими разработчиками ООП. На этом движке можно построить проект любой сложности, главное делать это с головой (MVC, headless, CMF).</p>\n\n\n\n<p>Не просто так же WordPress <a href=\"https://w3techs.com/technologies/overview/content_management\">уже занял 43%</a> всемирного рынка сайтов в вебе.</p>\n\n\n\n<p>Единственное чего пока лично мне не хватает — это удобного интерфейса для работы с кастомными таблицами и поддержки composer для пакетов. Но мы справляемся при помощи WP_List_Table (базовый класс для создания таблиц со списком чего угодно в WordPress. Таблицы поддерживают технологию AJAX. На базе этого класса выводится все виды таблиц в админ-панели WordPress).</p>\n\n\n\n<p>Трудоустройство после курсов вполне реально и многие компании именно так и поступают — сами себе выращивают специалистов и пытаются их как-то заинтересовать и замотивировать, чтобы готовые к употреблению разработчики не разбежались (подбирают интересные проекты, благодарят финансово).</p>\n\n\n\n<p>Если вы думаете, что на WordPress нельзя заработать более 60.000 рублей в месяц, то вы ошибаетесь, рынок труда просто огромен, количество проектов еще больше и ценником в 300.000 рублей в месяц уже никого не удивишь.</p>\n\n\n\n<p>Читайте книги, гуглите Яндексом и почаще посещайте <a href=\"https://wp-kama.ru/\">ВП-Каму</a>. Подписывайтесь на <a href=\"https://t.me/+RArNVwv2tJi2CNFk\">WordPress Digest</a>.</p>\n\n\n\n<p>Дерзайте! Всё будет WordPress!</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Вопросы и работа с изображениями:&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/oglekler/\" target=\"_blank\">Глеклер Ольга</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:54:\"\n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Большой московский митап #20 — онлайн-трансляция 25 августа 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://ru.wordpress.org/news/2022/08/moscow-meetup-20-online-broadcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Aug 2022 07:48:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2508\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:752:\"25 августа 2022 в 19:00 стартует онлайн-трансляция Большого московского митапа # 20 и всех, кто не сможет присутствовать лично, приглашаем присоединиться к просмотру на YouTube. Программа митапа Денис Янчевский расскажет про разработку нативных Gutenberg-блоков,&#160; Николай Миронов — про то, как легко и просто создавать Gutenberg-блоки практически без программирования,&#160; Анатолий Куликов — как разработать чат-бота. Это [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6536:\"\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/moscow-meetup-20.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://ru.wordpress.org/files/2022/08/moscow-meetup-20-1024x576.jpg\" alt=\"\" class=\"wp-image-2515\" srcset=\"https://ru.wordpress.org/files/2022/08/moscow-meetup-20-1024x576.jpg 1024w, https://ru.wordpress.org/files/2022/08/moscow-meetup-20-300x169.jpg 300w, https://ru.wordpress.org/files/2022/08/moscow-meetup-20-768x432.jpg 768w, https://ru.wordpress.org/files/2022/08/moscow-meetup-20.jpg 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong>25 августа 2022 в 19:00</strong> стартует онлайн-трансляция Большого московского митапа # 20 и всех, кто не сможет присутствовать лично, приглашаем присоединиться к просмотру на <a href=\"https://www.youtube.com/watch?v=zwOXG6f4ego\">YouTube</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Программа митапа</h2>\n\n\n\n<ul><li><a href=\"https://profiles.wordpress.org/denisco/\">Денис Янчевский</a> расскажет про разработку нативных Gutenberg-блоков,&nbsp;</li><li><a href=\"https://profiles.wordpress.org/solidcreature/\">Николай Миронов</a> — про то, как легко и просто создавать Gutenberg-блоки практически без программирования,&nbsp;</li><li><a href=\"https://profiles.wordpress.org/anatolykulikov/\">Анатолий Куликов</a> — как разработать чат-бота.</li></ul>\n\n\n\n<p>Это далеко не все актуальные WordPress темы, и если вы хотите предложить свою тему или выступить на следующем митапе в Москве, смело обращайтесь к <a href=\"https://t.me/solidcreature\">Николаю Миронову</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Почему стоит присоединиться к онлайн-трансляции</h2>\n\n\n\n<p><em>Вы сможете:</em></p>\n\n\n\n<ul><li>Задать свои вопросы в чат на YouTube по теме выступлений, а также на любые другие связанные с WordPress темы, </li><li>Помочь другим участникам своими ответами,</li><li>Пообщаться с единомышленниками и хорошо провести время.</li></ul>\n\n\n\n<p>Запасайтесь едой и напитками <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<h2 class=\"wp-block-heading\">Почему стоит прийти лично</h2>\n\n\n\n<p>WordPress митап — это дружественная атмосфера, открытое общение и обмен опытом между разработчиками, дизайнерами, интернет-маркетологами, копирайтерами, тестировщиками, SEO-специалистами, владельцами сайтов, блоггерами и многими другими. Самое интересное начинается с момента появления на горизонте пиццы — не стесняйтесь общаться, задавать вопросы, есть и слушать чужие беседы.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-1024x683.jpg\" alt=\"Коллаж из фотографий с московских митапов, на которых участники беседуют\" class=\"wp-image-2510\" srcset=\"https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-300x200.jpg 300w, https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-768x512.jpg 768w, https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-1536x1024.jpg 1536w, https://ru.wordpress.org/files/2022/08/WordPress-Meetup-Moscow-2048x1366.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>А еще митап — это отличная возможность внести свой вклад в развитие сообщества и попробовать себя в новом качестве.</p>\n\n\n\n<p>На мероприятие <strong>требуется фотограф-волонтер</strong> — хорошая возможность получить удовольствие от процесса, потренироваться и поэкспериментировать.</p>\n\n\n\n<p>А также мы <strong>ищем модератора онлайн-трансляции</strong> — следить за сигналом и задавать вопросы спикерам из YouTube-чата. </p>\n\n\n\n<p>Если вы готовы помочь — обращайтесь к <a href=\"https://t.me/solidcreature\">Николаю Миронову</a>, а для всех остальных участников — <a href=\"https://www.meetup.com/ru-RU/wordpress-moscow/events/287181506/\">регистрация все еще открыта</a>.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Отложите свои планы на вечер четверга, приходите или присоединяйтесь к трансляции — держите руку на пульсе WordPress новостей и оставайтесь на связи с сообществом в какой бы точке мира вы не находились!</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Ссылка на онлайн-трансляцию: <a href=\"https://www.youtube.com/watch?v=zwOXG6f4ego\">https://www.youtube.com/watch?v=zwOXG6f4ego</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Люди WordPress: Николай Миронов\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://ru.wordpress.org/news/2022/08/people-of-wordpress-nikolay-mironov/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Aug 2022 19:41:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2500\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:792:\"Мы продолжаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру. В преддверии Большого московского митапа #20 мы беседуем с его организатором Николаем Мироновым — разработчиком, спикером, стримером, автором курсов и обучающих видео. — Ты постоянно пробуешь что-то новое и совмещаешь разработку на WordPress с другими [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17966:\"\n<p>Мы продолжаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-1024x683.jpg\" alt=\"\" class=\"wp-image-2505\" srcset=\"https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-300x200.jpg 300w, https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-768x512.jpg 768w, https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-1536x1024.jpg 1536w, https://ru.wordpress.org/files/2022/08/people-of-wordpress-Nikolay-Mironov-2-2048x1365.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>В преддверии Большого московского митапа #20 мы беседуем с его организатором <a href=\"https://profiles.wordpress.org/solidcreature/\">Николаем Мироновым</a> — разработчиком, спикером, стримером, автором курсов и обучающих видео.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Ты постоянно пробуешь что-то новое и совмещаешь разработку на WordPress с другими личными проектами и активным участием в жизни сообщества уже более десяти лет. Как это все сочетается, откуда идеи, энергия? Над чем сейчас работаешь и что в планах?</em></strong></p>\n\n\n\n<p>Тут две принципиальных составляющих. Первое, я кайфую от процесса, неважно записываю ли ролики, организую ли митап или программирую — все это топливо, которое позволяет мне двигаться дальше. Второе — те вещи, которые приносят деньги, позволяют и содержать семью и поддерживать баланс между работой и творчеством.</p>\n\n\n\n<p>Основное направление деятельности за последние полгода — это развитие видеостудии. Несмотря на то, что youtube-каналу WordPrеss Moscow уже несколько лет, профессиональная запись видео — совершенно новая для меня область. Пока прокачиваю техническую составляющую. Надеюсь это заметно по качеству роликов, которые выходят на канале.</p>\n\n\n\n<p>Из планов до конца года — развивать youtube-канал, социальные сети, искать спонсоров, предлагать новые форматы встреч: картинг, боулинг, пейнтбол, игра в мафию, чередуя их с классическими митапами.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Пока глобальное сообщество только планирует возобновление физических митапов, мы же их уже во всю проводим. В чем идея предстоящего митапа и есть ли планы на следующие?</em></strong></p>\n\n\n\n<p>Да, пандемия сильно подкосила живые встречи, к концу 19-го года мы вышли на стабильные 50+ участников. А первые живые встречи в этом году собирали по 10-15 человек, желающих выступить было мало и приходилось экспериментировать с форматами. Например, были игры в настолки, или в одну из встреч мы сели небольшим кружочком и проговорили о WordPress 2,5 часа. Просто накидывая темы, задавая вопросы, рассказывая кейсах и делясь опытом. Глобальной идеи у предстоящего митапа нет, но есть амбиции. Надеюсь, 20-й митап станет серьезным шагом в развитии WordPress-сообщества в Москве.<br><br></p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"612\" height=\"345\" src=\"https://www.youtube.com/embed/4LICB-mES3k?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=ru-RU&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div><figcaption class=\"wp-element-caption\">Приглашение на большой московский митап WordPress-разработчиков №20</figcaption></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Ты стоял у истоков организации WordPress митапов в Москве и этот митап должен иметь номер #65. Почему нумерация сбилась и что еще изменилось за это время?</em></strong></p>\n\n\n\n<p>Ну не совсем так, в 13-м году я впервые попал на митап, который устраивал Константин Ковшенин. Это был взрыв мозга: интересные люди, классные темы, возможность задать вопросы или рассказать что-нибудь самому. Костя заряжал своей энергетикой и мотивировал. Я посещал каждый митап, и где-то на 4 встрече выступил с докладом про сайты-портфолио. Доклад получился классным и Костя пригласил выступить на WordCamp Russia 2013, первом WordCamp’е в России. Так прошло 6 лет, выступал с докладами на митапах и был спикером на каждом WordCamp’е в Москве. Так сказать, активный участник сообщества, но в организации почти не участвовал. Летом 2017 года прошел последний митап и наступило затишье.</p>\n\n\n\n<p>Эстафету продолжил <a href=\"https://ru.wordpress.org/news/2022/07/people-of-wordpress-denis-yanchevskiy/\">Денис Янчевский</a>, он организовал официальную группу WordPress Krasnogorsk, а через несколько встреч, митапы перебрались в Москву и на meetup.com появился <a href=\"https://www.meetup.com/ru-RU/wordpress-moscow/\">WordPress Moscow</a>. Так как WordPress Moscow получилось производной от WordPress Krasnogorsk, а не предыдущих 45 митапов, то и нумерацию мы начали с 1. Где-то на третьей встрече я предложил свою помощь и стал участвовать в организации митапов. На тот момент у меня не было глобальных целей, мне нравилось тусовка и хотелось внести свой вклад в подготовку мероприятий. До начала пандемии мы делили организаторские обязанности 50/50. Во время пандемии было вынужденное затишье с редкими онлайн-встречами, ну и в «новом сезоне» я уже организую митапы самостоятельно.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что дает участие в митапах для слушателей, спикеров и волонтеров? Как получить максимум пользы от посещения</em></strong>?</p>\n\n\n\n<p>Каждый может найти в митапах полезное для себя. Для новичков это возможность задать вопросы, получить помощь, на живых примерах увидеть направления и пути развития. Для опытных разработчиков — найти единомышленников, партнеров, подрядчиков или новые заказы. Для спикеров — возможность «материализовать» свои знания и умения, проверить их актуальность, получить статус эксперта, заработать «социальные очки», плюс митап — хорошая площадка для тренировки ораторских навыков, здесь лояльная аудитория и нет завышенных требований как на больших конференциях.</p>\n\n\n\n<p>Организация большого мероприятия затратный процесс, требующий много сил, внимания, времени. Это ответственность. Но когда все получается, когда участники уходят заряженные, когда каждый получил пользу — приходит умиротворение, чувство наполненности, понимание, что ты на своем месте и делаешь свое дело. Для волонтеров это возможность разделить эти чувства, быть причастными к большому событию.</p>\n\n\n\n<p>Чтобы получит пользу от митапа для начала нужно решить а для чего ты туда идешь. Хочешь найти подрядчиков или новый проект — распечатай визитки, чтобы проще налаживать коммуникацию. Заинтересовала конкретная тема доклада — узнай побольше о спикере, подготовь вопросы, конспектируй во время выступления. Есть затык в проекте, нужна помощь или совет, перерывы между докладами — лучшее время. Обычно участники делятся на небольшие группы и что-то обсуждают, ищи схожую тему, задавай вопросы, будь коммуникабелен. В идеале, приди с ноутбуком, сделай так, чтобы суть проблемы можно было быстро увидеть, получить доступ к коду и настройкам сайта. Так шанс получить помощь оперативно намного выше.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что делать тем, кто хочет выступить и какие темы актуальны для митапов?</em></strong></p>\n\n\n\n<p>Двери для спикеров всегда открыты. Для начала разговора напишите мне в <a href=\"https://t.me/solidcreature\">телеграм</a>. У меня ровно один критерий к докладам — тема должна быть интересна аудитории сообщества.</p>\n\n\n\n<p>Если человек выступает в первый раз, то предварительно проводим тестовый онлайн-прогон доклада. Это помогает исправить мелкие ошибки, правильно расставить акценты, потренировать подачу материала.</p>\n\n\n\n<p>Очень часто люди недооценивают свои знания и опыт. Тысячу раз я слышал «ну что я буду рассказывать, это и так все знают». Зачастую достаточно 2-3 интересных кейса или нестандартная предметная область, чтобы подготовить хороший доклад.</p>\n\n\n\n<p>Иногда люди активно сопротивляются и не хотят выступать на публике. Так для 19-го митапа мне пришлось включить всю свою харизму, и силу убеждения, чтобы у митапа появились докладчики. <br><br></p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"612\" height=\"345\" src=\"https://www.youtube.com/embed/8zgPyP2Zwzc?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=ru-RU&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Интересна ли спонсорам поддержка митапов и что сообщество WordPress может им предложить?</em></strong></p>\n\n\n\n<p>У нас вполне понятная и состоявшаяся аудитория, это молодые люди 25-35 лет, с опытом разработки от 3-х лет и более. Наиболее интересными мы можем оказаться хостинг-компаниям, онлайн-школам, компаниям, которым нужны опытные wordpress-разработчики. Помимо живых мероприятий, где количество участников ограничено, у меня в планах активная прокачка youtube-канала и социальных сетей.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Можем ли мы рассчитывать на проведение WordCamp в ближайшем будущем? И чем принципиально отличается конференция он митапа?</em></strong></p>\n\n\n\n<p>У меня уже была попытка стать организатором WordCamp’а в 2020-м году, но выбранная дата 30-го мая оказалась неудачной — мы попали на самый пик ковидных ограничений в Москве.</p>\n\n\n\n<p>Конференция это намного больший масштаб, больший уровень ответственности и совсем другие временные затраты. Да, планы на WordCamp 2020 были грандиозными, но сейчас юношеский задор пропал и в ближайшие полгода–год ничего подобного не планирую.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что делать тем, кто не может посещать митапы, как оставаться в курсе новостей и поддерживать связь с сообществом?</em></strong></p>\n\n\n\n<p>В этот раз попробуем организовать онлайн-трансляцию, посмотрим на сколько это получится технически. А чтобы не пропустить ссылку на трансляцию — советую вступить в <a href=\"https://vk.com/wordpressmoscow\">нашу группу VK</a> и <a href=\"https://t.me/wpmeetup\">ламповый телеграм-чат</a>. Ну и подписаться на <a href=\"https://www.youtube.com/c/WordPressMoscow\">youtube-канал</a>, конечно же.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Вопросы и работа с изображениями: <a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/oglekler/\" target=\"_blank\">Глеклер Ольга</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Люди WordPress: Екатерина Леурдо\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://ru.wordpress.org/news/2022/08/people-of-wordpress-ekaterina-leurdo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Aug 2022 18:57:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2487\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:772:\"Мы продолжаем серию интервью с участниками русскоязычного сообщества WordPress, объединяющем разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру. Сегодня мы беседуем с Екатериной Леурдо, фулстек разработчиком из Москвы с более чем 10-летним стажем, спикером и активным участником русскоязычного комьюнити. Она известна как Катя и ее красивую фамилию вспоминают редко, так как спутать ее просто [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15281:\"\n<p>Мы продолжаем серию интервью с участниками русскоязычного сообщества WordPress, объединяющем разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1024x683.jpg\" alt=\"Екатерина с микрофоном\" class=\"wp-image-2489\" srcset=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-300x200.jpg 300w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-768x512.jpg 768w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption class=\"wp-element-caption\">WordPress митап #13, Санкт-Петербург 2018 год</figcaption></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Сегодня мы беседуем с <a href=\"https://profiles.wordpress.org/katyatina/\">Екатериной Леурдо</a>, фулстек разработчиком из Москвы с более чем 10-летним стажем, спикером и активным участником русскоязычного комьюнити. Она известна как Катя и ее красивую фамилию вспоминают редко, так как спутать ее просто не с кем.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><em><strong>— На тебя часто ссылаются, другим разработчикам нравится с тобой работать и общаться, тебя высоко ценят как профессионала. Как тебе удалось?</strong></em></p>\n\n\n\n<p>Я переквалифицировалась в веб-разработчика, когда была в декрете. Маленький ребенок, социальная изоляция и отсутствие денег на платное обучение (да и курсов хороших тогда еще не было) заставили меня очень много общаться в телеграм-чатах комьюнити. На вежливый и грамотно сформулированный вопрос я всегда получала ответ, это очень помогало и вдохновляло двигаться дальше. Через некоторое время я уже сама могла ответить на некоторые вопросы, так росли мои «активы» в комьюнити. Я так привыкла общаться и помогать, что как только пошла на курс php в онлайн-школе, сразу же вступила в местный чат, где начала консультировать. Там я нашла свою первую работу в команде: Дима Минка (привет!) написал мне в личку: «Я вижу, ты активно помогаешь ребятам, наверное, у тебя очень много свободного времени. Давай-ка я его частично займу». С Димой мы проработали два счастливых года.<br>Через некоторое время я психовала в чате WordPress разработчиков перед первым в жизни серьезным собеседованием на позицию в крутом московском офисе. Один из местных корифеев писал мне в ответ: «Да ты не волнуйся. Зададут сложный вопрос &#8212; отпросись как будто в туалет и пиши нам!»<br>Самое смешное &#8212; это то, что куратор команды, в которую я шла, оказывается, был в том же чате, и всё это читал. Собеседование оказалось не страшным, ребята посмотрели мое тестовое задание и сказали «добро пожаловать в команду».<br>В общем, тусовка &#8212; это наше всё, и, конечно, я берегу и выращиваю эти горизонтальные связи.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Ты работала с различными CMS, почему остановилась на WordPress?</em></strong></p>\n\n\n\n<p>Когда я решила переквалифицироваться в веб-разработчика, я банально посмотрела рейтинги CMS, чтобы выбрать самую популярную. В то время это была Joomla!. Я сделала на ней несколько проектов, а потом заказчики стали просить WordPress, который как раз вовсю «набирал обороты». Я быстренько пересела на WordPress и не расстаюсь с ним вот уже около 10 лет.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><em><strong>— Можно ли успешно трудиться с 9:00 до 18:00 и все остальное время про работу не вспоминать?</strong></em></p>\n\n\n\n<p>Про работу? Конечно! Про программирование? Нет! Во-первых, у нас как на беговой дорожке, остановился &#8212; едешь назад. Надо много учиться. Во-вторых, мы все очень любим прогать. Однажды во времена локдауна мы, участники WordPress чата, решили собираться в zoom по пятницам с пивом. И вот мы собрались, поговорили о том о сем, а потом у кого-то обнаружился новый плагин, и он такой: давайте покажу. Одиннадцать часов вечера, мы сидим и обсуждаем код. Подходит мой муж, заглядывает через плечо и говорит: вот вы <strong><em>*</em></strong> (странные).</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— В сообществе есть женщины дизайнеры, блогеры, специалисты поддержки, фронтенд и бекенд разработчики, но если в целом девочек мало, то фулстек и бекендеров можно пересчитать по пальцам. Ты сама собеседуешь разработчиков и имеешь представление о соотношении специалистов. Действительно ли женщин мало или они просто тихо работают и профессиональная тусовка им без надобности?</em></strong></p>\n\n\n\n<p>Я состою в нескольких группах женщин-программистов и могу уверенно сказать, что нас много, и фронтов, и бэков, во всех технологиях. Может быть еще именно WordPress разработчиков не так много, потому что девочки очень практичные, а есть мнение, что php &#8212; это «вчерашний день», они и идут учить Pyton или Java.<br>Что касается тусовки, часто девочки не идут в нее, потому что боятся грубых и ехидных программистов. Ну что сказать, в этом что-то есть. Но подтрунивают в основном над теми, кто не может корректно сформулировать вопрос. Например, классическое «я куда-то нажала и всё исчезло» вызовет шквал иронии, а подробно описанная проблема будет решена. На самом деле, все помнят, как начинали с нуля.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"510\" src=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-1024x510.jpg\" alt=\"Групповая фотография после митапа, Екатерина одна из нескольких женщин на фотографии\" class=\"wp-image-2490\" srcset=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-1024x510.jpg 1024w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-300x150.jpg 300w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-768x383.jpg 768w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-1536x766.jpg 1536w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-1-2048x1021.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption class=\"wp-element-caption\">WordPress митап #6, Москва 2019 год</figcaption></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Имеет ли в принципе значение мальчик/девочка? Нужно ли стараться сбалансировать команду или это не важно?</em></strong></p>\n\n\n\n<p>Ну я бы хотела, чтобы в команде были девочки! Я бы могла обсудить платьице и всё такое. А так приходится идти с этим к дизайнерам или проджект-менеджерам.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Как привлечь больше женщин к участию в жизни сообщества?</em></strong></p>\n\n\n\n<p>Честно говоря, нет рецепта. Если я сталкиваюсь с кем-то «извне», я, конечно, зову к нам, ведь у нас гораздо веселее чем на StackOverflow.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2-1024x515.jpg\" alt=\"Групповая фотография после митапа, Екатерина одна женщина на фотографии\" class=\"wp-image-2491\" srcset=\"https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2-1024x515.jpg 1024w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2-300x151.jpg 300w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2-768x386.jpg 768w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2-1536x773.jpg 1536w, https://ru.wordpress.org/files/2022/08/Ekaterina-Leurdo-2.jpg 1578w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption class=\"wp-element-caption\">WordPress митап #9, Москва 2019 год</figcaption></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Уже будучи фрилансером ты неоднократно повышала квалификацию, проходила различные курсы. Насколько часто нужно обращаться к курсам и как их правильно выбрать?</em></strong></p>\n\n\n\n<p>Как я уже упоминала, я все время учусь. Ну и когда читаешь статью, ты ее прочитал, и всё. Курс, даже с автоматической проверкой тестами, заставляет поработать, и результат гораздо лучше. Ещё эффективнее, конечно, курсы с преподавателем, живыми лекциями и своим сообществом, где можно общаться с единомышленниками и получать поддержку. Но такие курсы требуют значительных усилий, там дедлайны, тяжело учиться без отрыва от работы, поэтому нужно рассчитывать свои силы, чтобы не выгореть.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что теперь в твоих планах — личные проекты, идеи, которые хочется реализовать, желание или потребность изучить что-то новое?</em></strong></p>\n\n\n\n<p>Я активно изучаю Gutenberg, потому что это уже стандарт для администраторов WordPress, а также потому что он активно развивается, и за этим «паровозом» надо бежать. Ещё я сейчас стала уделять больше внимания фундаментальным основам, логике программирования, так как уверена, что это улучшит мой код.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Что ты посоветуешь тем, кто хочет сменить профессию и рассматривает разработку на WordPress как один из вариантов? Как понять «твое/не твое»?</em></strong></p>\n\n\n\n<p>Я думаю, надо сделать пару проектов, и если отторжения не будет, значит можно погружаться в WordPress. Ведь это может быть только по любви.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Вопросы и работа с изображениями:&nbsp;<a rel=\"noreferrer noopener\" href=\"https://profiles.wordpress.org/oglekler/\" target=\"_blank\">Глеклер Ольга</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Люди WordPress: Денис Янчевский\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://ru.wordpress.org/news/2022/07/people-of-wordpress-denis-yanchevskiy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jul 2022 13:25:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2458\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:754:\"Мы начинаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру. Это интервью было записано в начале июня 2022 года. Сегодня мы беседуем с Денисом Янчевским, разработчиком, организатором конференций WordCamp в России и московских митапов, переводчиком и автором обучающих видео. — Денис, ты уже 12 лет [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:35135:\"\n<p>Мы начинаем серию интервью с участниками русского сообщества WordPress, объединяющем русскоговорящих разработчиков, переводчиков, пользователей и владельцев сайтов по всему миру.</p>\n\n\n\n<p>Это интервью было записано в начале июня 2022 года.</p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/07/Янчевский-Денис.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/07/Янчевский-Денис-1024x683.jpg\" alt=\"Денис Янчевский - WordPress-разработчик, спикер,\nорганизатор конференций и митапов,\nавтор плагинов и переводчик\" class=\"wp-image-2459\" srcset=\"https://ru.wordpress.org/files/2022/07/Янчевский-Денис-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/07/Янчевский-Денис-300x200.jpg 300w, https://ru.wordpress.org/files/2022/07/Янчевский-Денис-768x512.jpg 768w, https://ru.wordpress.org/files/2022/07/Янчевский-Денис.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Сегодня мы беседуем с <a href=\"https://profiles.wordpress.org/denisco/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/denisco/\" target=\"_blank\" rel=\"noreferrer noopener\">Денисом Янчевским</a>, разработчиком, организатором конференций WordCamp в России и московских митапов, переводчиком и автором обучающих видео.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><em><strong>— Денис, ты уже 12 лет работаешь с WordPress и половину этого времени принимаешь активное участие в жизни русскоязычного сообщества. Расскажи, как пришел и почему остался, что зацепило?</strong></em></p>\n\n\n\n<p>Есть такой плагин — Cyr-To-Lat, позволяющий автоматически преобразовывать русские буквы в английские в адресах страниц. В 2015 году он находился в заброшенном состоянии и имел ряд особенностей, мешающих мне в повседневной работе. Я набросал плагин на основе своих наработок, зарегистрировался на wp.org и 13 марта 2015 года представил свой первый плагин миру <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Обычно, заброшенный плагин — это скорее плохо, но в данном случае он мотивировал меня разработать свое решение и вступить в сообщество.</p>\n\n\n\n<p>Ну а дальше всё закрутилось как-то само собой. Клиент жалуется, что в плагине всё на английском — так надо перевести, что-то не так в ядре — надо написать патч, хочется отвлечься от рутины и встряхнуться — организуем митап и т.д. На каждом направлении я встречал интересных людей, которые расширяли кругозор и помогали двигаться дальше. Например, на протяжении 4 лет мы традиционно собираемся в Красногорском городском парке на <a href=\"https://vk.com/album-167969562_263313380\" data-type=\"URL\" data-id=\"https://vk.com/album-167969562_263313380\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress-шашлыки</a> (митап в формате пикника). Многие участники с нами с самого начала, с некоторыми я общаюсь за пределами WordPress-мероприятий, просто как с друзьями.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Не стало ли скучно за это время, было ли за это время желание попробовать что-то новое?</em></strong></p>\n\n\n\n<p>Участие в сообществе дело добровольное, поэтому, никто не осуждает, если один из участников решает прекратить свою волонтерскую деятельность. У всех своя жизнь и свои причины участия в сообществе в текущий момент. Например, меня в сообщество привела работа, поэтому пока я разрабатываю решения на WordPress — я так или иначе буду сталкиваться с инфраструктурой этой CMS и участвовать в ее развитии <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> В то же время, за годы в сообществе, я познакомился с другими активными участниками русского сегмента, мы периодически обсуждаем переводы, нововведения на wordpress.org и в ядре, какие-то моменты по форуму поддержки и т.д. Общение превратилось в работу коллектива, а участие в сообществе — в образ жизни.</p>\n\n\n\n<p>Но всё это не говорит о том, что нельзя параллельно пробовать что-то новое. Я как фрилансер периодически сталкиваюсь с другими CMS или самописными решениями. Да и сам WordPress вносит разнообразие. Например, после внедрения блочного редактора появилась необходимость изучать React. Чем не новое? <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><br>Но и внутри сообщества вне технической области тоже можно менять направление деятельности. На wordpress.org <a href=\"https://make.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">множество команд</a>: маркетинг, дизайн, обучение, переводы и т.д. Всегда можно попробовать что-то другое, если текущее перестало вдохновлять.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Какой самый интересный или необычный проект был в твоей практике?</em></strong></p>\n\n\n\n<p>Из необычных, наверное, разработка сайта про японские унитазы. Этот проект был лет 10 назад, но я до сих пор его помню. Там не было особо каких-то технологий, просто сайт с товарами. Но самая идея, произвела на нас, ребят из маленького промышленного города, довольно сильное впечатление. Сейчас это вряд ли кажется чем-то необычным. Но тогда все эти подсветки, подогревы, музыкальное сопровождение, струи воды и т.д. выглядели захватывающе <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Из интересных я выделю два: оптимизация сайта регионального СМИ и разработка площадки для публикации творческих проектов. Эти проекты выполнялись в разное время и тоже довольно давно, но каждый из них позволил мне научиться чему-то новому в своё время.</p>\n\n\n\n<p>Оптимизация сайта дала возможность погрузиться в механизмы ядра WordPress, найти узкие места реализации ядра. WordPress — универсальная CMS, которая хорошо подходит для блога или корпоративного сайта, но начинает проседать, когда нужно делать сложные элементы под высокой нагрузкой и приходится выкручиваться, заменяя готовые решения ядра — своими. С этой задачей в своё время столкнулись разработчики WooCommerce и с того времени многое переписали в своём плагине <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> На одном из митапов я делал доклад по этой работе «<a rel=\"noreferrer noopener\" href=\"https://www.youtube.com/watch?v=wD0FcLokcZ4\" target=\"_blank\">Как сократить время до получения первого байта</a>».</p>\n\n\n\n<p>Второй проект, площадка — предоставила возможность поработать с темой личных кабинетов, редактором контента на публичной части. Множество пользователей регистрируются, вносят свои работы, кто-то их модерирует, оценивает, а тебе нужно, чтобы это всё правильно отображалось, фильтровалось и стабильно работало.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><em><strong>— Как работа и участие в жизни сообщества сочетаются с семьей и личной жизнью?</strong></em></p>\n\n\n\n<p>Судя по своему опыту и общению с другими людьми — баланс в жизни, в целом, штука непростая. А когда в семье есть увлечённый человек или два, так вообще труба :-D. Мне в этом плане нравится сериал <a href=\"https://www.kinopoisk.ru/series/719481/\" data-type=\"URL\" data-id=\"https://www.kinopoisk.ru/series/719481/\" target=\"_blank\" rel=\"noreferrer noopener\">Остановись и гори</a> (в оригинале Halt and Catch Fire), там в том числе показана семейная пара и как они живут в этих постоянных «качелях».</p>\n\n\n\n<p>Я фрилансер и работаю удаленно, как и моя жена, поэтому моя работа, жизнь, деятельность в сообществе и хобби тесно переплетены друг с другом уже довольно давно. Думаю, многие смогли прочувствовать этот формат взаимодействия на себе во время изоляции из-за пандемии Covid-19. Такой образ жизни требует выдержки и взаимного уважения.</p>\n\n\n\n<p>Мне повезло и моя жена отчасти разделяет мою деятельность в WordPress и мою работу. Мы как-то вместе были на WordCamp в Петербурге и регулярно всей семьей выбираемся на WordPress-пикники. Этот формат мероприятий в целом получился семейный, поэтому и мы можем развеяться, и дочка поиграть с другими детьми.</p>\n\n\n\n<p>В остальном, думаю, всё как у всех. Нужно определять для себя важное и следить за таймингами того, что ты делаешь. Со временем это превращается в привычку и ты уже не особо задумываешься о том как живут «обычные» люди.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2022/07/Денис-Янчевский.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://ru.wordpress.org/files/2022/07/Денис-Янчевский-1024x683.jpg\" alt=\"Серия фотографий Дениса Янчевский с семьей и на WordPress мероприятиях с другими участниками\" class=\"wp-image-2460\" srcset=\"https://ru.wordpress.org/files/2022/07/Денис-Янчевский-1024x683.jpg 1024w, https://ru.wordpress.org/files/2022/07/Денис-Янчевский-300x200.jpg 300w, https://ru.wordpress.org/files/2022/07/Денис-Янчевский-768x512.jpg 768w, https://ru.wordpress.org/files/2022/07/Денис-Янчевский.jpg 1440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><em><strong>— Ты активно занимаешься переводами и являешься одним их трех главных редакторов переводов (GTE) русской локали. Почему именно переводы, что в них особенного?</strong></em></p>\n\n\n\n<p>Мне кажется, переводы — наиболее привлекательная область деятельности в сообществе из соотношения требуемых знаний, трудозатрат и видимого результата. Для начала участия необходим только базовый уровень знания английского языка и умение работать в браузере. Переходите на страницу перевода любимого плагина или темы и последовательно добавляете перевод для каждой строки с помощью веб-интерфейса. Спокойное и размеренное занятие. В любой момент можно остановиться и вернуться к переводам в удобное время. А когда закончите — достаточно будет кликнуть в админке по кнопке Обновить переводы и увидеть своё творение <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Ещё одна причина — дружелюбие к новичкам. Во-первых, система сама предлагает варианты перевода на основе того, как эту строку переводили другие люди. Также, доступны <a rel=\"noreferrer noopener\" href=\"https://ru.wordpress.org/team/handbook/translations/#%D0%B8%D0%BD%D1%81%D1%82%D1%80%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B-%D0%B1%D1%80%D0%B0%D1%83%D0%B7%D0%B5%D1%80%D0%B0\" target=\"_blank\">дополнения для браузера</a>, расширяющие возможности и повышающие наглядность перевода. Во-вторых, есть глоссарий терминов, руководства по работе с системой перевода в текстовом и видеоформате, рекомендации по технологии и стилю перевода. В-третьих, это наличие онлайн-переводчиков: Google Translate, Яндекс Переводчик и т.д. Редакторы не одобрят машинный перевод, но он поможет понять смысл фразы и незнакомых слов. Ну и последнее, но не по значению — это люди. Участнику доступен <a href=\"https://ru.wordpress.org/support/forum/translations/\" target=\"_blank\" rel=\"noreferrer noopener\">форум по переводам</a> и чаты в <a rel=\"noreferrer noopener\" href=\"https://t.me/wp_translate\" data-type=\"URL\" data-id=\"https://t.me/wp_translate\" target=\"_blank\">Telegram</a> и <a rel=\"noreferrer noopener\" href=\"https://ruwp.slack.com/\" data-type=\"URL\" data-id=\"https://ruwp.slack.com/\" target=\"_blank\">Slack</a>, где всегда можно задать интересующий вопрос или посоветоваться по переводу какой-то строки. И всё это на русском языке.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Ты один из самых активных организаторов мероприятий в России. Расскажи, какие ближайшие мероприятия нас ждут.</em></strong></p>\n\n\n\n<p>Сложно сказать. Пандемия Covid-19 сильно повлияла на проведение мероприятий. Например, мы успели согласовать бюджет и площадку для WordCamp Moscow 2020 до введения ограничений, но на данный момент он заморожен и перспективы не ясны. Аналогичная ситуация с митапами, нужно восстанавливать контакты со спикерами, спонсорами и площадками. Безусловно, остались виртуальные встречи с помощью Zoom и аналогичных инструментов, но такой формат не дает живого общения и, так называемого, нетворкинга.</p>\n\n\n\n<p>Но так или иначе, мероприятия проходят. В апреле и марте удалось провести пару небольших митапов. В мае прошли WP-шашлыки и, возможно, получится их повторить до конца теплого сезона. В Санкт-Петербурге готовят <a href=\"https://wordpress-meetup-spb.timepad.ru/event/2098313/\" target=\"_blank\" rel=\"noreferrer noopener\">митап 28 июля</a>. Также, я надеюсь, что в этом году продолжат традицию праздновать <a href=\"https://wptranslationday.org/\" data-type=\"URL\" data-id=\"https://wptranslationday.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Translation Day</a> и удастся провести очередной стрим по переводу WordPress на русский язык. Все анонсы будущих мероприятий доступны в Telegram-группе <a href=\"https://t.me/wpmeetup\" data-type=\"URL\" data-id=\"https://t.me/wpmeetup\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Moscow</a>. Там же можно поделиться своими идеями по мероприятиям и предложить тему для выступления.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Меньше месяца назад вышла версия WordPress 6.0 с поддержкой полносайтового редактирования (FSE). Какие впечатления твои личные впечатления от FSE и какие настроения на русскоязычном форуме?</em></strong></p>\n\n\n\n<p>Действительно, шестая версия вышла сравнительно недавно и обширного опыта её использования у меня пока нет, но я успел подробно ознакомиться с FSE, когда оно только появилось в версии 5.9. Впечатления двоякие. С одной стороны понятно, что это делается для расширения аудитории, чтобы как можно больше пользователей с разным уровнем знаний могли создавать как можно более разнообразные сайты. С другой стороны, непонятно как это внедрить в промышленный процесс и надо ли это делать.</p>\n\n\n\n<p>Я не против нововведений в WordPress, любая система должна развиваться. Например, мне нравится идея Gutenberg — он добавил формализацию и контроль над тем, что и как пользователь вводит на сайте. Теперь с помощью блочного редактора можно ещё точнее и эффективнее решать задачи клиента, мы можем разработать индивидуальный набор блоков со специфическим набором атрибутов, не переживая, что пользователь перепутает шорткоды или их атрибуты. Т.е. по сути, появилась возможность разработать конструктор контента на заказ не прибегая к сторонним инструментам.</p>\n\n\n\n<p>В то же время, мне жалко, что с приходом FSE, вероятно, будет заброшен Selective Refresh в Customizer. Он дает возможность наглядно редактировать элементы сайта — нажал карандашик у нужного элемента, вводишь новое значение и видишь как оно отображается на публичной части сайта, т.е. так как это увидит будущий посетитель. По мне &#8212; максимально интуитивно понятно. Customizer многими критикуется, но этот подход интересен как минимум тем, что не требует закладывать в бюджет работу Frontend-программиста.</p>\n\n\n\n<p>И судя по перепискам в чатах, многие участники придерживаются похожего мнения о FSE — зачем нужна блочная тема, если есть блочный редактор. И это на самом деле интересный вопрос. Возможно, в будущем наработается практика и появятся показательные кейсы, но на данный момент это выглядит спорно. Мы сделали возможность разрабатывать frontend-темы, но вам по прежнему будет нужен backend-программист для плюс-минус нестандартной задачи. Мы внедрили theme.json для настройки блоков и темы (и это действительно хорошая задумка), но забыли сделать стандартизацию. И теперь получается, что в одном блоке можно изменить параметр с помощью theme.json, но тот же параметр в другом блоке — нет, потому что он реализован иначе.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Многие разработчики высказывали озабоченность, что после запуска FSE мы все останемся без работы. Так ли это?</em></strong></p>\n\n\n\n<p>Учитывая, что FSE — это аналог WPBakery Page Builder, Elementor, Divi Builder и ещё множества подобных решений для визуального построения страницы, то разработчики уже давно остались без работы. Зачем нанимать программиста и писать код, если можно открыть браузер и «мышкой» сотворить сайт.</p>\n\n\n\n<p>На самом деле, No-code подходу уже много лет. Это перспективный рынок на котором разработано и разрабатывается (как раз теми разработчиками, которые остались без работы <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f600.png\" alt=\"😀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> ) множество решений. Например, в области интернет-маркетинга, автоматизации или как в случае с FSE – для оптимизации трудозатрат.</p>\n\n\n\n<p>Значит ли это, что кто-то конкретно из-за FSE потеряет работу? Вряд ли. Понадобится ли повышать квалификацию, чтобы оставаться «в рынке»? Да, собственно, как и всегда. Нужно ли прямо сейчас бежать и окунаться в изучение FSE? Спорно. Стоит не забывать, что FSE всё ещё проходит бета-тестирование, а это не предусматривает полноценного применения этой возможности в процессе разработки сайта (хотя FSE и включено в ядро WordPress).</p>\n\n\n\n<p>FSE — это очередной инструмент, призванный улучшить пользовательский опыт взаимодействия с WordPress. Решение использовать его или нет, должно зависеть от конкретной задачи и потребности клиента, а не от «моды». Но как минимум умение работать с FSE, как и с любым другим новым инструментом, может дать конкурентное преимущество на рынке веб-разработки.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Знают ли клиенты про новое возможности Редактора блоков (Gutenberg) и легко ли обучать пользователей?</em></strong></p>\n\n\n\n<p>Начну со второй части вопроса. Тема обучения пользователей сводится к тому, что у представителей клиента спрашивается как им будет удобно работать с контентом и разрабатывается решение максимально близкое к их представлениям. Благо Gutenberg позволяет это делать достаточно гибко. Думаю, основные проблемы возникают при переходе с классического редактора на блочный или когда структура блоков недостаточно проработана. Перевод Gutenberg выполнен сообществом полностью и продолжает поддерживаться в актуальном состоянии, базовые блоки интуитивно понятны, а если ещё отключить неиспользуемые блоки и записать видеодемонстрацию — затруднений возникнуть не должно.</p>\n\n\n\n<p>По поводу знаний о блочном редакторе. В моей практике крайне редко попадаются задачи с детализацией до уровня используемого редактора. Обычно это или технические задания, составленные другими исполнителями, или отсутствие возможности переобучать персонал. В остальных случаях Gutenberg воспринимается как данность. Только пользователи прошлых версий помнят, что существовал классический редактор. Для новых пользователей, начиная с пятой версии, не существует классического или блочного редактора — существует просто редактор контента в WordPress в том виде, в котором он представлен.</p>\n\n\n\n<div style=\"height:16px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong><em>— Посоветуешь обучающие материалы для начинающих разработчиков? Возможно, какие-то советы?</em></strong></p>\n\n\n\n<p>По поводу обучающих материалов. Центральное скопление информации для разработчика — это <a href=\"https://developer.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Developer.WordPress.org</a>. Здесь огромный объем информации по разработке тем и плагинов, документация по функциям ядра WordPress и блочному редактору, описание работы с REST API, WP CLI и т.д.</p>\n\n\n\n<p>Также сейчас активно развивается <a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn WordPress</a> и <a href=\"https://wordpress.org/support/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Support</a> (<a href=\"https://ru.wordpress.org/team/2019/11/25/helphub-status-tracking/\" target=\"_blank\" rel=\"noreferrer noopener\">русская версия в процессе перевода</a>).</p>\n\n\n\n<p><a href=\"https://wp-kama.ru/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Kama</a> — это, наверное, крупнейший сайт о WordPress на русском языке. За годы существования он стал неофициальной версией русской документации WordPress.</p>\n\n\n\n<p>Если больше нравятся видеоматериалы, то можно ознакомиться со множеством видеоблогов, например, <a href=\"https://www.youtube.com/c/WpruseRu\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube WpruseRu</a> и <a href=\"https://www.youtube.com/c/WPlovers\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube WPlovers</a>.</p>\n\n\n\n<p>Ну и, конечно, не стоит забывать про записи выступлений на конференциях и митапах:<br><a href=\"https://wordpress.tv/language/russian%d1%80%d1%83%d1%81%d1%81%d0%ba%d0%b8%d0%b9/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress TV</a><br><a href=\"https://www.youtube.com/c/WordPressMoscow/videos\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube WordPress Moscow Videos</a><br><a href=\"https://vk.com/video/@wpmeetup\" target=\"_blank\" rel=\"noreferrer noopener\">VK WPMeetup</a></p>\n\n\n\n<p>Рекомендую ещё посмотреть <a href=\"https://www.youtube.com/watch?v=XmW6MxLUn8w\" target=\"_blank\" rel=\"noreferrer noopener\">выступление Геннадия Ковшенина к 15 летию WordPress</a>. Видео 2019 года, поэтому многие данные устарели, но в целом даёт понимание как делаются дела в WordPress <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f600.png\" alt=\"😀\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>Советы. Изучать теоретическую базу. Независимо от того, какой инструмент вы используете, чем лучше вы знаете как он работает и как устроен, тем более эффективно вы будете его применять.</p>\n\n\n\n<p>Практиковаться. Даже если нет коммерческого опыта разработки, всегда можно заняться своими Pet-проектами. А если вместе с друзьями — то ещё лучше.</p>\n\n\n\n<p>Ну и, конечно, не бояться. Всё будет WordPress! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2b50.png\" alt=\"⭐\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Вопросы и работа с изображениями: <a href=\"https://profiles.wordpress.org/oglekler/\" target=\"_blank\" rel=\"noreferrer noopener\">Глеклер Ольга</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Люди WordPress: Мехер Бала\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://ru.wordpress.org/news/2022/05/people-of-wordpress-meher-bala/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 21 May 2022 20:05:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2437\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:594:\"В серии статей «Люди WordPress» мы делимся вдохновляющими историями о том, как WordPress и его глобальное сообщество меняют жизни людей к лучшему. В этом месяце мы рассказываем о разработчике WordPress из Индии и давней участнице проекта, и о том, как он помог ей не только построить карьеру, но и найти единомышленников и свое место в [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:24762:\"\n<p>В серии статей «Люди WordPress» мы делимся вдохновляющими историями о том, как WordPress и его глобальное сообщество меняют жизни людей к лучшему. В этом месяце мы рассказываем о разработчике WordPress из Индии и давней участнице проекта, и о том, как он помог ей не только построить карьеру, но и найти единомышленников и свое место в местном и глобальном сообществе.</p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/meher-1.jpg\" alt=\"Мехер на фоне окна с видом на деревья\" /><figcaption>Мехер на фоне окна с видом на деревья</figcaption></figure></div>\n\n\n<p>WordPress дает возможность Мехер Бала, фронтенд-разработчику и одному из активных участников сообщества Индии, делать значимые вещи. Используя эту CMS для разработки веб-сайтов для коммерческих и благотворительных организаций по всему миру и способствуя реализации их стремлений, она преодолела собственные барьеры и открыла способ помогать другим.</p>\n\n\n\n<p>Мехер нашла свое призвание и приобрела новые навыки благодаря WordPress, и теперь вдохновляет других женщин на карьеру в сфере информационных технологий.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Открывая двери для карьеры в области технологий</h2>\n\n\n\n<p>В детстве Мехер был поставлен диагноз дислексия (трудности с чтением письменных текстов) и дискалькулия (трудности с пониманием чисел и математических функций). При поддержке родителей и репетитора она смогла преодолеть эти препятствия на пути к получению образования. Тогда она не только нашла методы решения собственных трудностей, но и закалила характер, выработав стойкость и решимость, чтобы справляться с препятствиями, то и дело возникающими на жизненном пути.</p>\n\n\n\n<p>В школе у неё появилась возможность заменить один предмет на изучение компьютера в качестве альтернативы. Это открыло ей мир новых возможностей и путь для будущей карьеры.&nbsp;</p>\n\n\n\n<p>Она начала изучать не только то, что может предложить Интернет, но и то, как он работает, включая новые и увлекательные концепции электронной почты и веб-сайтов. Её отец купил первый в семье настольный компьютер, чтобы она могла заниматься дома.</p>\n\n\n\n<p>Отец Мехер хотел превратить ее любовь к компьютерам в нечто такое, что могло бы сослужить ей хорошую службу в будущем. В 2005 году он записал ее на краткосрочные компьютерные курсы у одного из мировых поставщиков ИТ-услуг. Наставник курса был настолько впечатлен ее успеваемостью, что посоветовал ей записаться на четырехлетний курс.</p>\n\n\n\n<p>Она училась разработке программного обеспечения параллельно с обучением в колледже коммерции. Оглядываясь назад, она отметила, что ей понравился этот вызов — справляться с двойной нагрузкой, и он хорошо подготовил ее к тому, чтобы продолжать изучать программное обеспечение, уже работая разработчиком. За три года она изучила C#, C, C++, HTML, Java и .NET.</p>\n\n\n\n<p>После окончания колледжа она оказалась перед дилеммой выбора между коммерцией и ИТ. Что выбрать? Ей предстояло пройти обязательную годичную технологическую стажировку, и выбор специализации на этот год стал определяющим.</p>\n\n\n\n<p>В 2009 году, в день своего рождения, Мехер предложили пройти стажировку. В первый же день стажировки ее познакомили с WordPress. Ее первоначальным заданием было изменить внешний вид и оформление административной панели WordPress всего за шесть часов. И у нее сразу возникла проблема — она никогда раньше не работала с WordPress!</p>\n\n\n\n<p>«Я уставилась на демонстрационную доску и подумала, что поставленная задача невыполнима и трудно уложиться в срок. Я подумала, что мой руководитель шутит, так как не знала, что может сделать с WordPress разработчик и как он может быть использован. Эта задача открыла мне глаза».&nbsp;</p>\n\n\n\n<p>Мехер использовала свои исследовательские навыки, чтобы узнать больше об использовании WordPress. Она нашла плагин, который помог ей выполнить поставленную задачу. Она уложилась в срок, и это зажгло в ней интерес, который до сих пор только крепнет.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Заново открывая WordPress</h2>\n\n\n\n<p>Через пять лет после первого знакомства с WordPress Мехер поручили возглавить международный WordPress проект. Она колебалась — за эти пять лет она отошла от работы с WordPress, но это была отличная возможность возглавить команду и повести ее за собой.&nbsp;</p>\n\n\n\n<p>Она решила обновить свои навыки работы с WordPress, снова полагаясь на силу своих исследовательских способностей и решимость. В процессе работы она также научила свою команду всему, что касается WordPress, вдохновляя многих из них на дальнейшее развитие своих навыков работы с этой CMS.</p>\n\n\n\n<p>Успех этого проекта стал поворотным моментом для Мехер и новым витком карьеры в качестве разработчика, специализирующегося на WordPress.</p>\n\n\n\n<p>Став руководителем команды, Мехер вскоре обнаружила, что не всегда можно сразу получить ответы на все вопросы. Она обнаружила, что поиск в Интернете дает практические решения, но редко объясняет теорию, стоящую за ними.</p>\n\n\n\n<p>Поэтому она отправилась на поиски группы WordPress, которая помогла бы ей расширить объем и глубину собственных знаний.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Сообщество и его возможности для обучения разработчиков</h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/dsc_00345.jpg\" alt=\"Мехер на WordCamp Nagpur в 2017 году\" /><figcaption>Мехер наслаждается участием в WordCamp Nagpur в 2017 году</figcaption></figure></div>\n\n\n<p>В 2015 году, просматривая Facebook, Мехер наткнулась на рекламу мероприятия под названием WordCamp Mumbai, которое проходило за два дня до этого. Она углубилась в поиск, чтобы узнать, что такое WordCamp, и о людях, стоящих за ним. Она решила присоединиться к группе WordPress Mumbai Meetup.</p>\n\n\n\n<p>Ее первый опыт участия во встрече не был любовью с первого взгляда. Ей показалось, что темы были для продвинутых пользователей, а позднее вечернее время встреч плохо ей подходило.</p>\n\n\n\n<p>Но через несколько месяцев на митапе планировалась тема, которая могла помочь ей решить проблему в одном из ее текущих проектов. Она выкроила время и пришла на встречу, получив ряд ценных советов. Спикер нашел время, чтобы поговорить с отдельными участниками. Когда он подошел к Мехер, она воспользовалась возможностью задать несколько вопросов о проблемах своего проекта.</p>\n\n\n\n<p>После этого она посетила еще несколько митапов и познакомилась с людьми, стоящими за этой группой, как раз когда они заговорили о подготовке WordCamp Mumbai 2016.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Путь в WordCamp</h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://i1.wp.com/wordpress.org/news/files/2022/04/wcm16.jpg\" alt=\"Мехер на фото с табличкой WordCamp Mumbai 2016\" /><figcaption>Мехер открывает для себя WordCamps в Мумбаи в 2016 году</figcaption></figure></div>\n\n\n<p>Мехер проявила интерес к участию в предстоящем WordCamp Mumbai и взяла на себя не очень сложные организационные задачи.</p>\n\n\n\n<p>Сначала она думала, что WordCamp — это формальная конференция с участием около 100 человек. Поэтому в первый день WordCamp Mumbai 2016 она была удивлена, увидев так много энтузиастов WordCamp, присутствующих на конференции и наслаждающихся непринужденной и дружелюбной обстановкой.</p>\n\n\n\n<p>После этого замечательного опыта Мехер посетила еще много встреч, вызываясь волонтером там, где это было необходимо.&nbsp; На последующих конференциях WordCamp она уже брала на себя более сложные и ответственные задачи, постепенно вникая во все нюансы организации конференций.&nbsp;</p>\n\n\n\n<p>В последующие годы на каждом мероприятии она брала на себя новую роль, такую как проверка спикеров и спонсоров, координация волонтеров. Это позволило ей узнать больше о том, что должен делать организатор, начиная с планирования и заканчивая проведением, чтобы WordCamp стал успешным мероприятием.</p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/04/wcmumbai-17.jpg\" alt=\"Групповое фото команды WordCamp Mumbai 2017\" /><figcaption>С командой на WordCamp Mumbai в 2017 году</figcaption></figure></div>\n\n\n<p>Мехер благодарна за свой путь в WordPress, которому способствовало мумбайское сообщество. Он был полон прекрасных сюрпризов.&nbsp;</p>\n\n\n\n<p>Когда люди спрашивают, почему она решила профессионально специализироваться на WordPress, Мехер отвечает, что пользователей без технических навыков легко обучить работе с WordPress, и при этом CMS имеет широкие возможности кастомизации. Как разработчик WordPress она удаленно работает в глобальных компаниях над созданием веб-сайтов, и решает разнообразные нестандартные задачи, приобретая новые навыки с каждым проектом.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Сообщество делает WordPress особенным</h2>\n\n\n\n<p>Мехер говорит, что одни из ее самых запоминающихся моментов в WordPress связаны с особыми дружескими отношениями, возможностями попробовать что-то новое и участием в развитии сообщества.&nbsp;</p>\n\n\n\n<p>WordPress позволил ей исследовать разные уголки Индии, найти новых друзей на местном и международном уровне, а также поощрять женщин участвовать в митапах и мероприятиях по всей Индии.&nbsp;</p>\n\n\n\n<p>Большой мечтой для Мехер стало стать организатором WordCamp Mumbai и показать другим, чего можно достичь, работая вместе над проектом с открытым исходным кодом. В 2019 году ее мечта сбылась, но и теперь она продолжает участвовать в международных конференциях WordCamp и митапах как организатор и волонтер.</p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/04/wc-19.jpg\" alt=\"Мехер выступает на WordCamp Mumbai 2019\" /><figcaption>Выход на сцену WordCamp Mumbai в 2019 году</figcaption></figure></div>\n\n\n<p>Горя желанием поделиться с другими людьми, особенно женщинами, теми возможностями, которые открывает WordPress, она вложила много времени и усилий в организацию <a href=\"https://wptranslationday.org/\" target=\"_blank\" rel=\"noreferrer noopener\">двух глобальных мероприятий WordPress Translation Day</a> длительностью в месяц, а также мероприятий для участников сообщества в Индии.&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<p>Мехер сказала: «Впервые я познакомилась с переводом на одной из встреч, которая была организована в поддержку WordPress Translation Day. Я поняла, что это еще один способ поддержать местные сообщества и донести до них возможности WordPress, внося свой вклад на языках гуджарати и хинди. Я и представить себе не могла, что через несколько лет стану глобальным организатором самого мероприятия!».</p>\n\n\n\n<p>Стремясь постоянно учиться как разработчик и демонстрировать то, во что она верит — ценность и возможности роста сообщества открытого кода, Мехер уделяет время и энергию Команде маркетинга (Marketing Team), где она является представителем команды, команде обучения (Training Team) и команде разработки ядра (Core Team), внося свой вклад в выпуск релизов.&nbsp;</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Все команды WordPress</a></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>«В начале своего пути разработчика программного обеспечения я всегда думала, что C++ и Java — это единственные навыки, необходимые для успешной карьеры. Когда я начала углубленно изучать WordPress, я поняла потенциал и силу WordPress в веб-разработке.»</p></blockquote>\n\n\n\n<p>Став частью сообщества WordPress, Мехер узнала, что он рассчитан на гораздо большее, чем создание блогов. Она начала изучать его различные возможности, создала свою первую тему и в итоге стала специалистом по фронтенду.</p>\n\n\n\n<p>Сейчас Мехер работает консультантом и фронтенд-разработчиком в международном агентстве, специализирующемся на WordPress. На вопрос, что, по ее мнению, самое лучшее в работе разработчика WordPress, Мехер ответила следующее:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>«Благодаря WordPress у меня есть возможность создавать уникальные нестандартные веб-сайты и работать удаленно в глобальных компаниях по разработке веб-сайтов, которые поощряют вас мыслить нестандартно. Всегда есть возможность совершенствовать свои навыки кодирования и изучать новые техники с каждым релизом».</p></blockquote>\n\n\n\n<p>Она считает, что нет предела тому, как вы можете использовать WordPress и с чем его комбинировать, чтобы находить решения для больших и малых проектов.</p>\n\n\n\n<p>Если вы зарабатываете на жизнь с помощью WordPress, ее совет от чистого сердца: старайтесь внести свой вклад в развитие WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>«Я уверена, что вы узнаете или научитесь чему-то новому и, безусловно, обретете друзей по всему миру. Нет ничего постыдного в совершении ошибок, ведь на них можно учиться и развивать свои навыки дальше. Вы также можете помогать другим, когда они развивают свои навыки».</p></blockquote>\n\n\n\n<p>Мехер добавила: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>«Не позволяйте вещам, которые кажутся вам трудными, мешать вашему успеху»</p></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Поделитесь историями</h2>\n\n\n\n<p>Помогите поделиться этой и другими историями о людях, которые вносят свой вклад в развитие проекта с открытым исходным кодом и развивают сообщество WordPress.&nbsp;</p>\n\n\n\n<p>Читайте эту и другие истории серии «<a href=\"https://wordpress.org/news/category/interviews/\" target=\"_blank\" rel=\"noreferrer noopener\">People of WordPress</a>» (на английском) или «<a href=\"https://ru.wordpress.org/news/category/people-of-wordpress/\" target=\"_blank\" rel=\"noreferrer noopener\">Люди WordPress</a>» (на русском).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Авторы и редакторы</h2>\n\n\n\n<p>Спасибо Абе Такор (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Ларисе Мурильо (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Мэри Баум (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>), Хлое Брингманн (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) и Мэг Филлипс (<a href=\"https://profiles.wordpress.org/megphillips91/\">@megphillips91</a>) за интервью, написание и работу над изображениями для этой статьи. Спасибо Мехер Бала (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) за то, что поделилась своим опытом, а также Джозефе Хаден Чомфоси (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) и Тоферу ДеРозиа (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) за поддержку этой серии.<br>Перевод на русский: Ольга Глеклер (<a href=\"https://profiles.wordpress.org/oglekler/\">@oglekler</a>)</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:25% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://ru.wordpress.org/files/2021/03/heropress-logo.png\" alt=\"\" class=\"wp-image-2268 size-full\" /></figure><div class=\"wp-block-media-text__content\">\n<p>Эта статья основана на первоначальной публикации HeroPress.com, инициативе, ориентированной на людей в сообществе WordPress, созданной Тофером ДеРозиа <a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>.</p>\n\n\n\n<p>Читайте эту и другие истории серии «<a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress</a>» (на английском) или «<a href=\"https://ru.wordpress.org/news/category/people-of-wordpress/\">Люди WordPress</a>» (на русском).</p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Основные моменты выступления State of the Word 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://ru.wordpress.org/news/2021/12/highlights-from-state-of-the-word-2021/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Dec 2021 13:25:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Новости\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2400\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:733:\"Посмотреть на WordPress.TV с субтитрами на русском языке. 14 декабря 2021 состоялось ежегодное выступление со-основателя WordPress Мэтта Мулленвега. Мероприятие прошло в Нью Йорке с небольшой аудиторией (требовалось подтверждение вакцинации). По словам Мэтта присутствовали как те, &#171;кто добирался самолетом, поездом и на автомобиле&#187;, так и те (виртуально), кто наблюдал за живым стримом онлайн, из дома, с [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5977:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"612\" height=\"345\" src=\"https://www.youtube.com/embed/OpiH_P9aGhQ?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=ru-RU&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<p class=\"has-text-align-center\"><a rel=\"noreferrer noopener\" href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\" target=\"_blank\">Посмотреть на WordPress.TV с субтитрами на русском языке</a>.</p>\n</div>\n</div>\n\n\n\n<p>14 декабря 2021 состоялось ежегодное выступление со-основателя WordPress Мэтта Мулленвега. Мероприятие прошло в Нью Йорке с небольшой аудиторией (требовалось подтверждение вакцинации). По словам Мэтта присутствовали как те, &#171;кто добирался самолетом, поездом и на автомобиле&#187;, так и те (виртуально), кто наблюдал за живым стримом онлайн, из дома, с работы или с иного места. В одиннадцати странах более 300 зрителей вместе могли наблюдать выступление онлайн в 26 местах подготовленных организаторами.</p>\n\n\n\n<p>Выступление Мэтта явилось значимым событием для сообщества WordPress, также как и первый, спустя длительное время очный <a rel=\"noreferrer noopener\" href=\"https://sevilla.wordcamp.org/2021/\" target=\"_blank\">WordCamp в Севилье</a> (Испания). </p>\n\n\n\n<p>Вы можете <a rel=\"noreferrer noopener\" href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\" target=\"_blank\">посмотреть выступление (с субтитрами на русском языке) на WordPress.TV</a>. </p>\n\n\n\n<p>Как и на выступлениях в предыдущие годы Мэтт Мулленвег затронул широкий ряд тем касательно прошлого, настоящего и будущего WordPress, к примеру основные моменты касались роста числа <a href=\"https://make.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">участников сообщества</a>, <a rel=\"noreferrer noopener\" href=\"https://ru.wordpress.org/team/handbook/translations/\" target=\"_blank\">переводчиков</a>, ключевых этапов разработки предстоящего выпуска WordPress 5.9, а также образовательной инициативы <a href=\"https://learn.wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn WordPress</a>.</p>\n\n\n\n<p>Касательно предстоящего выпуска WordPress были продемонстрированы несколько видеороликов с примерами полного редактирования сайта, паттернами блоков, расширенного управления изображениями, а также глобальными возможностями стилизации. </p>\n\n\n\n<p>Мэтт также напомнил о будущих фазах развития редактора блоков в направлении совместной работы над публикациями и многоязычности, он также упомянул о том, что каждый может внести свой вклад в развитие WordPress различными способами, от создания новых возможностей, до тестирования, обучения других и популяризации WordPress в обществе.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Чем больше людей станут использовать WordPress, тем лучше он от этого станет.</p></blockquote>\n\n\n\n<p>Он также затронул такие темы как развитие глобальной сети в целом (Web3) и приобретение активов (на ряде слайдов в презентации).</p>\n\n\n\n<p>После выступления состоялась одночасовая <a rel=\"noreferrer noopener\" href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-state-of-the-word-2021-qa/\" target=\"_blank\">сессия вопросов и ответов</a>, на которой Мэтт ответил на ряд вопросов, часть из которых были подготовлены заранее, так и поступили из зала или от участников живого стрима.</p>\n\n\n\n<p class=\"has-text-align-center\"><a rel=\"noreferrer noopener\" href=\"https://wordpress.tv/2021/12/15/matt-mullenweg-2021-state-of-the-word/\" target=\"_blank\">Посмотреть на WordPress.TV с субтитрами на русском языке</a>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\"></div>\n\n\n\n<p>Вы можете принять участие в обсуждении выступления используя хэш-тег <a rel=\"noreferrer noopener\" href=\"https://twitter.com/hashtag/ILoveWP\" target=\"_blank\">#ILoveWP в Twitter</a>. </p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Люди WordPress: Девин Мейстри\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://ru.wordpress.org/news/2021/12/people-of-wordpress-devin-maeztri/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Dec 2021 10:15:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Люди WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"people-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://ru.wordpress.org/?p=2382\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:688:\"В серии статей «Люди WordPress» мы делимся вдохновляющими историями о том, как WordPress и его глобальное сообщество меняют жизни людей к лучшему. В этом месяце мы рассказываем о переводчице, которая использует WordPress для освещения добрых дел и помогает людям в своем регионе использовать преимущества платформы с открытым исходным кодом. Девин Мейстри обнаружила, что поездка на [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"Yui\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:24463:\"\n<p>В серии статей «Люди WordPress» мы делимся вдохновляющими историями о том, как WordPress и его глобальное сообщество меняют жизни людей к лучшему. В этом месяце мы рассказываем о переводчице, которая использует WordPress для освещения добрых дел и помогает людям в своем регионе использовать преимущества платформы с открытым исходным кодом.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"https://ru.wordpress.org/files/2021/12/devin-with-her-cat-scaled-1.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"1024\" src=\"https://ru.wordpress.org/files/2021/12/devin-with-her-cat-scaled-1-768x1024.jpg\" alt=\"Девин изображена с одной из своих кошек\" class=\"wp-image-2384\" srcset=\"https://ru.wordpress.org/files/2021/12/devin-with-her-cat-scaled-1-768x1024.jpg 768w, https://ru.wordpress.org/files/2021/12/devin-with-her-cat-scaled-1-225x300.jpg 225w, https://ru.wordpress.org/files/2021/12/devin-with-her-cat-scaled-1.jpg 1152w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></a><figcaption>Девин изображена с одной из своих кошек</figcaption></figure></div>\n\n\n\n<p>Девин Мейстри обнаружила, что поездка на WordCamp может изменить жизнь. Каждое следующее мероприятие для нее — очередной шаг на пути к открытию для себя сообщества WordPress и его многочисленных возможностей.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Влюбиться в WordPress не так уж сложно, если вы можете испытать его на себе. Для меня это был WordCamp</p></blockquote>\n\n\n\n<p>В 2016 году, не особо размышляя, Девин стала волонтером на WordCamp Denpasar, Бали. Это был ее первый опыт участия в мероприятиях WordPress.&nbsp;</p>\n\n\n\n<p>Здесь она сделала удивительное открытие: «WordCamp объединяет людей, которые вносят вклад в сообщество, не получая прямой выгоды от WordPress».</p>\n\n\n\n<p>С каждым следующим WordCamp все становилось только интересней и Девин поняла, что хочет посещать мероприятия WordPress чаще. Она стала постоянным участником митапов в Убуде и Джакарте, а позже — соорганизатором этих митапов и WordCamp Jakarta в 2017 и 2019 годах.&nbsp;</p>\n\n\n\n<p>Вдохновленная тем, что могут предложить мероприятия WordCamp и как они объединяют людей несмотря на национальные границы, она присоединилась к команде организаторов WordCamp Asia 2020. К сожалению, это оказалось первым крупным мероприятием WordPress, которое было отменено в связи с пандемией COVID-19.&nbsp;</p>\n\n\n\n<p>Девин надеется, что WordCamp Asia состоится в скором будущем. Помимо возможности получить новые знания о WordPress и обмена опытом, которые являются неотъемлемой частью любого WordCamp, она считает, что столько масштабное мероприятие может стать наглядным примером, как WordCamp способствует международному туризму и культурному обмену везде, где проводится.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019.jpeg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019.jpeg\" alt=\"Девин на фото с другими организаторами WordCamp Asia на WordCamp Europe в 2019 году\" class=\"wp-image-2386\" srcset=\"https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019.jpeg 1024w, https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019-300x300.jpeg 300w, https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019-150x150.jpeg 150w, https://ru.wordpress.org/files/2021/12/wcasia_2020_organizers_in_wceu_2019-768x768.jpeg 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>Организаторы WordCamp Asia 2020 на WordCamp Europe 2019. Девин — вторая слева в первом ряду. Фото: Аба Такор</figcaption></figure></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-как-платформа-для-развития-местного-бизнеса\">WordPress как платформа для развития местного бизнеса</h2>\n\n\n\n<p>После посещения нескольких мероприятий у Девин возникли вопросы: «На WordCamps и Meetups вы слышите истории о том, как WordPress обогащает интернет. Как он меняет жизнь многих людей, как помогает мечтам сбываться. Это заставило меня задуматься: если WordPress настолько мощный инструмент, почему в Индонезии ни так много людей имеющих веб сайты и не так много использует WordPress? Почему ни так много талантливых индонезийских пользователей, разработчиков WordPress, дизайнеров и владельцев бизнеса принимают участие в проектах WordPress.org? Языковой барьер для меня стал главным ответом».</p>\n\n\n\n<p>Девин нашла решение — сделать WordPress доступным на основном местном языке. Она говорит: «Я считаю, что чем больше контента будет переведено на индонезийский язык, тем больше индонезийских пользователей WordPress увидят, что WordPress — это не просто платформа для ведения блогов или система управления контентом. Они поймут, что это огромное сообщество программного обеспечения открытым исходным кодом, которое работает сообща, чтобы сделать Интернет лучше. Чем больше плагинов и тем будет переведено, тем легче будет работа разработчиков и дизайнеров. Чем больше людей увидят, как WordPress может улучшить их жизнь, тем лучше станет экосистема для владельцев бизнеса».</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"вдохновление-собственным-примером\">Вдохновление собственным примером</h2>\n\n\n\n<p>Поговорив с другими людьми о том, как WordPress может быть более полезным в Индонезии, Девин почувствовала, что должна взять на себя личное обязательство возродить проект Polyglots в Индонезии. С помощью еще одного добровольного помощника и благодаря продвижению проекта местная команда «Полиглотов» стала больше, и интерес к переводу WordPress вырос. Она также взяла на себя обязанности главного редактора переводов (GTE) для индонезийского языка.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"515\" src=\"https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2-1024x515.jpg\" alt=\"Девин Мейстри — номинант WordPress Polyglosts Особая признательность\" class=\"wp-image-2388\" srcset=\"https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2-1024x515.jpg 1024w, https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2-300x151.jpg 300w, https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2-768x386.jpg 768w, https://ru.wordpress.org/files/2021/12/featured-img-used-for-devin-pow2.jpg 1247w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></figure>\n\n\n\n<p>Благодаря усилиям Девин и других редакторов переводов Индонезия приняла участие в WordPress Translation Day в 2020 году, а в 2021 году проводила спринты и обучающие сессии в течение всех 30 дней мероприятия.</p>\n\n\n\n<p>Ее энтузиазм и преданность делу помощи другим в переводе WordPress на местном уровне и по продвижению глобального сообщества были отмечены в номинации WordPress Polyglosts «Особая признательность» в 2021 году.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"диверсификация-сообщества\">Диверсификация сообщества</h2>\n\n\n\n<p>Занимаясь переводами, Девин заметила, что в сообществе WordPress в Индонезии не так много женщин. Часто она оказывалась единственной женщиной на каком-либо мероприятии.</p>\n\n\n\n<p>Поэтому вместе с несколькими членами сообщества она основала местное сообщество Perempuan WordPress. Эта группа открыта для всех желающих, но приоритет отдается женщинам в качестве докладчиков на мероприятиях.</p>\n\n\n\n<p>Девин пошла дальше и поддержала работу группы по диверсификации спикеров (Diversity Speaker Training group) в Команде сообщества (Community Team), переводя материалы и продвигая инициативы группы в Индонезии. Она стремится поощрять других к участию в этой инициативе, которая помогает увеличить разнообразие докладчиков на митапах и WordCamp.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://ru.wordpress.org/files/2021/12/devin-at-wc-jakarta2019.png\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"534\" src=\"https://ru.wordpress.org/files/2021/12/devin-at-wc-jakarta2019.png\" alt=\"Девин — организатор WordCamp Jakarta 2019\" class=\"wp-image-2389\" srcset=\"https://ru.wordpress.org/files/2021/12/devin-at-wc-jakarta2019.png 600w, https://ru.wordpress.org/files/2021/12/devin-at-wc-jakarta2019-300x267.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" /></a><figcaption>Девин — организатор WordCamp Jakarta 2019</figcaption></figure></div>\n\n\n\n<p>В своей профессиональной деятельности Девин выступает за WordPress как инструмент для людей с самыми разными навыками. Она не пишет код, но широко использует платформу для своих проектов. В 2014 году она зарегистрировала бесплатный аккаунт на WordPress.com, чтобы сохранять и делиться заметками о том, что она видела или о чем думала, когда ехала на работу в общественном транспорте. Этот сайт не превратился в блог, но познакомил ее с широкими возможностями платформы.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-для-поддержки-талантов-и-развития-инициатив\">WordPress для поддержки талантов и развития инициатив</h2>\n\n\n\n<p>Имея опыт работы в экологическом активизме, Девин принимала участие в международном развитии организаций, занимаясь всем от политики до конкретных кампаний.&nbsp;</p>\n\n\n\n<p>Она работала с политиками и организовывала конференции и встречи. Это означало — много писать, переводить и работать с людьми на местах, на которых влияла политика. «Моя работа на местах обычно включала в себя исследования, организацию общественных движений и расширение прав и возможностей сообщества», — отметила она.</p>\n\n\n\n<p>Опыт проведения мероприятий вдохновил Девин на участие в митапах и WordCamp, делиться с другими своей энергией, чтобы задумано реализовывалось. Как и в своей профессиональной деятельности, она почувствовала, что WordPress — это возможность работать и делиться с людьми тем, что может изменить чью-то жизнь к лучшему.</p>\n\n\n\n<p>«Для меня все идет от сердца. Я делаю то, к чему испытываю сильные чувства. То, что зовет меня, и то, что у меня хорошо получается, но при этом дает мне возможность учиться и становиться лучше. WordPress может быть идеальным местом для этого».</p>\n\n\n\n<p>Во время между сменой работы, Девин предложили стать волонтером на WordCamp Denpasar 2016. С некоторой помощью она создала себе онлайн-резюме (CV), научилась управлять сайтом на WordPress, ориентироваться в wp-admin и делать контент привлекательным для потенциальных работодателей.&nbsp;</p>\n\n\n\n<p>В результате она получила работу в качестве организатора кампании по продвижению онлайн и оффлайн. Эта кампания была детищем группы университетских друзей в Америке, которым собрались выйти на мировой уровень, и в ней использовался WordPress. </p>\n\n\n\n<p>Девин работала вместе со специалистом по продвижению и помогала формировать содержимое, призывы к действию (CTA) и пользовательский опыт (UX). Ей также пришлось работать с бэкендом для внесения корректировок. Поскольку компания была глобальной, все материалы разрабатывались на английском и Девин плотно работала с переводчиками и контролировала их работу.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><a href=\"https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1.jpg\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1.jpg\" alt=\"Одна из кошек Девин наблюдает за онлайн-трансляцией событий WPTranslationDay 2021.\" class=\"wp-image-2391\" srcset=\"https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1.jpg 1024w, https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1-300x225.jpg 300w, https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1-768x576.jpg 768w, https://ru.wordpress.org/files/2021/12/cat-watching-translation-scaled-1-440x330.jpg 440w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a><figcaption>Кошка Девин стала постоянной участницей публикаций в социальных сетях о #WPTranslationDay 2021</figcaption></figure></div>\n\n\n\n<p>В конце 2018 года она оставила свою работу в качестве организатора кампаний, чтобы сосредоточиться на фриланс проектах и проводить больше времени, внося свой вклад в сообщество WordPress. Она также выступила с инициативой помощи уличным кошкам в Джакарте.&nbsp;</p>\n\n\n\n<p>Девин сказала: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Итак, я занята тем, что помогаю этим кошкам, а также учусь собирать средства с помощью веб-сайта. Я учусь использовать онлайн-формы, настраивать платежные системы, работать над SEO и делать другие новые вещи, которые мне необходимо изучить для развития моей инициативы. У меня есть привилегия учиться непосредственно у личного гуру. Того самого человека, который убедил меня стать волонтером на WordCamp Denpasar, и за которого я вышла замуж в 2018 году.</p></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-дает-возможность-учиться-всем\">WordPress дает возможность учиться всем</h2>\n\n\n\n<p>Девин нравится участие в жизни сообщества WordPress, поэтому она с удовольствием снялась для серии видеороликов, завершивших мероприятия в рамках Translation Day 2021.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-вставить-обработчик wp-block-embed-вставить-обработчик\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"612\" height=\"345\" src=\"https://www.youtube.com/embed/VsiQzdmAz8g?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=ru-RU&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>В этом коротком ролике Девин рассказывает о переводах (открывается в новой вкладке на YouTube).</p>\n\n\n\n<p>Она также активно участвует в работе других команд Сообщества WordPress и решила стать представителем команды Сообщества (Community Team Deputy), чтобы поддерживать встречи в новых городах Индонезии и, возможно, будущие мероприятия WordCamp.&nbsp;</p>\n\n\n\n<p>Она говорит: «Мне нравится в WordPress то, что он очень гостеприимен и открыт для таких людей, как я, которые совсем не пишут код. В то же время, он открывает мне новый взгляд на мир».</p>\n\n\n\n<p>Девин верит в силу WordPress, которая дает «каждому шанс научиться новому» и позволяет ей вносить свой вклад и делиться своими знаниями и опытом. «Внося свой вклад, я надеюсь изменить чью-то жизнь к лучшему. Я надеюсь, что они почувствуют пользу от использования WordPress и захотят внести свой вклад, чтобы создать более здоровое сообщество WordPress».</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"авторы-и-редакторы\">Авторы и редакторы</h2>\n\n\n\n<p>Спасибо Абе Такор (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) и Мери Баум (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>) за проведение интервью и написание данной статьи, и Девин Мейстри (<a href=\"https://profiles.wordpress.org/devinmaeztri/\">@devinmaeztri</a>) за то, что поделилась своей историей. Спасибо Мехер Бала (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) за работу над фотографиями и Хлое Брингманн (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) и Коллис Кларк (<a href=\"https://profiles.wordpress.org/callye/\">@callye</a>) за редактуру.&nbsp;</p>\n\n\n\n<p>Спасибо Джозефе Хайден (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) и Тоферу ДеРозиа (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) за поддержку данной серии.<br>Перевод на русский: Ольга Глеклер (<a href=\"https://profiles.wordpress.org/oglekler/\">@oglekler</a>)</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\" style=\"grid-template-columns:25% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://ru.wordpress.org/files/2021/03/heropress-logo.png\" alt=\"\" class=\"wp-image-2268 size-full\" /></figure><div class=\"wp-block-media-text__content\">\n<p>Эта статья основана на первоначальной публикации HeroPress.com, инициативе, ориентированной на людей в сообществе WordPress, созданной Тофером ДеРозиа <a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>.</p>\n\n\n\n<p>Читайте эту и другие истории серии «<a href=\"https://wordpress.org/news/category/interviews/\">People of WordPress</a>» (на английском) или «<a href=\"https://ru.wordpress.org/news/category/people-of-wordpress/\">Люди WordPress</a>» (на русском).</p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:35:\"https://ru.wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 28 Dec 2022 00:37:46 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 14 Dec 2022 18:06:56 GMT\";s:4:\"link\";s:61:\"<https://ru.wordpress.org/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20211220193300\";}','no');
  307. INSERT INTO `wp_options` VALUES (204,'_transient_timeout_feed_mod_92227bfe1354c9fe21266d111aae5ed4','1672231065','no');
  308. INSERT INTO `wp_options` VALUES (205,'_transient_feed_mod_92227bfe1354c9fe21266d111aae5ed4','1672187865','no');
  309. INSERT INTO `wp_options` VALUES (206,'_transient_timeout_dash_v2_f69de0bbfe7eaa113146875f40c02000','1672231065','no');
  310. INSERT INTO `wp_options` VALUES (207,'_transient_dash_v2_f69de0bbfe7eaa113146875f40c02000','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ru.wordpress.org/news/2022/12/2022-wordpress-survey/\'>Ежегодный опрос пользователей и участников разработки WordPress 2022</a></li><li><a class=\'rsswidget\' href=\'https://ru.wordpress.org/news/2022/11/dropping-security-updates-for-wordpress-versions-3-7-through-4-0/\'>Прекращение поддержки старых версий WordPress 3.7-4.0</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/community-wrap-up-week-ending-december-23/\'>Post Status: Community Wrap-up Week Ending December 23</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/commercial-and-community-categorization-is-live-on-wordpress-org-theme-and-plugin-directories\'>WPTavern: Commercial and Community Categorization Is Live on WordPress.org Theme and Plugin Directories</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/gutenberg-14-8-overhauls-site-editor-interface-adds-style-book\'>WPTavern: Gutenberg 14.8 Overhauls Site Editor Interface, Adds Style Book</a></li></ul></div>','no');
  311. INSERT INTO `wp_options` VALUES (216,'wp_calendar_block_has_published_posts','1','yes');
  312. INSERT INTO `wp_options` VALUES (229,'category_children','a:0:{}','yes');
  313. INSERT INTO `wp_options` VALUES (236,'current_theme','Zeever','yes');
  314. INSERT INTO `wp_options` VALUES (237,'theme_mods_twentytwentyone','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1672188775;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes');
  315. INSERT INTO `wp_options` VALUES (238,'theme_switched','','yes');
  316. INSERT INTO `wp_options` VALUES (244,'theme_mods_twentytwentytwo','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1672188790;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','yes');
  317. INSERT INTO `wp_options` VALUES (254,'recently_activated','a:0:{}','yes');
  318. INSERT INTO `wp_options` VALUES (255,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1672199958','no');
  319. INSERT INTO `wp_options` VALUES (256,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:5889;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4808;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2776;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2647;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2044;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1897;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1894;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1609;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1558;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1541;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1539;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1516;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1501;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1442;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1353;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1316;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1265;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1175;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1154;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1141;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1040;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1009;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:989;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:960;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:902;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:869;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:864;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:859;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:859;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:859;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:857;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:804;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:788;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:779;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:768;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:764;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:758;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:753;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:730;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:727;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:719;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:712;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:702;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:682;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:682;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:679;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:670;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:666;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:628;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:618;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:606;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:604;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:604;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:599;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:590;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:589;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:586;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:584;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:573;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:567;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:567;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:558;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:550;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:550;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:539;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:538;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:538;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:529;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:524;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:524;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:519;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:512;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:509;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:507;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:507;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:494;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:472;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:466;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:465;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:458;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:450;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:448;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:443;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:434;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:429;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:426;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:422;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:418;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:416;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:415;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:410;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:410;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:409;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:400;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:396;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:394;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:390;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:388;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:387;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:386;}}','no');
  320. INSERT INTO `wp_options` VALUES (259,'elementor_active_kit','14','yes');
  321. INSERT INTO `wp_options` VALUES (260,'elementor_font_display','swap','yes');
  322. INSERT INTO `wp_options` VALUES (263,'elementor_version','3.9.2','yes');
  323. INSERT INTO `wp_options` VALUES (264,'elementor_install_history','a:1:{s:5:\"3.9.2\";i:1672189230;}','yes');
  324. INSERT INTO `wp_options` VALUES (265,'elementor_events_db_version','1.0.0','no');
  325. INSERT INTO `wp_options` VALUES (267,'elementor_onboarded','1','yes');
  326. INSERT INTO `wp_options` VALUES (268,'_elementor_installed_time','1672189333','yes');
  327. INSERT INTO `wp_options` VALUES (269,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:825:{i:0;a:18:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:18:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:18:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:18:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:18:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:18:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:18:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:18:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:18:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:18:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:18:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:18:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:18:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:18:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:18:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:18:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:18:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:18:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:18:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:18:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:18:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:18:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:18:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:18:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:18:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:18:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:18:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic | Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:18:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:18:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:18:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:18:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:18:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:18:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:18:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:18:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:18:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:18:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:18:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:18:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:18:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:18:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:18:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:18:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:18:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:18:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:18:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:18:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:18:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:18:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:18:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:18:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:18:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:18:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:18:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:18:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:18:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:18:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:18:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:18:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:18:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:18:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:18:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:18:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:18:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:18:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:18:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:18:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:18:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:18:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:18:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:18:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:18:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:18:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:18:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:18:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:18:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:18:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:18:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:18:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:18:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:18:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:18:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:18:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:18:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:18:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:18:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:18:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:18:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:18:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:18:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:18:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:18:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:18:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:18:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:18:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:18:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:18:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:18:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:18:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:18:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:18:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:18:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:18:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:18:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:18:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:18:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:18:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:18:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:18:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:18:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:18:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:18:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:18:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:18:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:18:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:18:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:18:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:18:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:18:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:18:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:120;a:18:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:18:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:18:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:18:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:18:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:18:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:18:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:18:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:18:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:18:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:18:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:18:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:18:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:18:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:18:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:18:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:18:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:18:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:18:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:18:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:18:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:18:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:18:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:18:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:18:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic | Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:18:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:18:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:18:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:18:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic | Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:18:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:18:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:18:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:18:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:18:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:18:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:18:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:18:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:18:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:18:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:18:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:160;a:18:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:18:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:18:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:163;a:18:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:18:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:18:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:18:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:18:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:18:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:18:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:18:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:171;a:18:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:172;a:18:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:18:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:174;a:18:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:18:{s:4:\"tmpl\";i:1204;s:2:\"id\";i:20208;s:5:\"title\";s:49:\"Alternative Medicine Acupuncture &#8211; Business\";s:9:\"thumbnail\";s:112:\"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633880557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:47:\"[\"Health\",\"Landing Pages\",\"Medical\",\"Services\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:18:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:18:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:18:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:18:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:18:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:18:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:18:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:18:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:18:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:18:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:186;a:18:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:18:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:18:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:18:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:18:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:18:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:18:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:193;a:18:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:18:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:18:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:18:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:197;a:18:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:18:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:18:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:18:{s:4:\"tmpl\";i:1215;s:2:\"id\";i:20556;s:5:\"title\";s:41:\"Faroe Islands Trip Planner &#8211; Travel\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634026480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:26:\"[\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:18:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:18:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:18:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:18:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:18:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:18:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:18:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:18:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:209;a:18:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:18:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:211;a:18:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:18:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:18:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:18:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:18:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:18:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:18:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:18:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:18:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:18:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:221;a:18:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:18:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:18:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:18:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:18:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:18:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:18:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:18:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:18:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:230;a:18:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:18:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:18:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:18:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:18:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:235;a:18:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:18:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:237;a:18:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:18:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:239;a:18:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:18:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:241;a:18:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:18:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:18:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:18:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:18:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:18:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:18:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:18:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:18:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:18:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:18:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:252;a:18:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:18:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:254;a:18:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:18:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:256;a:18:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:18:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:18:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:18:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:18:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:18:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:18:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:18:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:264;a:18:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:18:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:18:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:18:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:18:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:18:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:18:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:18:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:272;a:18:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:18:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:274;a:18:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:18:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:18:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:277;a:18:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:18:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:279;a:18:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:18:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:18:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:18:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:18:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:18:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:285;a:18:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:18:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:18:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:288;a:18:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:18:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:18:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:18:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:18:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:18:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:18:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:18:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:18:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:18:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:18:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:18:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:18:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:18:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:18:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:18:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:18:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:18:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:18:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:18:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:308;a:18:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:18:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:18:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:18:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:18:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:18:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:18:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:18:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:18:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:18:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:318;a:18:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:18:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:18:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:321;a:18:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:18:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:18:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:18:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:18:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:18:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:18:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:18:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:18:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:18:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:18:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:18:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:18:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:18:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:18:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:18:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:18:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:18:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:18:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:18:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:18:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:18:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:18:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:18:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:18:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:346;a:18:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:18:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:18:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:18:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:18:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:18:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:18:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:18:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:18:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:355;a:18:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:18:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:18:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:18:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:18:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:18:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:18:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:18:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:18:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:18:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:18:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:18:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:18:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:18:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:18:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:18:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:371;a:18:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:18:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:373;a:18:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:374;a:18:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:18:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:18:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:18:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:18:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:18:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:18:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:18:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:18:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:18:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:18:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:18:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:18:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:18:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:18:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:18:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:18:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:18:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:18:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:18:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:18:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:18:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:18:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:18:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:18:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:18:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:18:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:18:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:18:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:18:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:18:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:18:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:18:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:18:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:18:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:18:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:18:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:18:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:412;a:18:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:18:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:414;a:18:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:18:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:18:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:18:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:18:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:18:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:18:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:18:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:18:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:18:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:18:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:18:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:18:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:18:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:18:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:18:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:18:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:18:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:18:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:18:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:18:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:18:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:18:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:18:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:18:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:18:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:440;a:18:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:18:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:18:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:18:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:18:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:18:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:18:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:18:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:18:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:18:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:18:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:18:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:18:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:18:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:18:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:18:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:18:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:18:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:18:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:18:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:18:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:18:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:18:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:18:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:18:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:18:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:18:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:18:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:18:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:18:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:18:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:18:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:18:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:18:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:18:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:18:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:18:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:18:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:18:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:18:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:18:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:18:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:18:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:18:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:18:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:18:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:18:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:18:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:18:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:18:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:18:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:18:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:18:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:18:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:18:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:18:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:18:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:18:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:18:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:18:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:18:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:501;a:18:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:18:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:18:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:18:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:505;a:18:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:18:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:507;a:18:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:18:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:18:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:510;a:18:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:511;a:18:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:18:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:513;a:18:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:18:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:515;a:18:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:18:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:517;a:18:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:18:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:519;a:18:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:18:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:521;a:18:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:18:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:18:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:18:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:18:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:18:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:18:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:18:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:18:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:18:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:18:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:532;a:18:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:18:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:18:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:18:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:18:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:18:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:18:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:18:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:18:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:18:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:18:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:18:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:18:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:18:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:18:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:18:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:548;a:18:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:18:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:550;a:18:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:18:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:18:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:18:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:18:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:18:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:18:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:18:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:18:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:18:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:18:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:18:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:18:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:18:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:18:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:18:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:18:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:18:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:18:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:18:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:18:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:18:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:18:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:18:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:18:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:18:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:18:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:18:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:18:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:18:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:18:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:18:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:18:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:18:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:18:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:18:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:18:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:18:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:18:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:18:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:18:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:18:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:18:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:18:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:18:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:18:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:18:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:18:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:18:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:18:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:18:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:18:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:18:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:18:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:18:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:18:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:18:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:18:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:18:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:18:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:18:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:18:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:18:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:18:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:18:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:18:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:18:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:18:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:618;a:18:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:18:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:18:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:18:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:18:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:18:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:18:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:18:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:18:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:18:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:18:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:18:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:18:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:18:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:18:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:18:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:18:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:18:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:18:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:18:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:18:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:18:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:18:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:18:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:18:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:18:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:18:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:18:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:18:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:18:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:18:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:18:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:18:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:18:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:18:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:18:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:18:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:18:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:18:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:18:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:18:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:18:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:18:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:18:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:18:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:18:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:18:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:18:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:18:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:18:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:18:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:18:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:18:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:18:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:18:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:18:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:18:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:18:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:18:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:18:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:678;a:18:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:18:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:18:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:18:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:18:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:18:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:18:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:18:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:686;a:18:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:687;a:18:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:18:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:18:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:18:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:18:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:692;a:18:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:693;a:18:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:18:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:18:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:18:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:18:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:18:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:18:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:18:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:18:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:18:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:18:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:18:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:18:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:18:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:18:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:18:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:18:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:18:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:18:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:18:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:18:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:18:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:18:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:18:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:18:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:18:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:18:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:18:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:18:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:18:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:18:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:18:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:18:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:18:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:18:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:18:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:18:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:18:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:18:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:18:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:18:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:18:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:18:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:18:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:18:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:18:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:18:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:18:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:18:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:18:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:18:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:18:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:18:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:18:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:18:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:18:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:18:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:18:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:18:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:18:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:18:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:18:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:18:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:18:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:18:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:758;a:18:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:18:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:18:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:18:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:18:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:18:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:18:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:18:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:18:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:18:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:18:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:18:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:18:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:18:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:18:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:18:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:18:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:18:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:18:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:18:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:18:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:18:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:780;a:18:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:18:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:18:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:18:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:18:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:18:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:18:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:18:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:18:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:18:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:18:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:18:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:18:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:18:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:18:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:18:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:18:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:18:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:18:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:799;a:18:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:18:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:18:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:18:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:18:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:18:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:18:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:18:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:18:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:18:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:18:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:18:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:18:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:18:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:18:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:18:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:18:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:18:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:18:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:18:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:18:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:18:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:18:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:18:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:18:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:18:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no');
  328. INSERT INTO `wp_options` VALUES (270,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:98:\"Introducing Elementor 3.9: New Save as Default Option for Elements To Enhance Your Design Workflow\";s:7:\"excerpt\";s:253:\"Elementor 3.9 includes the new Save as a Default option, broadens the capabilities of the Loop Builder to support WooCommerce and the section-based layout, and several additional features that improve the design of your website and its user experience. \";s:7:\"created\";i:1670943042;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:141:\"https://elementor.com/blog/introducing-elementor-3-9-save-as-default/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:82:\"Introducing Loop Builder: Design Every Aspect of your Post and Product Collections\";s:7:\"excerpt\";s:306:\"Elementor 3.8 includes some highly anticipated features, including the first phase of the Loop Builder, with additional functions and capabilities added in upcoming versions. With the Loop Builder, you gain more creative freedom to design your posts and listings, so you can design it any way you’d like.\";s:7:\"created\";i:1667397460;s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:128:\"https://elementor.com/blog/introducing-the-loop-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:47:\"The Complete Guide To Design Project Management\";s:7:\"excerpt\";s:347:\"Successful web creators understand that design and systems must work side by side for people to deliver high-quality work without burning out. In this guide, we will explore the practical steps you can take to shut down time-wasting activities and frustration. Say no to scope creep and build a no-fail framework that can pivot for the unexpected.\";s:7:\"created\";i:1655196509;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:131:\"https://elementor.com/blog/design-project-management-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no');
  329. INSERT INTO `wp_options` VALUES (273,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes');
  330. INSERT INTO `wp_options` VALUES (274,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes');
  331. INSERT INTO `wp_options` VALUES (275,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes');
  332. INSERT INTO `wp_options` VALUES (291,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:2:{s:14:\"image-carousel\";a:2:{s:7:\"content\";s:426:\"<style>/*! elementor - v3.9.2 - 21-12-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\";s:7:\"version\";s:5:\"3.9.2\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:718:\"<style>/*! elementor - v3.9.2 - 21-12-2022 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#818a91;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#818a91;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:5:\"3.9.2\";}}}}','yes');
  333. INSERT INTO `wp_options` VALUES (296,'_elementor_global_css','a:6:{s:4:\"time\";i:1672190520;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes');
  334. INSERT INTO `wp_options` VALUES (304,'theme_mods_zeever','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes');
  335. INSERT INTO `wp_options` VALUES (305,'zeever_upgrader_page_content','1','yes');
  336. INSERT INTO `wp_options` VALUES (306,'downloaded_font_files','a:48:{s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2sd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2sd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2sdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2sdUmg7UiCXC5V.woff\";s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSysd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSysd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSysdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSysdUmg7UiCXC5V.woff\";s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yysd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yysd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yysdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yysdUmg7UiCXC5V.woff\";s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSysdUmg7UiCXC5V.woff\";s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Euyysd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1Euyysd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyysdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyysdUmg7UiCXC5V.woff\";s:90:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyusd0mg7UiCXC5VkK8.woff\";s:128:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyusd0mg7UiCXC5VkK8.woff\";s:87:\"https://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyusdUmg7UiCXC5V.woff\";s:125:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyusdUmg7UiCXC5V.woff\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tDMPShSkFEkm8.woff\";s:118:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tDMPShSkFEkm8.woff\";s:80:\"https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tMMPShSkFEkm8.woff\";s:118:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tMMPShSkFEkm8.woff\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tCMPShSkFE.woff\";s:115:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiAyp8kv8JHgFVrJJLmE0tCMPShSkFE.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVFteIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVFteIYktMqlap.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVGdeIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVGdeIYktMqlap.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVF9eIYktMqg.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmv1pVF9eIYktMqg.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVFteIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLm21lVFteIYktMqlap.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVGdeIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLm21lVGdeIYktMqlap.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVF9eIYktMqg.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLm21lVF9eIYktMqg.woff\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucXtGOvWDSHFF.woff\";s:115:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrJJLucXtGOvWDSHFF.woff\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLufntGOvWDSHFF.woff\";s:115:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrJJLufntGOvWDSHFF.woff\";s:75:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucHtGOvWDSA.woff\";s:113:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrJJLucHtGOvWDSA.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVFteIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmg1hVFteIYktMqlap.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVGdeIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmg1hVGdeIYktMqlap.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVF9eIYktMqg.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmg1hVF9eIYktMqg.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VFteIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VFteIYktMqlap.woff\";s:81:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VGdeIYktMqlap.woff\";s:119:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VGdeIYktMqlap.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VF9eIYktMqg.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiDyp8kv8JHgFVrJJLmr19VF9eIYktMqg.woff\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucXtGOvWDSHFF.woff\";s:115:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrLPTucXtGOvWDSHFF.woff\";s:77:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTufntGOvWDSHFF.woff\";s:115:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrLPTufntGOvWDSHFF.woff\";s:75:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucHtGOvWDSA.woff\";s:113:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiGyp8kv8JHgFVrLPTucHtGOvWDSA.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z11lE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLFj_Z11lE92JQEl8qw.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1JlE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLFj_Z1JlE92JQEl8qw.woff\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1xlE92JQEk.woff\";s:114:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLFj_Z1xlE92JQEk.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z11lE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLDz8Z11lE92JQEl8qw.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1JlE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLDz8Z1JlE92JQEl8qw.woff\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlE92JQEk.woff\";s:114:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLDz8Z1xlE92JQEk.woff\";s:75:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbedHFHGPezSQ.woff\";s:113:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiEyp8kv8JHgFVrJJbedHFHGPezSQ.woff\";s:75:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnedHFHGPezSQ.woff\";s:113:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiEyp8kv8JHgFVrJJnedHFHGPezSQ.woff\";s:72:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfedHFHGPc.woff\";s:110:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiEyp8kv8JHgFVrJJfedHFHGPc.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z11lE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLGT9Z11lE92JQEl8qw.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1JlE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLGT9Z1JlE92JQEl8qw.woff\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlE92JQEk.woff\";s:114:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLGT9Z1xlE92JQEk.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z11lE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLEj6Z11lE92JQEl8qw.woff\";s:79:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1JlE92JQEl8qw.woff\";s:117:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1JlE92JQEl8qw.woff\";s:76:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlE92JQEk.woff\";s:114:\"C:/Users/VladOS/local sites/shadrin14323/app/public/wp-content//fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1xlE92JQEk.woff\";}','no');
  337. INSERT INTO `wp_options` VALUES (363,'_transient_timeout_feed_71a7765c3d553e44aaa308159b5a2ba6','1672256967','no');
  338. INSERT INTO `wp_options` VALUES (364,'_transient_feed_71a7765c3d553e44aaa308159b5a2ba6','a:3:{s:3:\"url\";s:22:\"https://wordpress.org/\";s:8:\"feed_url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"build\";s:14:\"20211220193300\";}','no');
  339. INSERT INTO `wp_options` VALUES (365,'_transient_timeout_feed_mod_71a7765c3d553e44aaa308159b5a2ba6','1672256967','no');
  340. INSERT INTO `wp_options` VALUES (366,'_transient_feed_mod_71a7765c3d553e44aaa308159b5a2ba6','1672213767','no');
  341. INSERT INTO `wp_options` VALUES (367,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1672256967','no');
  342. INSERT INTO `wp_options` VALUES (368,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Dec 2022 16:17:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.2-alpha-55018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 45: State of the Word Reflections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/12/episode-45-state-of-the-word-reflections/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Dec 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14070\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Josepha reflects on this year\'s State of the Word address here on the WP Briefing podcast. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/12/WP-Briefing-045.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14480:\"\n<p>In the forty-fifth episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy discusses highlights from this year&#8217;s State of the Word address. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">LearnWP</a><br><a href=\"https://developer.wordpress.org/playground/demo/\">WordPress Playground</a><br><a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">ICYMI: State of the Word Recap</a><br><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2020 WordPress Survey!</a><br><a href=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/training/2022/07/11/exploring-wordpress-certifications/\">Exploring WordPress Certifications</a><br><a href=\"https://communitysummit.wordcamp.org/2023/\" data-type=\"URL\" data-id=\"https://communitysummit.wordcamp.org/2023/\">Community Summit WordCamp Site</a><br><a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">Submit Topics for the 2023 Community Summit</a><br><a href=\"https://wp20.wordpress.net/\">20th Anniversary&#8211; Stay Tuned for Updates</a><br><a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Check Out Style Variations and the 2023 Theme</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14070\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:39] </strong></p>\n\n\n\n<p>Last week, WordPress hosted its annual State of the Word. As usual, this was delivered by our project co-founder Matt Mullenweg and represented a year-long labor of love from the WordPress community as a whole. There are many things I love about State of the Word, but consistently the thing I love the most is being able to shine spotlights on the great work of our global network of contributors.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:02]&nbsp;</strong></p>\n\n\n\n<p>Since that presentation goes by at the speed of light, I wanted to highlight a few things as well. First things first, I wanted to highlight that we had nearly 1,400 contributors, and by nearly, I mean just one too few. We had 1,399 contributors. So that is a big deal in general, but it&#8217;s an especially big deal to me because that&#8217;s before we start looking at any contributions that aren&#8217;t specifically tied to a release.&nbsp;</p>\n\n\n\n<p>You may be wondering what those non-release contributions are. An incomplete list of those contributions would include organizing WordPress events, training others how to use WordPress, the myriad podcasts, articles, and newsletters that make up the WordPress media community, and any participant in a call for testing. Not to mention the unglamorous ways to contribute, like reviewing themes or reviewing plugins.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:58]&nbsp;</strong></p>\n\n\n\n<p>Things like patching security vulnerabilities and the bazillion things that Meta does to make sure that our community has all the tools that it needs to function. So I want to echo, once again, the huge, huge thanks that Matt already shared in State of the Word, and thank all of you for showing up for our project and for each other this way.</p>\n\n\n\n<p>The next thing I wanted to be sure to highlight was LearnWP. It was briefly noted that 12,000 learners had found their way to courses on learn.wordpress.org, and then during the Q&amp;A, there was a related question about certifications in WordPress.&nbsp;</p>\n\n\n\n<p>The need for certifications has been a regular topic in our project, and I mentioned that there are two different ongoing discussions at the moment. One of those discussions is happening directly on the make.wordpress.org/training site, so I&#8217;ll share a link in the show notes for that.</p>\n\n\n\n<p>But I&#8217;ve also been personally chatting on and off with Training team reps and other members of the community about what makes that so hard. In case you have not heard my whole spiel about what makes it difficult, it&#8217;s the logistics and our speed of iteration, and public perception.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:05] </strong></p>\n\n\n\n<p>So not exactly a small set of hurdles. I&#8217;ll be doing a more complete post on this in the New Year so that we can get some solid documentation of the state of things and not let it be lost forever in this podcast. But I do know that it is something that we are very interested in as a community and something that, historically, I have really been resistant to.</p>\n\n\n\n<p>Not because I think it&#8217;s a bad idea, but because as someone who&#8217;s looking out for our operations side of things and our logistics side of things, it is not clear how we&#8217;re gonna get that done. Like I said, in the New Year, keep an eye out for a big, big post that takes a look at the benefits versus the costs and everything that we can do to help make those match each other a bit better.</p>\n\n\n\n<p>And then the last thing I wanted to highlight was the WordPress Playground. Okay, so this was the last thing that Matt mentioned, and I want to be sure that it&#8217;s clear what&#8217;s going on with this project because when I first heard about it, I very nearly lept from my chair!&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:03]&nbsp;</strong></p>\n\n\n\n<p>It was such a remarkably big deal. Okay, so the WordPress Playground uses technological magic called ‘web assembly.’ I don&#8217;t know what it is, but it&#8217;s magic. And when I say magic, I mean that this tool makes it possible to run WordPress, an instance of WordPress, including a theme and a handful of plug-ins entirely inside your browser as a logged-in admin.</p>\n\n\n\n<p>You don&#8217;t need a server. You don&#8217;t need to select a host. You don&#8217;t need to download anything at all. You don&#8217;t need to know what your domain&#8217;s going to be. You simply select the theme you want to test. Add some dummy content and see how all of the posts and pages function as though we&#8217;re a real live WordPress site running on your favorite top-tier host.</p>\n\n\n\n<p>Then when you close the tab, it&#8217;s gone forever. Poof. Just like that. Now, this is a brand new project. It&#8217;s brand new to us and has a long way to go. So if working on that sounds cool, stop by the Meta Playground channel in the Making WordPress Slack.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:09]&nbsp;</strong></p>\n\n\n\n<p>But this, in my mind, changes the way that we stage sites.</p>\n\n\n\n<p>It could change the way we determine whether a theme or plugin is right for us. And arguably, it can become a stress-free way to introduce new or undecided users to WordPress’s admin area so that they can tell what they&#8217;re getting into. So when I say that this is a mind-blowing thing, and when I say that it is powered by magic, like it is astounding, it is astounding.</p>\n\n\n\n<p>And the applications for our users as a whole, I think, are untapped yet, and potentially even the applications for our learners and future learners of WordPress– equally untapped. I&#8217;m very excited to see what we can do with this project in the future. So stop by the Meta channel. Stop by Meta Playground.</p>\n\n\n\n<p>See what&#8217;s going on over there. We would love to have you.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>So those are my highlights of the day for State of the Word. Like I said, there are a few things I want to do more of a deep dive on in the text, so keep an eye out on make.wordpress.org/projects for most of those. But right now, let&#8217;s make some time for the small list of big things.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:17]&nbsp;</strong></p>\n\n\n\n<p>Today I actually have kind of like a big list of big things. But I pretended it was small, so you didn&#8217;t turn off the podcast. So the first thing that I have is that in case you missed State of the Word, if you didn&#8217;t have a Watch Party to go to, or you didn&#8217;t know it was happening and so you didn&#8217;t really tune in at the time, I&#8217;m going to drop in a link of the recording.</p>\n\n\n\n<p>It&#8217;s gonna probably start right when everything gets going. And so you shouldn&#8217;t have to scrub through anything. If you end up on one of the recordings that includes like the whole live stream, there is jazz for the first 30 minutes, and just, you know, skip through that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:07:00] </strong></p>\n\n\n\n<p>The second thing on my big list of big things is our annual community survey. So Matt mentioned this in State of the Word, and he pointed out that one of the things that makes WordPress and open source in general so effective is that we have a way to communicate with people who are using our software and we make every effort to be responsive to it.</p>\n\n\n\n<p>So the annual survey that we send out, it used to be quite big, and we&#8217;ve cut it down to 20 questions. If you want, you can think of it as like a census, so have your type of work and how long you&#8217;ve been working in WordPress, and what you wish to do with WordPress– have all those things be counted so we have a good idea of the type of person who&#8217;s currently using WordPress, and we can account for your needs and wants.</p>\n\n\n\n<p>But also, if you want to think of it more as an opportunity to share the things that were especially useful for you in the project this year or especially valuable for you as a contributor, this is also an excellent place to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:01]&nbsp;</strong></p>\n\n\n\n<p>There&#8217;s a QR code running around on the internet somewhere, but I&#8217;ll also put a link in the show notes. If you do not know where the show notes are, by the way, they are at wordpress.org/news/podcast, and you&#8217;ll be able to get to the survey.</p>\n\n\n\n<p>The third thing on my big list of big things is that next year we&#8217;re hosting a community summit. So if you&#8217;ve never been to a community summit, Matt mentioned that it is an opportunity for the best and most prolific contributors that we have to show up and discuss the things that are the biggest problems for the WordPress project right now.</p>\n\n\n\n<p>But we also want to make sure that we are making space for the voices that we know that we are missing from the community as well as contributors who look like they are probably excellent future stewards of this open source project that we are taking care of together. And so there is a whole website for that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:08:55]&nbsp;</strong></p>\n\n\n\n<p>I believe it&#8217;s communitysummit.wordcamp.org. Right now, there is a form up asking for topics that you want to be able to discuss while we are there, but it&#8217;s taking place, if I recall correctly, on August 22nd and 23rd of 2023.</p>\n\n\n\n<p>Number four on my big list of big things is that next year is WordPress&#8217;s 20th anniversary. So on May 27th of next year, WordPress will officially be 20 years old. So on our 10th birthday, anniversary rather, and our 15th anniversary, we pulled together some parties all across the world.&nbsp;</p>\n\n\n\n<p>We had some images, some logos, and things that were specific to the celebration that we printed into stickers and that folks put on, like, mugs and backpacks and cakes and stuff. So if you want to learn more about that, keep an eye out in the community channel in making WordPress Slack. They will keep you posted on how to one, find any of those logos and designs so that your local community can join in the celebrations.<br></p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:10:03]&nbsp;</strong></p>\n\n\n\n<p>But they will also help you learn how to have any sort of WordPress celebration party that we&#8217;re doing there in May of 2023.&nbsp;</p>\n\n\n\n<p>And then the final thing on my big list of big things, it was mentioned that on the 2023 theme that was shipped with a bunch of style variations and there was this really, I think, excellent illustrative video that <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> put together for us that shows that you can switch through style variations on a single theme and have a site that looks totally different.</p>\n\n\n\n<p>Now, that feels like that&#8217;s just a thing that should always have been in WordPress, but it is new this year. And so, if you have not yet had a chance to look at the 2023 theme, it is the default theme that shipped with 6.1. And so, if you have it on your website and just haven&#8217;t had a look at it yet, I encourage you to do that.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:11:00]</strong></p>\n\n\n\n<p>It&#8217;s a really interesting implementation that makes a single theme potentially look like an infinite number of other themes, and those style variations can be specific to the theme or can just kind of be around and about in the patterns that are also available in Core.&nbsp;</p>\n\n\n\n<p>Give that a look. I think it&#8217;s super worthwhile.</p>\n\n\n\n<p>And that, my friends, is your big list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in the New Year.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"The Month in WordPress – November 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2022/12/the-month-in-wordpress-november-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2022 12:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14124\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:317:\"WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project\'s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13931:\"\n<p>WordPress enthusiasts tuned in last week for the State of the Word address to celebrate the project&#8217;s yearly accomplishments and explore what 2023 holds. But that’s not the only exciting update from the past month. New proposals and ideas are already emerging with an eye on the year ahead—let’s dive into them!</p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<h2 class=\"wp-block-heading\">Highlights from State of the Word 2022</h2>\n\n\n\n<p>WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> delivered the annual State of the Word address on <strong>December 15, 2022</strong>, before a live audience in New York City. Most attendees joined the event via livestream or one of the 33 watch parties held across 11 countries.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, Executive Director of WordPress, kicked off this year&#8217;s event with an introduction to the <strong>Four Freedoms of open source</strong> and the importance of WordPress in ensuring “a free, open and interconnected web for the future.”</p>\n\n\n\n<p>Similar to past State of the Word events, Matt reflected on the project’s achievements over the past year, including Gutenberg’s adoption beyond WordPress, the steady progress in advancing the site editing experience, and the return to in-person events.<em> </em>In addition, he took the opportunity to remind everyone of the <a href=\"https://communitysummit.wordcamp.org/2023/\">2023 Community Summit</a> and the <a href=\"https://wp20.wordpress.net/\">20th anniversary of WordPress</a> coming up next year.</p>\n\n\n\n<p><strong>Ahead of 2023</strong>, Matt announced <a href=\"https://make.wordpress.org/plugins/2022/12/16/plugins-themes-categorization/\">new taxonomies</a> in the WordPress.org theme and plugin directories to help users identify the extensions that best fit their needs and plans for Phase 3 of Gutenberg—Collaboration—among other notable updates.</p>\n\n\n\n<p>People who watched the State of the Word enjoyed a demo of <a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a>, an experimental project to explore, experiment, and build apps with a WordPress instance that runs entirely in the browser.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Missed the event? <a href=\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\">Read the recap</a> or <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watch the State of the Word recording</a> and <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">Q&amp;A session</a> on WordPress.tv.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 2022 WordPress Survey is open</h2>\n\n\n\n<p>The annual WordPress survey helps project leadership and those who build WordPress understand more about the contributor experience, how the software is used, and by whom.</p>\n\n\n\n<p>This year’s survey will remain <strong>open through the end of 2022</strong> and is available in English, French, German, Italian, Japanese, Russian, and Spanish.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">Take the 2022 WordPress Survey</a> to help make an impact on the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\"><strong>Gutenberg 14.6</strong></a>, released on November 23, 2022, came with many refinements to core blocks. Notable highlights include a variation picker that allows users to choose a desired layout when a Group block is inserted on a page, a new list view for editing the Navigation block, and a keyboard shortcut to transform paragraph blocks into headings.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\"><strong>Gutenberg 14.7</strong></a>, released on December 7, 2022, introduced an experimental tabbed sidebar, colors to help identify some block types in list view, and improvements to the Page List block to make it easier to manage page links in the content.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Introducing the block editor in the support forums, a revamped Showcase page, and more</h2>\n\n\n\n<ul>\n<li>The Support and Meta Teams are bringing <a href=\"https://make.wordpress.org/support/2022/12/introducing-the-block-editor-in-the-support-forums/\">the block editor experience into the WordPress.org support forums</a>.</li>\n\n\n\n<li>WordPress.org’s redesign continues with a <a href=\"https://make.wordpress.org/meta/2022/12/14/showcase-visual-refresh/\">refreshed Showcase page</a>.</li>\n\n\n\n<li>A <a href=\"https://make.wordpress.org/community/2022/12/05/proposed-2023-global-community-sponsorship-program/\">proposal for the 2023 Global Community Sponsorship Program</a> has been published.</li>\n\n\n\n<li>WordPress is accessible to more people thanks to 19,357 contributors who translated more than eight million strings this year. Learn more about the <a href=\"https://make.wordpress.org/polyglots/2022/12/12/reflecting-on-2022-in-polyglots/\">Polyglots Team&#8217;s achievements in 2022</a>.</li>\n\n\n\n<li>Speaking of accomplishments, supporters of the Global Meetup Reactivation project <a href=\"https://make.wordpress.org/community/2022/12/09/december-update-global-meetup-reactivation-project/\">helped reactivated 126 meetup groups</a> in 2022! There are also some discussions on <a href=\"https://make.wordpress.org/community/2022/12/15/idea-creating-a-translation-events-kit-for-meetups/\">how these efforts can support the Polyglots Outreach Effort project</a>, and vice versa.</li>\n\n\n\n<li>The Community Team met with members of the Meetup.com team to help report some feedback and issues with an accessibility overlay that they ultimately <a href=\"https://make.wordpress.org/community/2022/11/23/meetup-com-accessibility-overlay-update/\">agreed to remove</a>.</li>\n\n\n\n<li>The Training Team highlighted <a href=\"https://make.wordpress.org/training/2022/12/05/learn-wordpress-site-updates-december-2022/\">the latest updates</a> that have been made to <a href=\"https://learn.wordpress.org/\">Learn WordPress</a>. In addition, <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-1/\">part 1</a> and <a href=\"https://learn.wordpress.org/course/a-developers-guide-to-block-themes-part-2/\">part 2</a> of the Developers Guide to Block Themes are now available on the platform.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/themes/2022/12/05/introducing-new-themes-team-representatives-for-the-2023-edition/\">Themes</a> and <a href=\"https://make.wordpress.org/polyglots/2022/11/08/call-for-polyglots-team-representatives-2/#comment-295831\">Polyglots</a> Teams announced their team representatives for 2023.</li>\n\n\n\n<li>The <a href=\"https://make.wordpress.org/core/2022/11/30/now-available-wordpress-3-7-4-0-final-releases/\">final releases for WordPress 3.7-4.0</a> were made available on November 30, 2022, with a notice that they are no longer receiving security updates. WordPress 4.1 and later will continue to receive such updates.</li>\n\n\n\n<li>Fresh off the press, the <a href=\"https://make.wordpress.org/polyglots/2022/12/20/polyglots-monthly-newsletter-december-2022/\">December 2022 edition of the Polyglots monthly newsletter</a> is available for reading.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\">Huanyi Chuang</a>, a front end developer from Taiwan.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Curious about why WordPress has so many releases? <a href=\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\">Tune in to Episode 44 of WP Briefing</a> to learn about the role of major and minor releases in the project.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>Help efforts to wrap up Gutenberg Phase 2 by <a href=\"https://make.wordpress.org/test/2022/12/14/fse-program-testing-call-19-running-through-refinements/\">testing the Site Editor’s latest updates</a>. Leave your feedback by January 6, 2023.</li>\n\n\n\n<li>The Performance Team shared a <a href=\"https://make.wordpress.org/core/2022/12/09/enhancing-the-scripts-api-with-a-loading-strategy/\">new proposal for enhancing the Scripts API with a loading strategy</a>.</li>\n\n\n\n<li>The Full Site Editing (FSE) Outreach Program is <a href=\"https://make.wordpress.org/test/2022/12/07/fse-program-seeking-volunteers-to-use-replay-io-for-capturing-bugs/\">looking for volunteers to use Replay.io for capturing bugs</a>. Express your interest by December 28, 2022.</li>\n\n\n\n<li>Version 21.4 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/12/20/call-for-testing-wordpress-for-android-21-4/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/12/19/call-for-testing-wordpress-for-ios-21-4/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>The Community Team is calling on WordPress contributor teams to <a href=\"https://make.wordpress.org/community/2022/12/08/suggest-topics-for-the-2023-wordpress-community-summit/\">suggest topics for the 2023 Community Summit</a> by January 16, 2023.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>The #WPDiversity working group organized <a href=\"https://make.wordpress.org/community/2022/12/17/report-wpdiversity-inclusion-and-diverse-speaker-workshops-october-and-november-2022/\">several workshops</a> during the past few months. Among other highlights, attendees of the Speaker Workshop for Women Voices in Latin America reported a 52% increase in self-confidence to speak in public. <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">Stay tuned for the next events</a>.</li>\n\n\n\n<li>The WordCamp Europe 2023 organizing team shared <a href=\"https://europe.wordcamp.org/2023/wceu-2023-content-vision/\">their content vision</a> for next year&#8217;s flagship event in Athens, Greece.</li>\n\n\n\n<li><a href=\"https://asia.wordcamp.org/2023/\">WordCamp Asia 2023</a> is just a few months away, scheduled for February 17-19, 2023, in Bangkok, Thailand. Organizers have announced the first recipient of the WordCamp Asia Diversity Scholarship, <a href=\"https://asia.wordcamp.org/2023/diversity-scholarship-recipient/\">Awais Arfan</a>.</li>\n\n\n\n<li>Three more WordCamps are happening in the next few months:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://zaragoza.wordcamp.org/2023/\">WordCamp Zaragoza</a>, Spain on January 20-21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham, Alabama</a>, USA on February 4-5, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1ed.png\" alt=\"🇵🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://cebu.wordcamp.org/2023/\">WordCamp Cebu</a>, Philippines on February 11, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>WordCamp Europe 2023 is calling for <a href=\"https://europe.wordcamp.org/2023/the-call-for-sponsors-is-now-open/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2023/call-for-speakers-is-open-now/\">speakers</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em>The following folks contributed to this edition of The Month in WordPress: <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, and <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"State of the Word 2022: A Celebration of the Four Freedoms of Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2022/12/state-of-the-word-2022-recap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 16 Dec 2022 22:11:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14110\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:355:\"WordPress belongs to all of us, but really we’re taking care of it for the next generation.” Matt Mullenweg A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder Matt Mullenweg. Those who could not join in person joined via livestream [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5677:\"\n<blockquote class=\"wp-block-quote\">\n<p>WordPress belongs to all of us, but really we’re taking care of it for the next generation.” </p>\n<cite>Matt Mullenweg</cite></blockquote>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>A small audience of WordPress contributors, developers, and extenders gathered on December 15 for the annual State of the Word keynote from WordPress co-founder <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>. Those who could not join in person joined via livestream or one of 33 watch parties held across 11 countries, with more than 500 RSVPs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&#038;ssl=1\" alt=\"The four freedoms of open source: run the program, study the change, redistribute, and distribute your copies.\" class=\"wp-image-14111\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/12/the-four-freedoms.jpeg?w=1920&amp;ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Executive Director, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a>, introduced the event with a reminder of why so many of those gathered choose WordPress—the Four Freedoms of open source. As Haden Chomphosy noted, open source is an idea that can change our generation, and WordPress is one of the most consistent and impactful stewards of those freedoms.</p>\n\n\n\n<p>As with past State of the Word events, Matt reflected on the year’s accomplishments, learnings, and aspirations as the project moves into 2023. From Gutenberg concluding its second phase of site editing in preparation for phase three—Collaborative Workflows, to the reactivation of meetups and global WordCamps, to the introduction of a new theme and plugin taxonomy, to musings on the potential of machine learning, WordPress enters its <a href=\"https://wp20.wordpress.net/\">20th year</a> continuing to define bleeding edge technology in thanks to the ecosystem’s vibrant community.&nbsp;</p>\n\n\n\n<p>The one-hour multimedia presentation was followed by an interactive <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022-qa/\">question and answer</a> session where Matt fielded questions from the livestream and studio audience. All questions will be responded to in a follow-up post on <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/project\" target=\"_blank\">Make.WordPress.org/project</a>.&nbsp;</p>\n\n\n\n<p>Discover everything that was covered by <a href=\"https://wordpress.tv/2022/12/16/matt-mullenweg-state-of-the-word-2022/\">watching the official event recording</a> and join the ongoing #StateOfTheWord conversation on <a href=\"https://www.tumblr.com/tagged/StateoftheWord?sort=top\">Tumblr</a>, <a href=\"https://www.instagram.com/explore/tags/stateoftheword/\">Instagram</a>, <a href=\"https://www.facebook.com/hashtag/stateoftheword\">Facebook</a>, <a href=\"https://www.linkedin.com/feed/hashtag/?keywords=stateoftheword\">Linkedin</a>, and <a href=\"https://twitter.com/hashtag/StateOfTheWord\">Twitter</a>. For another way to get involved, consider sharing your experience with WordPress in the <a href=\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\">2022 WordPress Community Survey</a>.</p>\n\n\n\n<span id=\"more-14110\"></span>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Referenced Resources</strong>&nbsp;</h2>\n\n\n\n<ul>\n<li><a href=\"http://wordpress.tumblr.com/\">WordPress on Tumblr</a></li>\n\n\n\n<li><a href=\"http://engineawesome.com/\">Engineawesome.com</a> using Gutenberg</li>\n\n\n\n<li><a href=\"https://communitysummit.wordcamp.org/2023/\">WordPress Community Summit 2023</a></li>\n\n\n\n<li><a href=\"http://wp20.wordpress.net/\">WP20.wordpress.net</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">learn.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/openverse\">Openverse</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme plugin</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/\">Make.WordPress.org</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/playground\">WordPress Playground</a></li>\n\n\n\n<li><a href=\"http://photomatt.tumblr.com/\">Matt on Tumblr</a></li>\n\n\n\n<li><a href=\"https://distributed.blog/\">Distributed.blog</a></li>\n</ul>\n\n\n\n<p><em><em>Special thanks to <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> and <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a> for review and collaboration.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Share Your Experience: The 2022 WordPress Survey is Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/news/2022/12/2022-wordpress-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2022 16:00:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14062\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"The 2022 WordPress survey is open for your input and available in English, French, German, Italian, Japanese, Russian, and Spanish.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4584:\"\n<p>Each year, members of the WordPress community (users, site builders, extenders, and contributors) provide valuable feedback through an annual survey. Key takeaways and trends that emerge from this survey often find their way into the annual <a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a> address, are shared in the public project blogs, and can influence the direction and strategy for the WordPress project.</p>\n\n\n\n<p>Simply put: this survey helps those who build WordPress understand more about how the software is used, and by whom. The survey also helps leaders in the WordPress open source project learn more about our contributors’ experiences.&nbsp;&nbsp;</p>\n\n\n\n<p>To ensure that your WordPress experience is represented in the 2022 survey results, <a href=\"https://wordpressdotorg.survey.fm/en-2022\">take the 2022 annual survey now.</a></p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpressdotorg.survey.fm/en-2022\">Take the 2022 Survey (English)</a></div>\n</div>\n\n\n\n<p>You may also take the survey in <a href=\"https://wordpressdotorg.survey.fm/fr-2022\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/de-2022\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/it-2022\">Italian</a>, <a href=\"https://wordpressdotorg.survey.fm/jp-2022\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/ru-2022\">Russian</a>, or <a href=\"https://wordpressdotorg.survey.fm/es-2022\">Spanish</a>, thanks to the efforts of WordPress polyglot contributors. These are the most frequently installed languages based on the number of WordPress downloads. </p>\n\n\n\n<p>The survey will be open through the end of 2022, and then WordPress plans to publish the results sometime in 2023. This year, the survey questions have been refreshed for more effortless survey flow, completion, and analysis. Some questions have been removed, while a few new ones are now present, reflecting the present and future of WordPress. If you’re looking for the analysis of the 2021 survey results, those will also be shared in early 2023.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Spread the word</h2>\n\n\n\n<p>Help spread the word about the survey by sharing it with your network, through Slack, or within your social media accounts. The more people who complete the survey and share their experience with WordPress, the more the project as a whole will benefit in the future.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security and privacy</h2>\n\n\n\n<p>Data security and privacy are paramount to the WordPress project and community. With this in mind, all data will be anonymized: no email addresses nor IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, view the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you</h2>\n\n\n\n<p>Thank you to the following WordPress contributors for assisting with the annual survey project, including question creation, strategy, survey build-out, and translation:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/dansoschin/\">dansoschin</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili/\">_dorsvenabili</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">angelasjin</a>, <a href=\"https://profiles.wordpress.org/arkangel/\">arkangel</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">audrasjb</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">atachibana</a>, <a href=\"https://profiles.wordpress.org/bjmcsherry/\">bjmcsherry</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">chanthaboune</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\">eidolonnight</a>, <a href=\"https://profiles.wordpress.org/fernandot/\">fernandot</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">fierevere</a>, <a href=\"https://profiles.wordpress.org/fxbenard/\">fxbenard</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">jpantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">laurlittle</a>, <a href=\"https://profiles.wordpress.org/nao/\">nao</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">nielslange</a>, <a href=\"https://profiles.wordpress.org/peiraisotta/\">peiraisotta</a>, <a href=\"https://profiles.wordpress.org/piermario/\">piermario</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/santanainniss/\">santanainniss</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"People of WordPress: Huanyi Chuang\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/11/people-of-wordpress-huanyi-chuang/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Nov 2022 20:09:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13562\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:144:\"The latest People of WordPress story features Huanyi Chuang, from #Taiwan, on his journey to become a digital marketer and front end developer. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11689:\"\n<p><strong>This month we feature Huanyi (Eric) Chuang, a front end developer from Taiwan, who helps connect local groups to WordPress and the worldwide open source community. He is part of the team helping to make the first WordCamp Asia a success in 2023.</strong></p>\n\n\n\n<p><strong>The People of WordPress series shares some of the inspiring stories of how people&#8217;s lives can change for the better through WordPress and its global network of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"1014\" height=\"627\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?resize=1014%2C627&#038;ssl=1\" alt=\"Huanyi pictured sitting inside a rock formation.\" class=\"wp-image-13479\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=1014&amp;ssl=1 1014w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-featured-img.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Discovering WordPress and the benefit of child themes </strong></h2>\n\n\n\n<p>Huanyi’s first footsteps in WordPress began in 2017 when he worked for a firm that built blogs and developed ad content for clients.</p>\n\n\n\n<p>After building a few sites using the platform, he discovered child themes and through them opened up a world of possibilities for his clients. To this day, he uses child themes to deliver truly custom designs and functionality for clients.</p>\n\n\n\n<p>Later in his career, Huanyi moved into digital marketing, integrating sites with massive ad platforms like Google and Facebook. This led him to learn to work with tracking code and JavaScript. He also began his learning journey in HTML, CSS, and PHP, to be able to improve his development skills and customize child themes.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Meetups bring together software users to learn together</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i2.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?fit=600%2C800&amp;ssl=1\" alt=\"Huanyi and a koala.\" class=\"wp-image-13476\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-1.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" /><figcaption class=\"wp-element-caption\"><em>Huanyi pictured in Australia during one of his travels meeting a koala bear.</em></figcaption></figure>\n\n\n\n<p>When Huanyi had a problem with a client&#8217;s site, he looked to WordPress meetups near where he lived in <a href=\"https://www.meetup.com/Taipei-WordPress/\">Taipei</a> to help find the solutions.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard</strong>.&#8221;</p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>At the meetup, he met more experienced WordPress users and developers there, who answered his questions and helped him learn.</p>\n\n\n\n<p>“When I encountered an issue with the custom archive pages, a local meetup announcement showed up on my WordPress dashboard. That was my original connection with the local community,” Huanyi said.</p>\n\n\n\n<p>The WordPress community gave Huanyi a chance to connect with people, feed his curiosity about the software, and join a circle of people he could share this interest.</p>\n\n\n\n<p>At first, he thought meetups were an opportunity to source new clients, and he took his business cards to every event. However, he soon found that these events offered him the opportunity to make friends and share knowledge.</p>\n\n\n\n<p>From then on, Huanyi started focusing more on what he could give to these events and networks, making new friends, and listening to people. This led him to share as a meetup speaker his own commercial website management experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The road to WordCamp</strong></h2>\n\n\n\n<p>It was going to his first meetup and then getting involved with WordCamps that changed Huanyi&#8217;s whole relationship with WordPress.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"600\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?resize=600%2C800&#038;ssl=1\" alt=\"Huanyi pictured on an outing, stood next to a white car.\" class=\"wp-image-13477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-2.jpg?w=225&amp;ssl=1 225w\" sizes=\"(max-width: 600px) 100vw, 600px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In 2018, he took the step to help as an organizer, having joined the Taoyuan Meetup in Taiwan. He played several parts across the organizing team, and the welcoming feeling he got in every situation encouraged him to get more involved.</p>\n\n\n\n<p>He recalls meeting new friends from different fields and other countries, which gave him a great sense of achievement and strengthened his passion for participating in the community.</p>\n\n\n\n<p>When the team started this meetup, numbers were much lower than in the group in the city of Taipei, but they were not disheartened and gradually grew the local WordPress community.</p>\n\n\n\n<p>They created a pattern of ‘multiple organizers,’ which spread the workload and grew friendships.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><strong>“Being connected to and from meetups is the most valuable part of the community. Having these friends makes me gather more information. We share information and benefit from others’ information, and thus we gain more trust in each other. With such credibility, we share more deeply and build deeper relations.”</strong> </p>\n<cite>Huanyi Chuang</cite></blockquote>\n\n\n\n<p>Before the pandemic, the meetup met every month and grew to become the second largest meetup in Taiwan. Huanyi also contributed to the WordPress community as an organizer of WordCamp Taipei 2018 in the speaker team and lead organizer of <a href=\"https://taiwan.wordcamp.org/2021/\">WordCamp Taiwan 2021</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>So why should you join the community?</strong></h2>\n\n\n\n<p>According to Huanyi, you will always have something to take home with you. It might be new information or experiences. It might be plugins or theme ideas. But most of all, it is the chance to meet fascinating people and make new friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Huanyi’s message to other contributors:<br>&#8220;Keep participating, and you will find more you can achieve than you expect.” </p>\n</blockquote>\n\n\n\n<p>He added that long-term participation will &#8216;let you feel the humanity behind the project&#8217;.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Localize: the road ahead for WordPress</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"900\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?resize=900%2C675&#038;ssl=1\" alt=\"Huanyi standing on a sandy beach.\" class=\"wp-image-13478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=900&amp;ssl=1 900w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/09/huanyi-3.jpg?w=768&amp;ssl=1 768w\" sizes=\"(max-width: 900px) 100vw, 900px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Huanyi believes WordPress has the power to break down the barriers between designers, project managers, developers, marketers, writers, and publishers. In Taiwan, he said WordPress is &#8216;a common protocol&#8217; that lets people from all of these disciplines work and communicate together more easily than they ever have before.</p>\n\n\n\n<p>That is why he works on and encourages others to localize plugins today. He believes localization of the software is the foundation for the extension of the WordPress community as it enables people to ‘Flex their Freedom’ in a language they speak!</p>\n\n\n\n<p>He has helped to organize online events around previous <a href=\"https://wptranslationday.org/\">WordPress Translation Day</a> events.</p>\n\n\n\n<p>Huanyi said: “I think it&#8217;s important to localize WordPress because its very concept of ‘open source’ means that people can access it freely. In another way, free from the monopoly of knowledge and speech. To achieve it, it&#8217;s important that people can access it with their own language.</p>\n\n\n\n<p>“Localization is the foundation of the extension of WordPress community because it helps people using different languages to access the project and lowers the hurdle to understand how things work.”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to <a href=\'https://profiles.wordpress.org/no249a002/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>no249a002</a> for sharing his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Chloe Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Adeeb Malik (<a href=\'https://profiles.wordpress.org/adeebmalik/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adeebmalik</a>) for research, interviews, and contributing to this feature article.</p>\n\n\n\n<p>The <em>People of WordPress</em> series thanks Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>) for their support.</p>\n\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13562\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WP Briefing: Episode 44: Minors, Majors, and Why We Have So Many Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wordpress.org/news/2022/11/episode-44-minors-majors-and-why-we-have-so-many-releases/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Nov 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=13996\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Hear Josepha Haden Chomphosy highlight the role of major and minor releases in the WordPress open source project in this episode.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/11/WP-Briefing-044.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8637:\"\n<p>In the forty-fourth episode of the WordPress Briefing, our host Josepha Haden Chomphosy highlights the role of major and minor releases in the WordPress open source project. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/12th_man_(football)\" data-type=\"URL\" data-id=\"https://en.wikipedia.org/wiki/12th_man_(football)\">Twelfth Man</a><br><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\" data-type=\"URL\" data-id=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">State of the Word</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-13996\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:27]&nbsp;</strong></p>\n\n\n\n<p>At the top of November, a new major release for WordPress shipped. That was WordPress 6.1. I know I talked about it basically nonstop. Then two weeks later, there was a new minor release for WordPress. It was WordPress 6.1.1, which I did not talk about at all. Way back in episode four of this podcast, I dug into the overall release cycle and what someone could expect from a high-level logistics aspect.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:05]&nbsp;</strong></p>\n\n\n\n<p>And today we&#8217;re gonna take a quick look at minor releases in particular. Just as a general heads up, I always want to lean into sports metaphors when I&#8217;m talking about releases, and I think it&#8217;s because of the words major and minor. And so, I&#8217;ve done my level best to not include that in any of my explanations today.</p>\n\n\n\n<p>But I do have one, I do have one that&#8217;s a sports thing. So just if you don&#8217;t like sports, know that it&#8217;s just one little bit and we&#8217;ll try to be carefully quick around it together. All right, so minor releases. You may have noticed that I don&#8217;t mention minor releases nearly as often as I mention major releases. And yet, most of the time, when we have a major release of WordPress, there&#8217;s a minor release that gets started almost immediately after.</p>\n\n\n\n<p>So first major versus minor. Major releases in WordPress happen roughly three times a year, give or take a release. Inside a major release, you will find that we include features, so– brand new abilities, enhancements, which you can generally call improvements to existing abilities, and also any bug fix that we can find, big or small, we&#8217;ll take &#8217;em all.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:16]&nbsp;</strong></p>\n\n\n\n<p>So minor releases in WordPress happen about four or five times a year on average. Minor releases include patches for issues introduced in the major release and any bug fix that doesn&#8217;t add or change functionality.&nbsp;</p>\n\n\n\n<p>If you&#8217;re with me so far, you probably have noted that there&#8217;s basically always at least one minor release per major release. And you might have also noted that I said minors include patches for issues we introduced in a major.</p>\n\n\n\n<p>Now, if I were hearing this with fresh ears, the first thing I would wonder is, okay, so if you start working on the minor right after you release the major to deal with issues you know you introduced in the major– why just not ship the major while there are bugs in it? Great question. I&#8217;m glad you asked. So there are a few things worth knowing here.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:09]&nbsp;</strong></p>\n\n\n\n<p>Firstly, there is this concept of “ship and iterate,” which is present in both agile and open source. The idea is that we ship software as soon as we have confidence that what is in the release is non-breaking and represents our best guests at a better experience for our users.</p>\n\n\n\n<p>Once that is out there, we use feedback on the initial release to quickly iterate and ship another release. That way, we don&#8217;t hold back any good features. And since we already planned the immediate minor, any major issues that show up can be fixed in as little as two weeks. Secondly, there is the concept that with many eyes, all bugs are shallow, which is primarily present in open source.</p>\n\n\n\n<p>The idea here is that with enough people looking at a problem, that problem doesn&#8217;t stand a chance. So when a release is shipped in a workable state but with interactions that could use some refinement, the fastest way to find those refinements is to take it to the community of WordPress users and developers and invite them to co-create this CMS with us.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:10]</strong></p>\n\n\n\n<p>Which touches on my final thought. The concept of the user as co-creator.</p>\n\n\n\n<p>If we think about the development and evolution of our software as a team effort, then we can think of the people who use our software as what&#8217;s called the “Twelfth Man” That&#8217;s in quotes, and I will, I&#8217;ll leave a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>In sports, this refers to the fans. And if you&#8217;ve ever been to a live sporting event or played in any, you will know that the cheering and jeering from fans turns into this distinct motivating entity all its own. As a whole team or individual member, you know what you have to do. You know what you need to do in a game, but there&#8217;s something about that chaotic, loud roar of feedback that just brings life to what you&#8217;re doing, and that&#8217;s how I see our community of users.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:02]</strong></p>\n\n\n\n<p>So at the end of the day, the answer to the question of ‘why so many releases’ and the follow-up question of ‘why tolerate stable imperfection’ is largely the same. To get features into the hands of our users quickly so that we can always be breathing life into this CMS we care so much about.</p>\n\n\n\n<p>I hope that answers your questions about our release cadence, and if you didn&#8217;t come into this podcast having any questions about release cadences at all, I hope this new information brings a little extra light to the complexity of working in open source.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:32]&nbsp;</strong></p>\n\n\n\n<p>That brings us now to our small list of big things.</p>\n\n\n\n<p>Big thing number one is that the State of the Word has been announced and is scheduled for December 15th. It&#8217;s a little earlier in the day than in past iterations, so I hope we get a new crew of listeners tuning in at the same time. I&#8217;ll leave a link to that in the show notes, or you can pop over to wordpress.org/news to see the announcement for yourself.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:06:00]&nbsp;</strong></p>\n\n\n\n<p>Big thing number two is that team rep nominations are open on most teams right now. So if organization and people wrangling are high on your list of ways you can give back to WordPress, head on over to the team you contribute to and see how you raise your hand for that.&nbsp;</p>\n\n\n\n<p>Then big thing number three is that big-picture goals, hopes, and timelines are being gathered, and I will ship those shortly after the start of the new year.</p>\n\n\n\n<p>It will give us all an idea of where we want to focus our attention to ensure that WordPress continues to grow toward the future. You can keep an eye out for that on make.wordpress.org/project.&nbsp;</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:60:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress – October 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/the-month-in-wordpress-october-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Nov 2022 11:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13988\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14083:\"\n<p>With the end of the year fast approaching, the WordPress project has not slowed down. Read on to learn more about the latest major release, WordPress 6.1, and the State of the Word 2022 live event, among other exciting news. It&#8217;s time to catch up on all things WordPress!</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Say hello to WordPress 6.1 “Misha”</h2>\n\n\n\n<p>The third and last major release of 2022, <a href=\"https://wordpress.org/news/2022/11/misha/\"><strong>WordPress 6.1 “Misha,”</strong></a> shipped on November 1, 2022. Named after jazz pianist <strong>Mikhail “Misha” Alperin</strong>, this release comes packed with many improvements that refine the site-building experience introduced earlier this year in WordPress 5.9 and 6.0, as well as <a href=\"https://make.wordpress.org/core/2022/10/11/wordpress-6-1-accessibility-improvements/\">accessibility</a> and <a href=\"https://make.wordpress.org/core/2022/10/11/performance-field-guide-for-wordpress-6-1/\">performance</a> upgrades.</p>\n\n\n\n<p>WordPress 6.1 is also bundled with a new default block theme, <a href=\"https://wordpress.org/news/2022/11/introducing-twenty-twenty-three/\">Twenty Twenty-Three (TT3)</a>, that features <strong>10 style variations</strong> designed by WordPress community members. These intentionally unique designs ensure that you can change the visual details of your site with ease—and within a single theme.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/1w9oywSa6Hw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Learn more about what&#8217;s in 6.1:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2022/11/misha/\">WordPress 6.1 “Misha” Announcement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/10/12/wordpress-6-1-field-guide/\">WordPress 6.1 Field Guide</a></li>\n</ul>\n\n\n\n<p>Following WordPress 6.1 “Misha”, a <a href=\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\">6.1.1 maintenance release</a> landed on November 15, 2022. This minor release includes about 50 bug fixes.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 6.1.1</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">State of the Word 2022 is coming on December 15</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Decorative blue background with text: &quot;State of the Word 2022. December 15, 2022. 1–2:30 P.M. EST (18–19:30 UTC.) New York City.&quot;\" class=\"wp-image-13956\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2022/11/Web-SOTW-Image-1200x800-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><strong>State of the Word 2022</strong>, the annual keynote address delivered by the WordPress project’s co-founder, Matt Mullenweg, will be held on <strong>December 15, 2022</strong>. The event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.</p>\n\n\n\n<p>You can also host or join a <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">State of the Word watch party</a> to enjoy the event with your WordPress friends.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\">Learn more about State of the Word 2022</a></p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in Gutenberg</h2>\n\n\n\n<p>Two new versions of Gutenberg have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\"><strong>Gutenberg 14.4</strong></a> was released on October 26, 2022, with support for a distraction-free mode that allows a more focused writing experience. Other notable highlights include a redesigned pattern inserter, content locking to the Navigation block, and improvements to fluid typography.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\"><strong>Gutenberg 14.5</strong></a> sets the groundwork for future releases with code quality improvements and bug fixes. This version introduces a new “Document Overview” panel for easier access to the list view and document information, expands margin and padding support, and improves spacing visualizers. It was released on November 9, 2022.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Explore some of the latest enhancements to the writing experience in <a href=\"https://make.wordpress.org/core/2022/10/28/core-editor-improvement-advancing-the-writing-experience/\">this Core Editor Improvement post</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Documentation Contributor Day, WordPress.org redesign updates, and more</h2>\n\n\n\n<ul>\n<li>After a <a href=\"https://make.wordpress.org/core/2022/07/27/giving-fse-a-more-user-friendly-name/\">lively discussion</a> around the site editing terminology, WordPress Executive Director Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/updates/2022/11/04/site-editor-a-more-user-friendly-name/\">announced that the term &#8220;Site Editor&#8221; will be used going forward</a> in reference to the suite of site editing tools.</li>\n\n\n\n<li>Last month, the Docs Team successfully held its <a href=\"https://make.wordpress.org/docs/2022/10/28/the-documentation-team-contributor-day-summary/\">first online Contributor Day</a> to collaborate in real-time, help onboard new contributors, and work on backlog tasks.</li>\n\n\n\n<li>Progress and next steps for the WordPress.org website redesign were shared <a href=\"https://make.wordpress.org/meta/2022/10/21/wordpress-org-redesign-update/\">in this post</a>. The following pages that will get a refreshed look and feel soon include <a href=\"https://make.wordpress.org/design/2022/11/11/a-refresh-of-wordpress-org-showcase/\">Showcase</a> and <a href=\"https://make.wordpress.org/docs/2022/10/19/new-design-for-helphub-in-wordpress-org/\">Documentation (HelpHub)</a>.</li>\n\n\n\n<li>The WordPress.org Theme Directory <a href=\"https://make.wordpress.org/meta/2022/10/20/displaying-style-variations-for-supporting-themes/\">introduced a new feature</a> that allows visitors to preview style variations in block themes.</li>\n\n\n\n<li>Inspired by the Community Team’s efforts to reactivate meetup groups, the Polyglots Team is looking to start a <a href=\"https://make.wordpress.org/polyglots/2022/11/08/starting-a-polyglots-outreach-effort/\">Polyglots outreach project</a> and welcomes help.</li>\n\n\n\n<li>The Training Team shared an <a href=\"https://make.wordpress.org/training/2022/11/01/summary-update-courses-currently-in-development-1-november-2022/\">overview of some of the new Learn WordPress courses</a> they have been recently working on.</li>\n\n\n\n<li>Openverse’s catalog now includes <a href=\"https://make.wordpress.org/openverse/2022/11/16/openverse-now-includes-over-1-million-audio-records/\">more than one million audio records</a>!</li>\n\n\n\n<li>The WordPress Photo Directory also reached a significant milestone by surpassing 5,000 photos! <a href=\"https://make.wordpress.org/photos/2022/11/17/the-road-to-5000-photos-a-retrospective/\">Check out this celebratory retrospective from the Photos team</a>.</li>\n\n\n\n<li>Speaking of Openverse and the Photo Directory, <a href=\"https://wordpress.org/news/2022/11/episode-43-openverse-photo-directory-what-are-they-and-how-are-they-different/\">don’t miss the latest episode of the WP Briefing podcast</a>—it covers the differences between these two resources, and how they work to further openly-licensed media.</li>\n\n\n\n<li>The latest edition of People of WordPress features <a href=\"https://wordpress.org/news/2022/10/people-of-wordpress-raghavendra-satish-peri/\">Raghavendra Satish Peri</a>.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Enjoy a spooky Halloween Mad Libs story completed by community contributors in <a href=\"https://wordpress.org/news/2022/10/episode-42-something-spooky-this-way-comes/\">Episode 42 of WP Briefing</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>The <a href=\"https://make.wordpress.org/core/2022/10/12/call-for-testing-plugin-dependencies/\">Plugin Dependencies feature plugin is available for testing</a>. Provide your feedback by December 1, 2022.</li>\n\n\n\n<li>What does a genuinely sustainable WordPress community look like to you? Share your vision and thoughts in <a href=\"https://make.wordpress.org/project/2022/11/01/sustainability-channel-what-should-we-do/\">this discussion post</a>.</li>\n\n\n\n<li>The new WordPress developer blog is in public beta and <a href=\"https://make.wordpress.org/core/2022/11/21/wordpress-developer-blog-is-in-public-beta/\">ready for feedback</a>.</li>\n\n\n\n<li>The Core Team requests assistance with <a href=\"https://make.wordpress.org/hosting/2022/10/19/call-for-action-testing-rollback-feature/\">testing a new Rollback Feature in WordPress core</a>.</li>\n\n\n\n<li>Version 21.2 of the WordPress mobile app for <a href=\"https://make.wordpress.org/mobile/2022/11/15/call-for-testing-wordpress-for-android-21-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2022/11/14/call-for-testing-wordpress-for-ios-21-2/\">iOS</a> is available for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Were you involved in WordPress 6.1? <a href=\"https://make.wordpress.org/core/2022/11/09/wordpress-6-1-misha-retrospective/\">Share your thoughts</a> on the release process by December 15, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Event updates &amp; WordCamps</h2>\n\n\n\n<ul>\n<li>The WordCamp Asia organizing team is collaborating with WordCamp Central to bring the <a href=\"https://asia.wordcamp.org/2023/apply-for-wordcamp-asia-diversity-scholarship/\">WordCamp Asia Diversity Scholarship</a>. In addition, the team recently announced the <a href=\"https://asia.wordcamp.org/2023/speakers-announcement-round-1/\">first round of speakers</a>.</li>\n\n\n\n<li>Preparations for <a href=\"https://europe.wordcamp.org/2023/the-preparations-for-wordcamp-europe-2023-have-begun/\">WordCamp Europe 2023</a> are underway.</li>\n\n\n\n<li>Don’t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1f7.png\" alt=\"🇧🇷\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://saopaulo.wordcamp.org/2022/\">WordCamp São Paulo</a>, Brazil on November 26, 2022</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://kolkata.wordcamp.org/2022/\">WordCamp Kolkata</a>, West Bengal, India on December 17-18, 2022</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Boost your speaking confidence in WordPress events. Register for the <a href=\"https://www.eventbrite.com/e/how-to-own-your-expertise-start-speaking-at-wordpress-events-wpdiversity-tickets-462153532657\">How to Own Your Expertise &amp; Start Speaking at WordPress Events</a> online workshop happening December 7, 2022.</p>\n</blockquote>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story that we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this edition of The Month in WordPress:</em> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/santanainniss/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>santanainniss</a>, <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13988\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"State of the Word 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/news/2022/11/state-of-the-word-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Nov 2022 17:14:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"sotw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13971\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"Join the WordPress project leaders for State of the Word 2022 in New York City on December 15, 2022. Also live-streamed on social media, you will hear about the WordPress project, open source, and more in this annual event.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18044:\"\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/VeigCZuxnfY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Hello, WordPress!&nbsp;</p>\n\n\n\n<p><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">Mark your calendars</a>; it’s almost time for State of the Word 2022!</p>\n\n\n\n<p>State of the Word is the annual keynote address delivered by the WordPress project’s co-founder, <a href=\"https://ma.tt\">Matt Mullenweg</a>. Every year, the event shares reflections on the project’s progress and the future of open source. Expect this and more in this year’s edition.</p>\n\n\n\n<p>This year’s event will take place in person in New York City and live-streamed via various WordPress.org social media platforms.&nbsp;</p>\n\n\n\n<p>Join Matt as he provides a retrospective of 2022, the latest WordPress releases, Site Editor advancements, and a return to in-person events around the globe, among other topics.</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2022</p>\n\n\n\n<p><strong>When:</strong> <a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2022&amp;dates=20221215T180000Z/20221215T193000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+the+event+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+New+York+City,+and+is+free+for+all+to+watch.%0A%0Ahttps://wordpress.org/news/2022/11/state-of-the-word-2022/\" target=\"_blank\" rel=\"noreferrer noopener\">December 15, 2022, 1–2:30 P.M. EST (18–19:30 UTC)</a></p>\n\n\n\n<p><strong>How:</strong> If you’re watching from the comfort of your home or <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">local watch party</a>, the live stream will be embedded in this post and available through the <a href=\"https://youtube.com/wordpress\">WordPress YouTube channel</a>.</p>\n\n\n\n<p><em>Update December 5, 2022: All in-person seats to State of the Word have been claimed at this time. Please join us online or at a local watch party instead! </em><s>Would you like to join the in-person audience? <a href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2022\">Request a seat by completing this survey</a>.</s></p>\n\n\n\n<h2 class=\"wp-block-heading\">Have a question for Matt?</h2>\n\n\n\n<p>State of the Word will include a Q&amp;A session. If you want to participate, you can either send your question ahead of time to <strong>ask-matt@wordcamp.org</strong> or ask during the event in the live stream chat on YouTube.</p>\n\n\n\n<p>Given the volume of questions that are usually submitted, please note that it may not be possible to answer all of them in the live Q&amp;A. A follow-up post will be published after the State of the Word to answer those not covered at the event.</p>\n\n\n\n<p>First time attending State of the Word? Check out <a href=\"https://wordpress.tv/tag/state-of-the-word/\">previous years&#8217; recordings on</a> <a href=\"https://wordpress.tv/tag/state-of-the-word/\">WordPress.tv</a> to get a sense of the event.</p>\n\n\n\n<p>See you in person or online on December 15!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-default\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"join-a-state-of-the-word-watch-party-near-you\">Join a State of the Word Watch Party near You</h2>\n\n\n\n<p>Can’t make it to New York? No problem, organize or join a watch party in your community in person or online. Like last year, the Community team has resources available to help! Check out <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/state-of-the-word-watch-parties/\">this handbook page</a>, which includes event templates, information on requesting a Zoom account, and how to get some swag.</p>\n\n\n\n<p>Gather together to look back on how WordPress has grown in 2022 and what is ahead for 2023. Stay up-to-date as a group on the latest happenings in the WordPress world and collaborate together on any questions you might have for Matt!</p>\n\n\n\n<p>Below you can find a list of State of the Word watch parties that will be updated regularly as the event approaches. If you don’t see a watch party in your region, <a href=\"https://meetup.com/pro/wordpress\">check this page on Meetup.com</a> to see if your local WordPress group is organizing one.</p>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/bali-wordpress-meetup\">Bali</a> – <a href=\"https://www.meetup.com/bali-wordpress-meetup/events/290077585/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup\">Bandung</a> &#8211; <a href=\"https://www.meetup.com/Bandung-WordPress-Meetup/events/290189476/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/demak-wordpress-meetup\">Demak</a> &#8211; <a href=\"https://www.meetup.com/demak-wordpress-meetup/events/290139514/\">Nobar Akbar &#8211; State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup\">Gresik</a> – <a href=\"https://www.meetup.com/Gresik-WordPress-Meetup/events/290094185/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup\">Jakarta</a> – <a href=\"https://www.meetup.com/Jakarta-WordPress-Meetup/events/290077621/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/semarang-wordpress-meetup\"></a><a href=\"https://www.meetup.com/semarang-wordpress-meetup\">Semarang</a> – <a href=\"https://www.meetup.com/semarang-wordpress-meetup/events/290078011/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/surabaya-wordpress-meetup\">Surabaya</a> – <a href=\"https://www.meetup.com/surabaya-wordpress-meetup/events/290094201/\">Nobar Akbar – State of the Word 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup\">Surakarta</a> &#8211; <a href=\"https://www.meetup.com/Surakarta-WordPress-Meetup/events/290118717/\">Nobar Akbar &#8220;State of the Word&#8221; 2022</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tangsel-wordpress-meetup\">Tangsel</a> &#8211; <a href=\"https://www.meetup.com/tangsel-wordpress-meetup/events/290134068/\">[ONLINE] Nobar Akbar &#8220;State of the Word&#8221; Indonesia</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Tegal</a> – <a href=\"https://www.meetup.com/tegal-wordpress-meetup/events/290031767/\">Nonton bareng “State of the Word 2022”</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup\">Wonosobo</a> &#8211; <a href=\"https://www.meetup.com/wonosobo-wordpress-meetup/events/290202948/\">Nobar akbar “State of the Word” di Indonesia &#8211; WordPress Meetup Wonosobo #4</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1e9.png\" alt=\"🇮🇩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup\">Yogyakarta</a> &#8211; <a href=\"https://www.meetup.com/Yogyakarta-WordPress-Meetup/events/290210890/\">Nonton bareng akbar &#8220;State of the Word&#8221; dengan pembicara Matt Mullenweg</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wpgrandrapids\">Grand Rapids</a> – <a href=\"https://www.meetup.com/wpgrandrapids/events/290039217/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpress-jacksonville\">Jacksonville</a> &#8211; <a href=\"https://www.meetup.com/wordpress-jacksonville/events/290194941/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/learn-wordpress-online-workshops\">Learn WordPress Online Workshops</a> – <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/290051844/\">State of the Word Watch Party (Live Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">Oklahoma City</a> – <a href=\"https://www.meetup.com/okc-wordpress-users-group/events/290042857/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/sanjosewp\">San Jose</a> – <a href=\"https://www.meetup.com/sanjosewp/events/290067642/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/wordpressscv\">Santa Clarita</a> &#8211; <a href=\"https://www.meetup.com/wordpressscv/events/290262927/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1fa-1f1f8.png\" alt=\"🇺🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/santa-cruz-wordpress\">Santa Cruz</a> – <a href=\"https://www.meetup.com/santa-cruz-wordpress/events/290067649/\">State of the Word 2022 Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kochi-WordPress-Meetup\">Kochi – </a><a href=\"https://www.meetup.com/Kochi-WordPress-Meetup/events/289893144/\">State of the Word Watch Party (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f3.png\" alt=\"🇮🇳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup\">Vadodara</a> &#8211; <a href=\"https://www.meetup.com/Vadodara-WordPress-Meetup/events/290171074/\">State of the Word 2022 &#8211; Vadodara WordPress Meetup (In-person)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/meetup-wordpress-ancona\"></a><a href=\"https://www.meetup.com/meetup-wordpress-ancona\">Ancona</a> – <a href=\"https://www.meetup.com/meetup-wordpress-ancona/events/289968378/\">State of the Word Watch Party + Auguri di Natale + Proposte 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/RomaWordPress\">Roma (Rome)</a> &#8211; <a href=\"https://www.meetup.com/RomaWordPress/events/290220630/\">State of the Word Watch Party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza\">Vicenza</a> &#8211; <a href=\"https://www.meetup.com/WordPress-Meetup-Vicenza/events/290283053/\">Watch party WPVI di &#8220;State of the Word 2022&#8221;</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup\">Kagawa</a> – <a href=\"https://www.meetup.com/Kagawa-WordPress-Meetup/events/290076405/\">State of the Word Watch Party + 日本語字幕つけ [オンライン開催]</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ef-1f1f5.png\" alt=\"🇯🇵\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup\">Tokyo</a> – <a href=\"https://www.meetup.com/Tokyo-WordPress-Meetup/events/289965452/\">State of the Word から来年の WordPress を考えよう!+ 忘年会</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Granada-WordPress-Meetup\"></a><a href=\"https://www.meetup.com/Granada-WordPress-Meetup\">Granada</a> – <a href=\"https://www.meetup.com/Granada-WordPress-Meetup/events/290016526/\">¡Veamos el State of the Word 2022!</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"🇪🇸\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Sevilla</a> – <a href=\"https://www.meetup.com/WordPress-Sevilla/events/289745598/\">Watch Party Meetup y organizando el 2023</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ea.png\" alt=\"🇧🇪\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup\">Antwerp</a> &#8211; <a href=\"https://www.meetup.com/Antwerp-WordPress-Meetup/events/290193048/\">Ad hoc meetup: State of the Word 2022 viewing party</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"🇵🇰\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\"></a><a href=\"https://www.meetup.com/faisalabad-wordpress-meetup\">Faisalabad</a>&nbsp; – <a href=\"https://www.meetup.com/faisalabad-wordpress-meetup/events/290061682/\">WordPress keynote address</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1ed.png\" alt=\"🇨🇭\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/geneva-wordpress\"></a><a href=\"https://www.meetup.com/geneva-wordpress\">Genève (Geneva)</a> – <a href=\"https://www.meetup.com/geneva-wordpress/events/289943099/\">State of the Word “Watch Party” et plus/and more (FR/EN) WordPress</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ed-1f1f9.png\" alt=\"🇭🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup\">Port-au-Prince</a> – <a href=\"https://www.meetup.com/Port-au-Prince-WordPress-Meetup/events/289909938/\">State of the Word Watch Party (Online)</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ec.png\" alt=\"🇧🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://www.meetup.com/WordPress-Sofia-Meetup\">Sofia – </a><a href=\"https://www.meetup.com/WordPress-Sofia-Meetup/events/289915099/\">“State of the Word 2022” watch party!</a></li>\n</ul>\n\n\n\n<p>If you are planning a watch party for State of the Word and have questions, please email support@wordcamp.org. A member of the WordPress community team will assist you in the best way possible.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13971\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.1.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2022/11/wordpress-6-1-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Nov 2022 19:51:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"6.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13918\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:244:\"WordPress 6.1.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.1 on 01 November 2022. You can review a summary of the key changes in this release by visiting WordPress.org/news.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Jeffrey Paul\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9925:\"\n<h2 class=\"wp-block-heading\">WordPress 6.1.1 is now available</h2>\n\n\n\n<p>This minor release features <a href=\"https://core.trac.wordpress.org/query?milestone=6.1.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">29 bug fixes in Core</a> and <a href=\"https://github.com/WordPress/gutenberg/compare/ca07aa8354a1131dbabcc36dfcaf70e0c0891f54...6566f5fe9ece6ad5ae550349d3b1f0944a011040\">21 bug fixes</a> for the block editor. WordPress 6.1.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the <a href=\"https://make.wordpress.org/core/2022/11/11/wordpress-6-1-1-rc1-is-now-available/\">RC1 announcement</a>.</p>\n\n\n\n<p>The next major release will be <a href=\"https://make.wordpress.org/core/6-2/\">version 6.2</a> planned for 2023.</p>\n\n\n\n<p>If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-6.1.1.zip\">download WordPress 6.1.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.</p>\n\n\n\n<p>For more information, check out the <a href=\"https://wordpress.org/support/wordpress-version/version-6-1-1/\">version 6.1.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>The WordPress 6.1.1 release was led by <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, and <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>.</p>\n\n\n\n<p>WordPress 6.1.1 would not have been possible without the contributions of more than 105 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/alexstine/\">alexstine</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/oandregal/\">Andre</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a>, <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjorn2404/\">bjorn2404</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a>, <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella</a>, <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a>, <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a>, <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a>, <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">jeffpaul</a>, <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a>, <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a>, <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a>, <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a>, <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a>, <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a>, <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a>, <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a>, <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a>, <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/webmandesign/\">Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a>, <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a>, <a href=\"https://profiles.wordpress.org/pypwalters/\">pypwalters</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, and <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> and <a href=\"https://wordpress.slack.com/archives/C03LZ88NX6G\">#6-1-release-leads channels</a>. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13918\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n\n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WP Briefing: Episode 43: Openverse &amp; Photo Directory– What Are They, and How Are They Different?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wordpress.org/news/2022/11/episode-43-openverse-photo-directory-what-are-they-and-how-are-they-different/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Nov 2022 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=13890\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:151:\"Join Josepha as she explores the differences between Openverse &#38; Photo Directory, two resources for openly licensed media in the WordPress project.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:62:\"https://wordpress.org/news/files/2022/11/WP-Briefing-043-1.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9040:\"\n<p>In the forty-third episode of the WordPress Briefing, Josepha Haden Chomphosy explores two resources for openly licensed media in the WordPress project&#8211; Openverse and Photo Directory&#8211; and how they differ from one another!</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">References</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/photos/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/photos/\">Photo Directory Make Page</a><br><a href=\"https://wordpress.org/photos/submit/\" data-type=\"URL\" data-id=\"https://wordpress.org/photos/submit/\">Submit a Photo to the Photo Directory</a><br><a href=\"https://make.wordpress.org/openverse/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/openverse/\">Openverse Make Page</a><br><a href=\"https://github.com/WordPress/gutenberg/issues/44496\" data-type=\"URL\" data-id=\"https://github.com/WordPress/gutenberg/issues/44496\">Openverse Call for Contributions: Block Editor Integration</a><br><a href=\"https://wordpress.org/download/\" data-type=\"URL\" data-id=\"https://wordpress.org/download/\">Download WordPress 6.1</a><br><a href=\"https://make.wordpress.org/docs/?p=13761\" data-type=\"URL\" data-id=\"https://make.wordpress.org/docs/?p=13761\">Docs Team Contributor Day Recap Post</a><br><a href=\"https://wp.me/p4FYxH-1XH\" data-type=\"URL\" data-id=\"https://wp.me/p4FYxH-1XH\">Hallway Hangout Block Themes (Video)</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-13890\"></span>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:00]&nbsp;</strong></p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.&nbsp;</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:00:27] </strong></p>\n\n\n\n<p>About 18 months ago, the Openverse project became part of the WordPress open source project, and at roughly the same time, we also welcomed the Photo Directory.</p>\n\n\n\n<p>Since that time, we&#8217;ve seen growth in teams supporting both of these initiatives. But if you&#8217;re not involved in the day-to-day, it can be hard to know how those two things fit together or if they fit together at all.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:01:00]&nbsp;</strong></p>\n\n\n\n<p>Today, let&#8217;s take a brief tour of those two projects and why they came to be.&nbsp;</p>\n\n\n\n<p>In my timeline, work on the Photo Directory started before the work on Openverse, so that&#8217;s where we&#8217;ll start.</p>\n\n\n\n<p>For as long as I can remember, the WordPress community has raised the need for WordPress-first ways to have and host GPL-compatible photos for use in themes, site builds, and marketing efforts as a whole. As recently as 2016, that was still coming up as a question at various flagship events and among the career photographers that contribute their time to WordPress.</p>\n\n\n\n<p>So in 2017 and 2018, as attention started to turn toward rebuilding the CMS using blocks, it dropped down the list of priority items. But it never really went away as a thing that people were hoping we could do for the project as a whole. So in 2019, it was becoming clear that having open source-first tools of all varieties for people whose businesses were built on our software would help broaden the availability of the open source freedoms we believe in.</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:02:00]&nbsp;</strong></p>\n\n\n\n<p>This began the work on the Photo Directory with the intention of providing a GPL-friendly, community-driven repository of images. It has since launched, and we have photos in it now. We have a whole team around it. It&#8217;s wonderful. But that is how that all kind of came to be.&nbsp;</p>\n\n\n\n<p>Openverse, on the other hand, was launched as CC Search in 2019 with the laudable mandate to increase the discoverability and accessibility of open access media.</p>\n\n\n\n<p>Late in 2020, while work on the Photo Directory was underway, Matt shared with me that the team was looking for a new project home. When I first met with them, they shared an overview of the product, which they shorthanded as an open source search engine that searches openly licensed images. We were working on a repo of openly licensed images, so clearly, this was all written in the stars. And so you might be asking yourself at this point, great, how does it work together?</p>\n\n\n\n<p>I think for most of us, the timeline there kind of covers the question of what is the difference between these two things.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:03:00]&nbsp;</strong></p>\n\n\n\n<p>But because I never know which of you will want to strike up a conversation about open source on an elevator, I&#8217;ve also got the elevator pitch version.&nbsp;</p>\n\n\n\n<p>Openverse is an open source search engine that searches, indexes, and aggregates copy left media from across the web using sources such as WordPress&#8217;s Photo Directory, Flickr&#8217;s CC Tagged Media, and Wikimedia, to name just a few.&nbsp;</p>\n\n\n\n<p>Another key difference between the Photo Directory and Openverse is that in order to contribute to the Photo Directory, now that it&#8217;s all built, that&#8217;s mostly done by submitting photos or reviewing photos. So you don&#8217;t really need to be a developer to join in.&nbsp;</p>\n\n\n\n<p>Openverse is not only a developer-centric contribution opportunity, but it also uses a different tech stack than WordPress as a whole. So it&#8217;s a good place for folks to go if they&#8217;re looking to broaden their horizons.</p>\n\n\n\n<p>So that&#8217;s your elevator pitch of what Openverse is and how it uses the Photo Directory.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:04:00]&nbsp;</strong></p>\n\n\n\n<p>You have a couple of ways that you can get involved with these two projects. For the Photo Directory, as I mentioned at the start, you can always contribute photos, and they could always use more photo contributions.</p>\n\n\n\n<p>I&#8217;ll include a link to the submission guidelines in the show notes below, and as I mentioned, it is a no-code way to give back to the WordPress project. So no code, development environments, and testing skills are required. The Photo Directory team also could always use more contributors to help with the moderating of photo submissions.</p>\n\n\n\n<p>And so I&#8217;ll link to their making WordPress page in the show notes as well so that you can get started there.&nbsp;</p>\n\n\n\n<p>And as I mentioned before, Openverse is an aggregator, so it doesn&#8217;t host any media itself, but it is always accepting suggestions for new GPL-compatible media providers. I&#8217;ll link the area where you can leave suggestions in the show notes as well.</p>\n\n\n\n<p>And if you are more code inclined, there&#8217;s an open issue for adding Openverse browsing to the block editor right now.&nbsp;&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:00]&nbsp;</strong></p>\n\n\n\n<p>So I&#8217;ll link that issue in the show notes in case you thought to yourself, gosh, that sounds like my most favorite thing to do. That is where you can go.&nbsp;</p>\n\n\n\n<p><strong>[Josepha Haden Chomphosy 00:05:12]</strong></p>\n\n\n\n<p>This leads us now to our small list of big things.</p>\n\n\n\n<p>In case you missed it, WordPress 6.1 is now available. It launched on November 1st. Late, late, late in the day, and so it was easy to miss if you&#8217;re used to seeing it at a particular time. We were about six hours later than usual. But if you go to wordpress.org/download, you can get your own copy there.</p>\n\n\n\n<p>The second thing on our small list of big things is that the Docs team had a contributor day. It was excellent. There&#8217;s a recap post up. I will include that in the show notes.&nbsp;</p>\n\n\n\n<p>And then the final thing is that there was a recent hallway hangout that talked about the site editor and block themes.</p>\n\n\n\n<p>[<strong>Josepha Haden Chomphosy </strong>00:06:00]&nbsp;</p>\n\n\n\n<p>The video for that is also published. I will also share that in our show notes.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 28 Dec 2022 07:49:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 22 Dec 2022 12:00:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211220193300\";}','no');
  343. INSERT INTO `wp_options` VALUES (369,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1672256967','no');
  344. INSERT INTO `wp_options` VALUES (370,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1672213767','no');
  345. INSERT INTO `wp_options` VALUES (387,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/ru_RU/wordpress-6.1.1.zip\";s:6:\"locale\";s:5:\"ru_RU\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/ru_RU/wordpress-6.1.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1672236825;s:15:\"version_checked\";s:5:\"6.1.1\";s:12:\"translations\";a:0:{}}','no');
  346. INSERT INTO `wp_options` VALUES (388,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1672236826;s:7:\"checked\";a:6:{s:19:\"spice-software-dark\";s:3:\"1.1\";s:14:\"spice-software\";s:5:\"1.1.7\";s:15:\"twentytwentyone\";s:3:\"1.7\";s:17:\"twentytwentythree\";s:3:\"1.0\";s:15:\"twentytwentytwo\";s:3:\"1.3\";s:6:\"zeever\";s:5:\"1.0.9\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:6:{s:19:\"spice-software-dark\";a:6:{s:5:\"theme\";s:19:\"spice-software-dark\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:49:\"https://wordpress.org/themes/spice-software-dark/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/theme/spice-software-dark.1.1.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";s:3:\"5.4\";}s:14:\"spice-software\";a:6:{s:5:\"theme\";s:14:\"spice-software\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/spice-software/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/spice-software.1.1.7.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";s:3:\"5.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.0.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"zeever\";a:6:{s:5:\"theme\";s:6:\"zeever\";s:11:\"new_version\";s:5:\"1.0.9\";s:3:\"url\";s:36:\"https://wordpress.org/themes/zeever/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/zeever.1.0.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:5:{i:0;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:19:\"spice-software-dark\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.1\";s:7:\"updated\";s:19:\"2021-10-19 06:55:09\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/translation/theme/spice-software-dark/1.1/ru_RU.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"spice-software\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.7\";s:7:\"updated\";s:19:\"2021-08-24 14:55:17\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/translation/theme/spice-software/1.1.7/ru_RU.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentytwentyone\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:19:\"2022-01-25 22:28:22\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/theme/twentytwentyone/1.0/ru_RU.zip\";s:10:\"autoupdate\";b:1;}i:3;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:17:\"twentytwentythree\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:19:\"2022-10-25 15:40:19\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/theme/twentytwentythree/1.0/ru_RU.zip\";s:10:\"autoupdate\";b:1;}i:4;a:7:{s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"twentytwentytwo\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:19:\"2022-05-24 20:30:06\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/theme/twentytwentytwo/1.3/ru_RU.zip\";s:10:\"autoupdate\";b:1;}}}','no');
  347. INSERT INTO `wp_options` VALUES (389,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1672236826;s:8:\"response\";a:0:{}s:12:\"translations\";a:1:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:9:\"elementor\";s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.2\";s:7:\"updated\";s:19:\"2022-12-24 19:44:34\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/translation/plugin/elementor/3.9.2/ru_RU.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:1:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.9.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:1:{s:23:\"elementor/elementor.php\";s:5:\"3.9.2\";}}','no');
  348. INSERT INTO `wp_options` VALUES (391,'_site_transient_timeout_theme_roots','1672241565','no');
  349. INSERT INTO `wp_options` VALUES (392,'_site_transient_theme_roots','a:6:{s:19:\"spice-software-dark\";s:7:\"/themes\";s:14:\"spice-software\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";s:6:\"zeever\";s:7:\"/themes\";}','no');
  350. INSERT INTO `wp_options` VALUES (393,'_transient_timeout_elementor_remote_info_api_data_3.9.2','1672282967','no');
  351. INSERT INTO `wp_options` VALUES (394,'_transient_elementor_remote_info_api_data_3.9.2','a:4:{s:9:\"timestamp\";s:10:\"1672236831\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:64:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:53;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:54;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:55;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:56;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:59;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:60;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:61;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:62;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:63;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no');
  352. INSERT INTO `wp_options` VALUES (395,'_site_transient_timeout_wp_remote_block_patterns_8831563dfc6c6bbba08a2f59b722321d','1672243369','no');
  353. INSERT INTO `wp_options` VALUES (396,'_site_transient_wp_remote_block_patterns_8831563dfc6c6bbba08a2f59b722321d','a:44:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:231678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:22:\"Header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1356:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-3\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"></p>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1984:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0em\",\"top\":\"1em\",\"right\":\"1em\",\"left\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=f60b088dac6c7cc04eeebf67f600e079\",\"id\":null,\"dimRatio\":0,\"minHeight\":490,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Введите заголовок...\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:4377;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:74:\"Три колонки со смещенными изображениями\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1348:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-8\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Крупный план, абстрактный вид геометрической архитектуры.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Крупным планом вид окна белого здания под углом.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Крупный план угла белого геометрического здания с острыми и скругленными углами.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:75:\"Три колонки со смещенными изображениями.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1898:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Крупный план, абстрактный вид геометрической архитектуры.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Крупным планом вид окна белого здания под углом.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Крупный план угла белого геометрического здания с острыми и скругленными углами.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:4378;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Три колонки текста\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1192:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-12\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Виртуальный тур ↗</a></strong></h3>\n\n\n\n<p>Примите участие в виртуальной экскурсии по музею. Идеально подходит для школ и мероприятий.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Текущие шоу ↗</a></strong></h3>\n\n\n\n<p>Будьте в курсе и смотрите наши текущие выставки здесь.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Полезная информация ↗</a></strong></h3>\n\n\n\n<p>Узнайте о времени работы, ценах на билеты и скидках.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:35:\"Три колонки текста.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1736:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Виртуальный тур ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Примите участие в виртуальной экскурсии по музею. Идеально подходит для школ и мероприятий.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Текущие шоу ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Будьте в курсе и смотрите наши текущие выставки здесь.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Полезная информация ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Узнайте о времени работы, ценах на билеты и скидках.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:4379;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:69:\"Три колонки с изображениями и текстом\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3609:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-14\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ЭКОСИСТЕМА</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Положительный рост.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-18\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Природа</em> в обычном смысле слова относится к сущностям, неизменным человеком; космос, воздух, река, лист. <em>Искусство</em> применяется к смеси его воли с теми же вещами, как в доме, канале, статуе, картине. Но его операции, взятые вместе, настолько незначительны, это небольшое измельчение, выпечка, заплатка и стирка, что в таком грандиозном впечатлении, как мир, в человеческом сознании, они не меняют результата.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"Солнце садится сквозь густой лес деревьев.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Ветровые турбины, стоящие на травянистой равнине, против голубого неба.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-21\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"Солнце светит над гребнем, спускающимся к берегу. Вдалеке по дороге едет машина.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Несомненно, у нас нет вопросов, на которые невозможно ответить. Мы должны доверять совершенству творения настолько, чтобы верить в то, что какое бы любопытство ни пробудил в наших умах порядок вещей, порядок вещей может удовлетворить. Состояние каждого человека &#8212; это иероглифическое решение тех вопросов, которые он задавал.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:142:\"Три столбца с изображениями и текстом с интервалом по вертикали для смещения.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4759:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ЭКОСИСТЕМА</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Положительный рост.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Природа</em> в обычном смысле слова относится к сущностям, неизменным человеком; космос, воздух, река, лист. <em>Искусство</em> применяется к смеси его воли с теми же вещами, как в доме, канале, статуе, картине. Но его операции, взятые вместе, настолько незначительны, это небольшое измельчение, выпечка, заплатка и стирка, что в таком грандиозном впечатлении, как мир, в человеческом сознании, они не меняют результата.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"Солнце садится сквозь густой лес деревьев.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Ветровые турбины, стоящие на травянистой равнине, против голубого неба.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"Солнце светит над гребнем, спускающимся к берегу. Вдалеке по дороге едет машина.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Несомненно, у нас нет вопросов, на которые невозможно ответить. Мы должны доверять совершенству творения настолько, чтобы верить в то, что какое бы любопытство ни пробудил в наших умах порядок вещей, порядок вещей может удовлетворить. Состояние каждого человека - это иероглифическое решение тех вопросов, которые он задавал.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:4380;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:79:\"Два столбца текста со смещенным заголовком\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2550:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-25\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Океанское вдохновение</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-29\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Обмотав головы вуалью, женщины вышли на палубу. Теперь они неуклонно двигались вниз по реке, минуя темные силуэты кораблей на якоре, и Лондон представлял собой рой огней с нависшим над ним бледно-желтым куполом. Это были огни больших театров, огни длинных улиц, огни, указывающие на огромные площади домашнего уюта, огни, которые висели высоко в воздухе.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Никакая тьма никогда не осядет на этих светильниках, поскольку никакая тьма не села на них сотни лет. Казалось ужасным, что город вечно пылает на одном и том же месте; ужасен, по крайней мере, для людей, отправляющихся в путешествие по морю и созерцающих его как ограниченный холм, вечно выжженный, вечно покрытый шрамами. С палубы корабля город казался как трусливая фигура, сидячий скряга.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Два столбца текста со смещенным заголовком.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3398:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Океанское вдохновение</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Обмотав головы вуалью, женщины вышли на палубу. Теперь они неуклонно двигались вниз по реке, минуя темные силуэты кораблей на якоре, и Лондон представлял собой рой огней с нависшим над ним бледно-желтым куполом. Это были огни больших театров, огни длинных улиц, огни, указывающие на огромные площади домашнего уюта, огни, которые висели высоко в воздухе.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Никакая тьма никогда не осядет на этих светильниках, поскольку никакая тьма не села на них сотни лет. Казалось ужасным, что город вечно пылает на одном и том же месте; ужасен, по крайней мере, для людей, отправляющихся в путешествие по морю и созерцающих его как ограниченный холм, вечно выжженный, вечно покрытый шрамами. С палубы корабля город казался как трусливая фигура, сидячий скряга.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:4381;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:77:\"Медиа и текст в полноразмерном контейнере\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1576:\"\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Крупный план засохшей потрескавшейся земли.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"has-text-color wp-block-heading\" style=\"color:#000000;font-size:32px\"><strong>В чем проблема?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Сегодня деревья важнее, чем когда-либо прежде. Сообщается, что из деревьев изготовлено более 10 000 изделий. Посредством химии из скромной поленницы получаются химические вещества, пластмассы и ткани, о которых невозможно было даже представить, когда топор впервые срубил техасское дерево.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link\">Узнать больше</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:130:\"Медиа и текстовый блок с изображением слева и текстом и кнопкой справа.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2197:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https://s.w.org/images/core/5.8/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Крупный план засохшей потрескавшейся земли.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"has-text-color\" style=\"color:#000000;font-size:32px\"><strong>В чем проблема?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Сегодня деревья важнее, чем когда-либо прежде. Сообщается, что из деревьев изготовлено более 10 000 изделий. Посредством химии из скромной поленницы получаются химические вещества, пластмассы и ткани, о которых невозможно было даже представить, когда топор впервые срубил техасское дерево.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link\">Узнать больше</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:4382;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:65:\"Медиа и текст с изображением справа\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:864:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"Зелено-коричневый сельский пейзаж, ведущий в ярко-синий океан и слегка облачное небо, выполненный масляными красками.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Берег синего моря</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Элеонора Харрис&nbsp;(Американка, 1901-1942)</p>\n</div></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:112:\"Медиа и текстовый блок с изображением справа и текстом слева.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1283:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"Зелено-коричневый сельский пейзаж, ведущий в ярко-синий океан и слегка облачное небо, выполненный масляными красками.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"has-text-color\" style=\"color:#000000\"><strong>Берег синего моря</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Элеонора Харрис&nbsp;(Американка, 1901-1942)</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:4383;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:63:\"Медиа и текст с изображением слева\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:678:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Крупный план, абстрактный вид архитектуры.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"has-text-align-center has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Открытые пространства</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">Посмотрите тематическое исследование ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:112:\"Медиа и текстовый блок с изображением слева и текстом справа.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:951:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Крупный план, абстрактный вид архитектуры.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Открытые пространства</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">Посмотрите тематическое исследование ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:4384;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:69:\"Большой заголовок с текстом и кнопкой\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1255:\"\n<div class=\"wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-white-color has-text-color wp-block-heading\" style=\"font-size:48px;line-height:1.2\"><strong><em>За границей:</em></strong><br><strong><em>1500–1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-35\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">Выставка о различных представлениях океана во времени, между шестнадцатым и двадцатым веками. Проходит в нашей открытой комнате на <em>этаже 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" style=\"background-color:#000000;color:#ffffff\">Посетить</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:124:\"Большой заголовок с фоновым изображением, текстом и кнопкой сверху.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1972:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>За границей:</em></strong><br><strong><em>1500–1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">Выставка о различных представлениях океана во времени, между шестнадцатым и двадцатым веками. Проходит в нашей открытой комнате на <em>этаже 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"borderRadius\":0,\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" style=\"background-color:#000000;color:#ffffff\">Посетить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:4385;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:103:\"Большой заголовок с выравниванием текста по левому краю\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1370:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-text-color wp-block-heading\" style=\"color:#ffe074;font-size:64px\">Лес</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-38\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Даже ребенок знает, насколько ценен лес. Свежий, захватывающий дух запах деревьев. Эхо птиц, летящих над этим плотным массивом. Стабильный климат, устойчивая разнообразная жизнь и источник культуры. Тем не менее, леса и другие экосистемы висят на волоске и могут превратиться в пахотные земли, пастбища и плантации.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:73:\"Изображение на обложке с цитатой сверху\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1866:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Лес</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":330} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Даже ребенок знает, насколько ценен лес. Свежий, захватывающий дух запах деревьев. Эхо птиц, летящих над этим плотным массивом. Стабильный климат, устойчивая разнообразная жизнь и источник культуры. Тем не менее, леса и другие экосистемы висят на волоске и могут превратиться в пахотные земли, пастбища и плантации.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:4387;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:18:\"Заголовок\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:720:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">Мы &#8212; студия в Берлине с международной практикой в ​​области архитектуры, городского планирования и дизайна интерьеров. Мы верим в обмен знаниями и продвижение диалога для увеличения творческого потенциала сотрудничества.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Текст заголовка\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:815:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">Мы - студия в Берлине с международной практикой в ​​области архитектуры, городского планирования и дизайна интерьеров. Мы верим в обмен знаниями и продвижение диалога для увеличения творческого потенциала сотрудничества.</h2>\n<!-- /wp:heading -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:4391;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:12:\"Цитата\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:788:\"\n<hr class=\"wp-block-separator is-style-default\" />\n\n\n\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"Боковой профиль женщины в коричневой водолазке и белой сумке. Она смотрит с закрытыми глазами.\" width=\"150\" height=\"150\" /></figure></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>«Участие заставляет меня чувствовать, что я полезен планете».</p><cite>&#8212; Анна Вонг,<em>Волонтер</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1139:\"<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"Боковой профиль женщины в коричневой водолазке и белой сумке. Она смотрит с закрытыми глазами.\" width=\"150\" height=\"150\" /></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>«Участие заставляет меня чувствовать, что я полезен планете».</p><cite>- Анна Вонг,<em>Волонтер</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:4394;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:56:\"Две колонки текста и заголовка\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2182:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>Путешествие началось и началось счастливо с мягкого голубого неба и спокойного моря.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-41\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">Они последовали за ней на палубу. Весь дым и дома исчезли, и корабль оказался в открытом море, очень свежем и чистом, хотя и бледном в раннем свете. Они оставили Лондон сидеть в грязи. На горизонте сужалась очень тонкая линия тени, едва достаточная для того, чтобы выдержать бремя Парижа, которое, тем не менее, лежало на нем. Они были свободны от дорог, от человечества, и все они были взволнованы своей свободой.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">Корабль неуклонно продвигался сквозь небольшие волны, которые ударили по ней, а затем шипели, как бурлящая вода, оставляя с обеих сторон небольшую границу из пузырьков и пены. Бесцветное октябрьское небо над головой было тонко затянуто облаками, словно шлейфом от костра, а воздух был чудесно соленым и живым. На самом деле было слишком холодно, чтобы стоять на месте. Миссис Эмброуз взяла мужа за руку, и когда они двинулись прочь, по тому, как ее щека повернулась к его щеке, было видно, что у нее есть что сказать личное.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:94:\"Два столбца текста с длинным заголовком перед ними.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2476:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>Путешествие началось и началось счастливо с мягкого голубого неба и спокойного моря.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">Они последовали за ней на палубу. Весь дым и дома исчезли, и корабль оказался в открытом море, очень свежем и чистом, хотя и бледном в раннем свете. Они оставили Лондон сидеть в грязи. На горизонте сужалась очень тонкая линия тени, едва достаточная для того, чтобы выдержать бремя Парижа, которое, тем не менее, лежало на нем. Они были свободны от дорог, от человечества, и все они были взволнованы своей свободой.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">Корабль неуклонно продвигался сквозь небольшие волны, которые ударили по ней, а затем шипели, как бурлящая вода, оставляя с обеих сторон небольшую границу из пузырьков и пены. Бесцветное октябрьское небо над головой было тонко затянуто облаками, словно шлейфом от костра, а воздух был чудесно соленым и живым. На самом деле было слишком холодно, чтобы стоять на месте. Миссис Эмброуз взяла мужа за руку, и когда они двинулись прочь, по тому, как ее щека повернулась к его щеке, было видно, что у нее есть что сказать личное.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:4395;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Два изображения в ряд\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:797:\"\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped wp-block-gallery-42 is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"Вид с воздуха на волны, разбивающиеся о берег.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"Аэрофотоснимок поля. Дорога проходит через правый верхний угол.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:101:\"Галерея изображений с двумя изображениями для примера.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:818:\"<!-- wp:gallery {\"ids\":[null,null],\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"Вид с воздуха на волны, разбивающиеся о берег.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"Аэрофотоснимок поля. Дорога проходит через правый верхний угол.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n<!-- /wp:gallery -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:229092;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Header inside full-width background image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1434:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:680px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-columns is-not-stacked-on-mobile is-layout-flex wp-container-48\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\"></div>\n</div>\n\n\n\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:100:\"Simple header with logo, site title, navigation and a full-width background image with dark overlay.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2028:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\",\"dimRatio\":50,\"overlayColor\":\"black\",\"minHeight\":680,\"contentPosition\":\"center center\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:680px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-cco-the-after-rain.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=e7b4ca0a0edcc84ba48c1f7ebf02dd5a\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:columns {\"isStackedOnMobile\":false} -->\n<div class=\"wp-block-columns is-not-stacked-on-mobile\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:229097;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Simple header with dark background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:801:\"\n<div class=\"wp-elements-89b1d0b7c3b99256e438e69463efaa91 wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-52\" style=\"padding-top:1em;padding-bottom:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"wp-elements-d3cc6515209f0de8407b215e27b6ee7c wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:76:\"Simple header with logo, site title, navigation links and a dark background.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1008:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"1em\",\"top\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:1em;padding-bottom:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|background\"}}}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:229101;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Text-only header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:594:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-56\" style=\"padding-top:2em;padding-bottom:2em\">\n<div class=\"wp-block-group is-layout-flex\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:53:\"Header with site title, tagline and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:779:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:2em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:229105;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Simple header with tagline\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:839:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-61\" style=\"padding-top:2em;padding-bottom:4em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n\n<div class=\"wp-block-group is-layout-flow wp-container-58\"><h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p style=\"margin-top:0px;\" class=\"wp-block-site-tagline has-small-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n</div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:92:\"Header with site logo, title and tagline on the left and with navigation links on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:944:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"style\":{\"spacing\":{\"margin\":{\"top\":\"0px\"}}},\"fontSize\":\"small\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:229111;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:26:\"Site title and menu button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:468:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-65\" style=\"padding-top:2em;padding-bottom:4em\">\n<div class=\"wp-block-group is-layout-flex\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Header with site title and a hamburger menu button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:753:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"4em\",\"top\":\"2em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"overlayMenu\":\"always\",\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:229116;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:22:\"Header with hero image\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1357:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-69\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-large-font-size\"></p>\n</div></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Header on a white background followed by a full-width hero image.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1962:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0em\",\"top\":\"1em\",\"right\":\"1em\",\"left\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:1em;padding-right:1em;padding-bottom:0em;padding-left:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&h=1200&fit=clip&crop=default&dpr=1&q=75&vib=3&con=3&usm=15&cs=srgb&bg=F4F4F3&ixlib=js-2.2.1&s=f60b088dac6c7cc04eeebf67f600e079\",\"id\":null,\"dimRatio\":0,\"minHeight\":490,\"minHeightUnit\":\"px\",\"isDark\":false,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull is-light\" style=\"min-height:490px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://img.rawpixel.com/s3fs-private/rawpixel_images/website_content/a017-eberhard-19-fog-lifts-up-after-raind.jpg?w=1200&amp;h=1200&amp;fit=clip&amp;crop=default&amp;dpr=1&amp;q=75&amp;vib=3&amp;con=3&amp;usm=15&amp;cs=srgb&amp;bg=F4F4F3&amp;ixlib=js-2.2.1&amp;s=f60b088dac6c7cc04eeebf67f600e079\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:paragraph {\"align\":\"center\",\"placeholder\":\"Write title…\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\"></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:229084;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:27:\"Header with large font size\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:404:\"\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-nowrap is-layout-flex wp-container-72\" style=\"padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:80:\"Header with a large site title and navigation links in the same large font size.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:612:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"right\":\"30px\",\"bottom\":\"30px\",\"left\":\"30px\"}}},\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"},\"style\":{\"spacing\":{\"blockGap\":\"30px\"}},\"fontSize\":\"large\"} /--></div>\n<!-- /wp:group -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:229088;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Simple header\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:623:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignfull is-content-justification-space-between is-layout-flex wp-container-75\" style=\"padding-top:1em;padding-bottom:1em\">\n<div class=\"wp-block-group is-layout-flex\"><div class=\"wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:51:\"Simple header with logo, site title and navigation.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:721:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"1em\",\"top\":\"1em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:1em;padding-bottom:1em\"><!-- wp:group {\"layout\":{\"type\":\"flex\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-logo {\"width\":60} /-->\n\n<!-- wp:site-title {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:229080;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:25:\"Centered header with logo\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:498:\"\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:2em;padding-bottom:4em\"><div class=\"is-default-size aligncenter wp-block-site-logo\"><span class=\"custom-logo-link\"><img decoding=\"async\" src=\"https://s.w.org/images/wmark.png\" class=\"custom-logo\" alt=\"Логотип сайта\"></span></div>\n\n<h1 class=\"has-text-align-center wp-block-site-title has-large-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Center aligned header with logo, site title and navigation links.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"header\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:397:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"bottom\":\"4em\"}}}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:2em;padding-bottom:4em\"><!-- wp:site-logo {\"align\":\"center\"} /-->\n\n<!-- wp:site-title {\"textAlign\":\"center\",\"fontSize\":\"large\"} /-->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} /--></div>\n<!-- /wp:group -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:229123;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:15:\"Centered footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:288:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:65:\"Centered footer with the sentence \"Proudly powered by WordPress\".\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:531:\"<!-- wp:group {\"align\":\"full\"} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:229127;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Footer with search, site title, and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2016:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-85\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\">\n<div class=\"wp-block-group alignwide is-layout-flow\"><form role=\"search\" method=\"get\" action=\"https://wordpress.org/patterns/\" class=\"wp-block-search__button-outside wp-block-search__icon-button wp-block-search\"><label for=\"wp-block-search__input-81\" class=\"wp-block-search__label screen-reader-text\">Search</label><div class=\"wp-block-search__inside-wrapper \" style=\"width: 100%\"><input type=\"search\" id=\"wp-block-search__input-81\" class=\"wp-block-search__input wp-block-search__input\" name=\"s\" value=\"\" placeholder=\"\" style=\"border-width: 1px\" required /><button type=\"submit\" class=\"wp-block-search__button has-icon wp-element-button\" style=\"border-width: 1px\" aria-label=\"Search\"><svg class=\"search-icon\" viewBox=\"0 0 24 24\" width=\"24\" height=\"24\">\n <path d=\"M13.5 6C10.5 6 8 8.5 8 11.5c0 1.1.3 2.1.9 3l-3.4 3 1 1.1 3.4-2.9c1 .9 2.2 1.4 3.6 1.4 3 0 5.5-2.5 5.5-5.5C19 8.5 16.5 6 13.5 6zm0 9.5c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z\"></path>\n </svg></button></div></form></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:100%\"></div>\n</div>\n\n\n\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-bottom is-layout-flex wp-container-88\">\n<div class=\"wp-block-column is-vertically-aligned-bottom is-layout-flow\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1></div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-bottom is-layout-flow\">\n<p class=\"has-text-align-right has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:88:\"Footer with search field and site title on the left, and small credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1727:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:group {\"align\":\"wide\"} -->\n<div class=\"wp-block-group alignwide\"><!-- wp:search {\"label\":\"Search\",\"showLabel\":false,\"width\":100,\"widthUnit\":\"%\",\"buttonText\":\"Search\",\"buttonUseIcon\":true,\"style\":{\"border\":{\"width\":\"1px\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"bottom\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-bottom\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:paragraph {\"align\":\"right\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-right has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:229131;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with site title and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:518:\"\n<div class=\"wp-block-group alignfull is-layout-flow\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-90\" style=\"padding-top:4em;padding-bottom:2em\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with site title on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:692:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:229135;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with navigation and credit line\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:330:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-93\" style=\"padding-top:4em;padding-bottom:2em\">\n\n\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with navigation on the left and credit line on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:719:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\",\"verticalAlignment\":\"bottom\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"left\"},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:229139;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:46:\"Footer with background color and three columns\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1252:\"\n<div class=\"wp-elements-61b879d84aac944553e1bd4d3909d18a wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-98\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p><strong>Social Media</strong></p>\n\n\n\n<p><a href=\"#\">Facebook</a><br><a href=\"#\">Instagram</a><br><a href=\"#\">Twitter</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p><strong>Where We Are</strong></p>\n\n\n\n<p>2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-text-align-left\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:57:\"Text-only footer with background color and three columns.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1728:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"backgroundColor\":\"black\",\"textColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group alignfull has-white-color has-black-background-color has-text-color has-background has-link-color\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Social Media</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"#\">Facebook</a><br><a href=\"#\">Instagram</a><br><a href=\"#\">Twitter</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\n<p><strong>Where We Are</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2020 Lomita Blvd, <br>Torrance, CA 90101<br>United States</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"align\":\"left\"} -->\n<p class=\"has-text-align-left\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:229143;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:33:\"Centered footer with social links\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:4343:\"\n<div class=\"wp-block-group alignfull is-layout-flow\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-group is-vertical is-layout-flex wp-container-101\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline has-medium-font-size\">Beautifully designed patterns ready to go with a simple copy/paste</p></div>\n\n\n\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<ul class=\"wp-block-social-links is-style-logos-only is-content-justification-center is-layout-flex wp-container-102\"><li class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://#\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li></ul>\n\n\n\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:71:\"Footer with centered site title, tagline, social links and credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1393:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:group {\"style\":{\"spacing\":{\"blockGap\":\"var:preset|spacing|30\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\",\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:social-links {\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links is-style-logos-only\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:spacer {\"height\":\"8px\"} -->\n<div style=\"height:8px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\";}i:29;O:8:\"stdClass\":7:{s:2:\"id\";i:229147;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Footer with credit line and navigation\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:332:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\">\n<div class=\"wp-block-group alignwide is-content-justification-space-between is-layout-flex wp-container-105\" style=\"padding-top:4em;padding-bottom:2em\">\n<p class=\"has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n\n\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:64:\"Footer with credit line on the left and navigation on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:708:\"<!-- wp:group {\"align\":\"full\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\"><!-- wp:group {\"align\":\"wide\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"2em\",\"top\":\"4em\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"space-between\"}} -->\n<div class=\"wp-block-group alignwide\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:paragraph {\"fontSize\":\"medium\"} -->\n<p class=\"has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:navigation {\"ref\":80,\"layout\":{\"type\":\"flex\",\"setCascadingProperties\":true,\"justifyContent\":\"right\"},\"fontSize\":\"medium\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\";}i:30;O:8:\"stdClass\":7:{s:2:\"id\";i:229151;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:19:\"Left-aligned footer\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:455:\"\n<div class=\"wp-block-group alignfull is-layout-constrained\" style=\"padding-top:4em;padding-bottom:2em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-109\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:80%\">\n<p class=\"has-text-align-left has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:20%\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:44:\"Left-aligned footer with just a credit line.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:6:\"footer\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:741:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"4em\",\"bottom\":\"2em\"}}},\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group alignfull\" style=\"padding-top:4em;padding-bottom:2em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"80%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:80%\"><!-- wp:paragraph {\"align\":\"left\",\"fontSize\":\"medium\"} -->\n<p class=\"has-text-align-left has-medium-font-size\">Proudly powered by <a href=\"https://wordpress.org\">WordPress</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"20%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:20%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:31;O:8:\"stdClass\":7:{s:2:\"id\";i:201;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Three columns with offset images\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1205:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-114\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\">\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:45%\">\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n\n\n\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:33:\"Three columns with offset images.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"gallery\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1753:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-01.jpg\" alt=\"Close-up, abstract view of geometric architecture.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"><!-- wp:spacer {\"height\":500} -->\n<div style=\"height:500px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:spacer {\"height\":150} -->\n<div style=\"height:150px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/architecture-02.jpg\" alt=\"Close-up, angled view of a window on a white building.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"45%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:45%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-large is-style-default\"><img src=\"https://s.w.org/images/core/5.8/architecture-03.jpg\" alt=\"Close-up of the corner of a white, geometric building with both sharp points and round corners.\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:spacer {\"height\":285} -->\n<div style=\"height:285px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:32;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:953:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-118\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:33;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2843:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-120\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-124\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-127\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:34;O:8:\"stdClass\":7:{s:2:\"id\";i:197;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:39:\"Two columns of text with offset heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1991:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f2f0e9\">\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-131\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-135\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n</div>\n</div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:43:\"Two columns of text with an offset heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:2837:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f2f0e9\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f2f0e9\"><!-- wp:spacer {\"height\":70} -->\n<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"30px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:30px;line-height:1.1\"><strong>Oceanic Inspiration</strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Winding veils round their heads, the women walked on deck. They were now moving steadily down the river, passing the dark shapes of ships at anchor, and London was a swarm of lights with a pale yellow canopy drooping above it. There were the lights of the great theatres, the lights of the long streets, lights that indicated huge squares of domestic comfort, lights that hung high in air.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">No darkness would ever settle upon those lamps, as no darkness had settled upon them for hundreds of years. It seemed dreadful that the town should blaze for ever in the same spot; dreadful at least to people going away to adventure upon the sea, and beholding it as a circumscribed mound, eternally burnt, eternally scarred. From the deck of the ship the great city appeared a crouched and cowardly figure, a sedentary miser.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":40} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:35;O:8:\"stdClass\":7:{s:2:\"id\";i:196;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:41:\"Media and text in a full height container\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1243:\"\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"has-text-color wp-block-heading\" style=\"color:#000000;font-size:32px\"><strong>What&#8217;s the problem?</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link\">Learn more</a></div>\n</div>\n</div></div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Media and text block with image to the left and text and button to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1864:\"<!-- wp:cover {\"customOverlayColor\":\"#ffffff\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim\" style=\"background-color:#ffffff;min-height:100vh\"><div class=\"wp-block-cover__inner-container\"><!-- wp:media-text {\"mediaLink\":\"https:\\/\\/s.w.org\\/images\\/core\\/5.8\\/soil.jpg\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"imageFill\":true} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center is-image-fill\" style=\"grid-template-columns:56% auto\"><figure class=\"wp-block-media-text__media\" style=\"background-image:url(https://s.w.org/images/core/5.8/soil.jpg);background-position:50% 50%\"><img src=\"https://s.w.org/images/core/5.8/soil.jpg\" alt=\"Close-up of dried, cracked earth.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"32px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"has-text-color\" style=\"color:#000000;font-size:32px\"><strong>What\'s the problem?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"17px\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:17px\">Trees are more important today than ever before. More than 10,000 products are reportedly made from trees. Through chemistry, the humble woodpile is yielding chemicals, plastics and fabrics that were beyond comprehension when an axe first felled a Texas tree.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link\">Learn more</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div></div>\n<!-- /wp:media-text --></div></div>\n<!-- /wp:cover -->\";}i:36;O:8:\"stdClass\":7:{s:2:\"id\";i:195;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:38:\"Media and text with image on the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:719:\"\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure><div class=\"wp-block-media-text__content\">\n<h2 class=\"has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n\n\n\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n</div></div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the right and text to the left.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1138:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaLink\":\"#\",\"mediaType\":\"image\",\"mediaWidth\":56,\"verticalAlignment\":\"center\",\"className\":\"is-style-default\"} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center is-style-default\" style=\"grid-template-columns:auto 56%\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/art-02.jpg\" alt=\"A green and brown rural landscape leading into a bright blue ocean and slightly cloudy sky, done in oil paints.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h2 class=\"has-text-color\" style=\"color:#000000\"><strong>Shore with Blue Sea</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"17px\"},\"color\":{\"text\":\"#636363\"}}} -->\n<p class=\"has-text-color\" style=\"color:#636363;font-size:17px;line-height:1.1\">Eleanor Harris&nbsp;(American, 1901-1942)</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:37;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"has-text-align-center has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:827:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:38;O:8:\"stdClass\":7:{s:2:\"id\";i:186;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with text and a button\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1149:\"\n<div class=\"wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-white-color has-text-color wp-block-heading\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-141\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:60%\">\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" style=\"background-color:#000000;color:#ffffff\">Visit</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:62:\"Large header with background image and text and button on top.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1871:\"<!-- wp:cover {\"url\":\"https:\\/\\/s.w.org\\/images\\/core\\/5.8\\/art-01.jpg\",\"hasParallax\":true,\"dimRatio\":40,\"customOverlayColor\":\"#000000\",\"minHeight\":100,\"minHeightUnit\":\"vh\",\"contentPosition\":\"center center\",\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-40 has-background-dim has-parallax\" style=\"background-image:url(https://s.w.org/images/core/5.8/art-01.jpg);background-color:#000000;min-height:100vh\"><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.2\"}},\"className\":\"alignwide has-white-color has-text-color\"} -->\n<h2 class=\"alignwide has-white-color has-text-color\" style=\"font-size:48px;line-height:1.2\"><strong><em>Overseas:</em></strong><br><strong><em>1500 — 1960</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"60%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:60%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffffff\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffffff\">An exhibition about the different representations of the ocean throughout time, between the sixteenth and the twentieth century. Taking place in our Open Room in <em>Floor 2</em>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"borderRadius\":0,\"style\":{\"color\":{\"text\":\"#ffffff\",\"background\":\"#000000\"}},\"className\":\"is-style-outline\"} -->\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" style=\"background-color:#000000;color:#ffffff\">Visit</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:39;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1115:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-text-color wp-block-heading\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-144\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1610:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":330} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:40;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}i:41;O:8:\"stdClass\":7:{s:2:\"id\";i:27;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Quote\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:671:\"\n<hr class=\"wp-block-separator is-style-default\" />\n\n\n\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure></div>\n\n\n\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>&#171;Contributing makes me feel like I&#8217;m being useful to the planet.&#187;</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator is-style-default\" />\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:1:{i:0;s:10:\"core/quote\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1012:\"<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\n\n<!-- wp:image {\"align\":\"center\",\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} -->\n<div class=\"wp-block-image is-style-rounded\"><figure class=\"aligncenter size-large is-resized\"><img src=\"https://s.w.org/images/core/5.8/portrait.jpg\" alt=\"A side profile of a woman in a russet-colored turtleneck and white bag. She looks up with her eyes closed.\" width=\"150\" height=\"150\" /></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} -->\n<blockquote class=\"wp-block-quote has-text-align-center is-style-large\"><p>\"Contributing makes me feel like I\'m being useful to the planet.\"</p><cite>— Anna Wong, <em>Volunteer</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:separator {\"className\":\"is-style-default\"} -->\n<hr class=\"wp-block-separator is-style-default\" />\n<!-- /wp:separator -->\";}i:42;O:8:\"stdClass\":7:{s:2:\"id\";i:29;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:29:\"Two columns of text and title\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1424:\"\n<h2 class=\"wp-block-heading\" style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-147\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband&#8217;s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:47:\"Two columns of text preceded by a long heading.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1711:\"<!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":38,\"lineHeight\":\"1.4\"}}} -->\n<h2 style=\"font-size:38px;line-height:1.4\"><strong>The voyage had begun, and had begun happily with a soft blue sky, and a calm sea.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">They followed her on to the deck. All the smoke and the houses had disappeared, and the ship was out in a wide space of sea very fresh and clear though pale in the early light. They had left London sitting on its mud. A very thin line of shadow tapered on the horizon, scarcely thick enough to stand the burden of Paris, which nevertheless rested upon it. They were free of roads, free of mankind, and the same exhilaration at their freedom ran through them all.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":18}}} -->\n<p style=\"font-size:18px\">The ship was making her way steadily through small waves which slapped her and then fizzled like effervescing water, leaving a little border of bubbles and foam on either side. The colourless October sky above was thinly clouded as if by the trail of wood-fire smoke, and the air was wonderfully salt and brisk. Indeed it was too cold to stand still. Mrs. Ambrose drew her arm within her husband\'s, and as they moved off it could be seen from the way in which her sloping cheek turned up to his that she had something private to communicate.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:43;O:8:\"stdClass\":7:{s:2:\"id\";i:19;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:23:\"Two images side by side\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:717:\"\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped wp-block-gallery-148 is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:41:\"An image gallery with two example images.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:1:{i:0;s:7:\"gallery\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:737:\"<!-- wp:gallery {\"ids\":[null,null],\"linkTo\":\"none\",\"align\":\"wide\"} -->\n<figure class=\"wp-block-gallery alignwide columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" alt=\"An aerial view of waves crashing against a shore.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-01.jpg\" data-link=\"#\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" alt=\"An aerial view of a field. A road runs through the upper right corner.\" data-full-url=\"https://s.w.org/images/core/5.8/nature-above-02.jpg\" data-link=\"#\" /></figure></li></ul></figure>\n<!-- /wp:gallery -->\";}}','no');
  354. INSERT INTO `wp_options` VALUES (397,'_site_transient_timeout_wp_remote_block_patterns_4668fadf5624aac3a200ea488ec67c97','1672243370','no');
  355. INSERT INTO `wp_options` VALUES (398,'_site_transient_wp_remote_block_patterns_4668fadf5624aac3a200ea488ec67c97','a:29:{i:0;O:8:\"stdClass\":7:{s:2:\"id\";i:4327;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:47:\"Простой призыв к действию\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:959:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>СВЯЖИТЕСЬ С НАМИ!</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Запланировать визит</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-1\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Свяжитесь с нами</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:153:\"Контейнер с белым фоном. Внутри находится центрированный абзац, заголовок и кнопка.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1566:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>СВЯЖИТЕСЬ С НАМИ!</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Запланировать визит</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Свяжитесь с нами</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:1;O:8:\"stdClass\":7:{s:2:\"id\";i:4335;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Таблица цен\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3907:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-9\">\n<div class=\"wp-elements-6a25a647a7c98eb5aab274f56671ff32 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Индивидуальный</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Обогатите наше растущее сообщество.</strong></p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>Общие скидки на вход и членство для одного взрослого</li><li>Один бесплатный билет на каждую специальную выставку</li><li>Два одноразовых гостевых пропуска в год</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-3\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 в год</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-5e36b7df07652f4f120d9e0f09d67438 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Cемья</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Поддержите специальные выставки.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>Общий входной билет и скидки для двух взрослых.</li><li>Четыре бесплатных билета на одну специальную выставку.</li><li>Четыре одноразовых гостевых пропуска в год</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-5\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 в год</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-9245c9e1907ad5a2236b03e2d4c28c26 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Спонсор</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Поднимите поддержку до следующего уровня.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>Общий входной билет и скидки для двух взрослых.</li><li>Пять бесплатных билетов на одну специальную выставку.</li><li>Шесть одноразовых гостевых пропусков в год</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-7\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 в год</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:407:\"Три столбца одинаковой ширины настроены как таблица цен. Левый имеет желтый фон, средний имеет светло-фиолетовый фон, правый имеет голубой фон. Каждый столбец содержит заголовок, подзаголовок, разделитель, список и кнопку.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"buttons\";i:1;s:7:\"columns\";i:2;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:5909:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"single\" style=\"font-size:40px\"><strong>Индивидуальный</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Обогатите наше растущее сообщество.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>Общие скидки на вход и членство для одного взрослого</li><li>Один бесплатный билет на каждую специальную выставку</li><li>Два одноразовых гостевых пропуска в год</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 в год</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"family\" style=\"font-size:40px\"><strong>Cемья</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Поддержите специальные выставки.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>Общий входной билет и скидки для двух взрослых.</li><li>Четыре бесплатных билета на одну специальную выставку.</li><li>Четыре одноразовых гостевых пропуска в год</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 в год</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"patron\" style=\"font-size:40px\"><strong>Спонсор</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Поднимите поддержку до следующего уровня.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>Общий входной билет и скидки для двух взрослых.</li><li>Пять бесплатных билетов на одну специальную выставку.</li><li>Шесть одноразовых гостевых пропусков в год</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 в год</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:2;O:8:\"stdClass\":7:{s:2:\"id\";i:4336;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:52:\"Изображение и цитата на фоне\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2320:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Даже в самых горьких фруктах есть сладость.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">&#8212; Терри О&#8217;Нил</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Наилучшие плоды приносят медленнорастущие деревья.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">&#8212; Мольер</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:347:\"Два медиа и текстовых блока. Верхний имеет бледно-зеленый фон. Текст находится слева и содержит цитату, а изображение - справа. В следующем блоке внизу есть изображение слева и цитата справа.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2491:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Даже в самых горьких фруктах есть сладость.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">- Терри О\'Нил</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Наилучшие плоды приносят медленнорастущие деревья.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">- Мольер</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:3;O:8:\"stdClass\":7:{s:2:\"id\";i:4346;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:14:\"Событие\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1679:\"\n<div class=\"wp-elements-457d0ba6e9ba012ae2bef1f2c7827804 wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-elements-fbe4203145a627e71d395bef688cafc9 wp-block-group has-link-color is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Вечеринка <br>Открытия</h2>\n\n\n\n<p class=\"wp-elements-0860918d5b16b9e1778b1966b333b980 has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"header\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1614:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 style=\"font-size:48px;font-weight:700;line-height:1.15\">Вечеринка <br>Открытия</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:4;O:8:\"stdClass\":7:{s:2:\"id\";i:4349;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:49:\"Анонс и детали мероприятия\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1697:\"\n<div class=\"wp-elements-361d585a1c26ce6d417edcead0f0920c wp-block-group alignfull has-black-color has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d2cdc7\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">ЭЛЕН ДЮМА<br><em>ФРАГМЕНТЫ</em></h2>\n\n\n\n<h3 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 &#8212; 9/9/2021<br>ЮЖНАЯ ЛОНДОНСКАЯ ХУДОЖЕСТВЕННАЯ ГАЛЕРЕЯ</h3>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-15\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:75%\">\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-18\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:25px\">ПОДРОБНЕЕ НА: WP.ORG · +44 21 1234 5678</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">БИЛЕТЫ</a></p>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2699:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#d2cdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|black\"}}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-group alignfull has-black-color has-text-color has-background has-link-color\" style=\"background-color:#d2cdc7\"><!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h2 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">ЭЛЕН ДЮМА<br><em>ФРАГМЕНТЫ</em></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h3 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 - 9/9/2021<br>ЮЖНАЯ ЛОНДОНСКАЯ ХУДОЖЕСТВЕННАЯ ГАЛЕРЕЯ</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"75%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75%\"><!-- wp:image {\"id\":3173,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p style=\"font-size:25px\">ПОДРОБНЕЕ НА: WP.ORG · +44 21 1234 5678</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">БИЛЕТЫ</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:5;O:8:\"stdClass\":7:{s:2:\"id\";i:4353;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:77:\"Изображение на сплошном цвете с описанием\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1811:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-24\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-22\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Самолет</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Медная проволока, деревянная основа. Я создал это произведение в конце 2008 года. В этой работе я стремился передать как промышленную тяжесть самолета, так и то, что вы чувствуете себя как на облаке, находясь в нем.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:78:\"Изображение на сплошном цвете с описанием.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2009:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Самолет</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Медная проволока, деревянная основа. Я создал это произведение в конце 2008 года. В этой работе я стремился передать как промышленную тяжесть самолета, так и то, что вы чувствуете себя как на облаке, находясь в нем.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:6;O:8:\"stdClass\":7:{s:2:\"id\";i:4360;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:66:\"Смещенные изображения с описаниями.\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1806:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-27\">\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<p style=\"font-size:14px\"><strong>Белые ирисы</strong><br>Огава Кадзумаса</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p style=\"font-size:14px\"><strong>Цветение вишни</strong><br>Огава Кадзумаса</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Смещенные изображения с описаниями.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1227:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Белые ирисы</strong><br>Огава Кадзумаса</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Цветение вишни</strong><br>Огава Кадзумаса</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:7;O:8:\"stdClass\":7:{s:2:\"id\";i:4361;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:71:\"Изображение с описанием внизу и справа\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1474:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-32\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Иллюстрация Купидона. Винтаж.\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-35\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Полет Купидона</strong><br>Жикле, 48 x 48 дюймов, архивная бумага.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:72:\"Изображение с описанием внизу и справа.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1300:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Иллюстрация Купидона. Винтаж.\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Полет Купидона</strong><br>Жикле, 48 x 48 дюймов, архивная бумага.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:8;O:8:\"stdClass\":7:{s:2:\"id\";i:4368;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Подробности мероприятия\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1602:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Изображение женщины, которую лебеди несут по воздуху.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-40\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Место:</strong><br>ул. Лизюкова 1, Воронеж</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Время:</strong><br>24 октября 2021 г.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Приобрести билеты</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Подробности мероприятия.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1717:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Изображение женщины, которую лебеди несут по воздуху.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Место:</strong><br>ул. Лизюкова 1, Воронеж</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Время:</strong><br>24 октября 2021 г.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Приобрести билеты</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:9;O:8:\"stdClass\":7:{s:2:\"id\";i:4378;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Три колонки текста\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1192:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-44\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Виртуальный тур ↗</a></strong></h3>\n\n\n\n<p>Примите участие в виртуальной экскурсии по музею. Идеально подходит для школ и мероприятий.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Текущие шоу ↗</a></strong></h3>\n\n\n\n<p>Будьте в курсе и смотрите наши текущие выставки здесь.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Полезная информация ↗</a></strong></h3>\n\n\n\n<p>Узнайте о времени работы, ценах на билеты и скидках.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:35:\"Три колонки текста.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1736:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Виртуальный тур ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Примите участие в виртуальной экскурсии по музею. Идеально подходит для школ и мероприятий.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Текущие шоу ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Будьте в курсе и смотрите наши текущие выставки здесь.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Полезная информация ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Узнайте о времени работы, ценах на билеты и скидках.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:10;O:8:\"stdClass\":7:{s:2:\"id\";i:4379;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:69:\"Три колонки с изображениями и текстом\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3609:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-46\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ЭКОСИСТЕМА</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Положительный рост.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-50\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Природа</em> в обычном смысле слова относится к сущностям, неизменным человеком; космос, воздух, река, лист. <em>Искусство</em> применяется к смеси его воли с теми же вещами, как в доме, канале, статуе, картине. Но его операции, взятые вместе, настолько незначительны, это небольшое измельчение, выпечка, заплатка и стирка, что в таком грандиозном впечатлении, как мир, в человеческом сознании, они не меняют результата.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"Солнце садится сквозь густой лес деревьев.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Ветровые турбины, стоящие на травянистой равнине, против голубого неба.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-53\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"Солнце светит над гребнем, спускающимся к берегу. Вдалеке по дороге едет машина.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Несомненно, у нас нет вопросов, на которые невозможно ответить. Мы должны доверять совершенству творения настолько, чтобы верить в то, что какое бы любопытство ни пробудил в наших умах порядок вещей, порядок вещей может удовлетворить. Состояние каждого человека &#8212; это иероглифическое решение тех вопросов, которые он задавал.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:142:\"Три столбца с изображениями и текстом с интервалом по вертикали для смещения.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:4759:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ЭКОСИСТЕМА</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Положительный рост.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Природа</em> в обычном смысле слова относится к сущностям, неизменным человеком; космос, воздух, река, лист. <em>Искусство</em> применяется к смеси его воли с теми же вещами, как в доме, канале, статуе, картине. Но его операции, взятые вместе, настолько незначительны, это небольшое измельчение, выпечка, заплатка и стирка, что в таком грандиозном впечатлении, как мир, в человеческом сознании, они не меняют результата.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"Солнце садится сквозь густой лес деревьев.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Ветровые турбины, стоящие на травянистой равнине, против голубого неба.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"Солнце светит над гребнем, спускающимся к берегу. Вдалеке по дороге едет машина.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Несомненно, у нас нет вопросов, на которые невозможно ответить. Мы должны доверять совершенству творения настолько, чтобы верить в то, что какое бы любопытство ни пробудил в наших умах порядок вещей, порядок вещей может удовлетворить. Состояние каждого человека - это иероглифическое решение тех вопросов, которые он задавал.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:11;O:8:\"stdClass\":7:{s:2:\"id\";i:4383;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:63:\"Медиа и текст с изображением слева\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:678:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Крупный план, абстрактный вид архитектуры.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"has-text-align-center has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Открытые пространства</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">Посмотрите тематическое исследование ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:112:\"Медиа и текстовый блок с изображением слева и текстом справа.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:951:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Крупный план, абстрактный вид архитектуры.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Открытые пространства</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">Посмотрите тематическое исследование ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:12;O:8:\"stdClass\":7:{s:2:\"id\";i:4385;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:103:\"Большой заголовок с выравниванием текста по левому краю\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1370:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-text-color wp-block-heading\" style=\"color:#ffe074;font-size:64px\">Лес</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-57\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Даже ребенок знает, насколько ценен лес. Свежий, захватывающий дух запах деревьев. Эхо птиц, летящих над этим плотным массивом. Стабильный климат, устойчивая разнообразная жизнь и источник культуры. Тем не менее, леса и другие экосистемы висят на волоске и могут превратиться в пахотные земли, пастбища и плантации.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:73:\"Изображение на обложке с цитатой сверху\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1866:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Лес</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":330} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Даже ребенок знает, насколько ценен лес. Свежий, захватывающий дух запах деревьев. Эхо птиц, летящих над этим плотным массивом. Стабильный климат, устойчивая разнообразная жизнь и источник культуры. Тем не менее, леса и другие экосистемы висят на волоске и могут превратиться в пахотные земли, пастбища и плантации.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:13;O:8:\"stdClass\":7:{s:2:\"id\";i:4387;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:18:\"Заголовок\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:720:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">Мы &#8212; студия в Берлине с международной практикой в ​​области архитектуры, городского планирования и дизайна интерьеров. Мы верим в обмен знаниями и продвижение диалога для увеличения творческого потенциала сотрудничества.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Текст заголовка\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"ru_RU\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:815:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">Мы - студия в Берлине с международной практикой в ​​области архитектуры, городского планирования и дизайна интерьеров. Мы верим в обмен знаниями и продвижение диалога для увеличения творческого потенциала сотрудничества.</h2>\n<!-- /wp:heading -->\";}i:14;O:8:\"stdClass\":7:{s:2:\"id\";i:207567;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:11:\"Link in Bio\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:6361:\"\n<div class=\"wp-block-group has-white-background-color has-background is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><h1 style=\"font-style:normal;font-weight:700;\" class=\"has-text-align-center wp-block-site-title has-medium-font-size\"><a href=\"https://wordpress.org/patterns\" target=\"_self\" rel=\"home\">Block Pattern Directory</a></h1>\n\n<p class=\"has-text-align-center wp-block-site-tagline\">Beautifully designed patterns ready to go with a simple copy/paste</p>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-58\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n\n\n\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n</div>\n\n\n\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color is-content-justification-center is-layout-flex wp-container-59\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-instagram wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Instagram</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-bandcamp wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M15.27 17.289 3 17.289 8.73 6.711 21 6.711 15.27 17.289\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Bandcamp</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitter wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitter</span></a></li>\n\n<li style=\"color: #000000; background-color: #ffffff; \" class=\"wp-social-link wp-social-link-twitch wp-block-social-link\"><a href=\"https://wordpress.org/patterns/\" class=\"wp-block-social-link-anchor\"><svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" aria-hidden=\"true\" focusable=\"false\"><path d=\"M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z\"></path></svg><span class=\"wp-block-social-link-label screen-reader-text\">Twitch</span></a></li></ul>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:3:\"6.1\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:9:\"wireframe\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2665:\"<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"var:preset|spacing|80\",\"right\":\"0\",\"bottom\":\"var:preset|spacing|80\",\"left\":\"0\"}}},\"backgroundColor\":\"white\",\"layout\":{\"type\":\"default\"}} -->\n<div class=\"wp-block-group has-white-background-color has-background\" style=\"padding-top:var(--wp--preset--spacing--80);padding-right:0;padding-bottom:var(--wp--preset--spacing--80);padding-left:0\"><!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"700\"}},\"fontSize\":\"medium\"} /-->\n\n<!-- wp:site-tagline {\"textAlign\":\"center\"} /-->\n\n<!-- wp:spacer {\"height\":\"20px\"} -->\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Watch my latest videos</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Buy merch</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link wp-element-button\">Support me on Patreon</a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"width\":100,\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link wp-element-button\">Get tickets for my show</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:social-links {\"iconColor\":\"black\",\"iconColorValue\":\"#000000\",\"iconBackgroundColor\":\"white\",\"iconBackgroundColorValue\":\"#ffffff\",\"size\":\"has-normal-icon-size\",\"style\":{\"spacing\":{\"blockGap\":{\"top\":\"0\",\"left\":\"0\"},\"padding\":{\"top\":\"var:preset|spacing|60\",\"bottom\":\"var:preset|spacing|60\"}}},\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-normal-icon-size has-icon-color has-icon-background-color\" style=\"padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)\"><!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"bandcamp\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://wordpress.org/patterns/\",\"service\":\"twitch\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:group -->\";}i:15;O:8:\"stdClass\":7:{s:2:\"id\";i:732;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Simple call to action\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:900:\"\n<div class=\"wp-block-group alignfull has-text-color has-background is-layout-flow\" style=\"background-color:#ffffff;color:#000000\">\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n\n\n\n<div class=\"wp-block-buttons is-horizontal is-content-justification-center is-layout-flex wp-container-61\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n</div>\n\n\n\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:89:\"A container with a white background. Inside is a centered paragraph, heading, and button.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"buttons\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1506:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-group alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"style\":{\"typography\":{\"lineHeight\":\".9\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-text-align-center has-small-font-size\" style=\"line-height:.9\"><strong>GET IN TOUCH</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontSize\":59,\"lineHeight\":\"1.15\"}}} -->\n<h2 class=\"has-text-align-center\" id=\"schedule-a-visit\" style=\"font-size:59px;line-height:1.15\"><strong>Schedule a Visit</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":50,\"style\":{\"color\":{\"background\":\"#000000\",\"text\":\"#ffffff\"},\"border\":{\"radius\":\"50px\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-50\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"border-radius:50px;background-color:#000000;color:#ffffff\">Contact us</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons -->\n\n<!-- wp:spacer {\"height\":64} -->\n<div style=\"height:64px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:16;O:8:\"stdClass\":7:{s:2:\"id\";i:678;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Pricing table\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:3342:\"\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-69\">\n<div class=\"wp-elements-9b0ec38802488b5326b5833c551a99b8 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-63\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-9add2e813d78c88d00f9bd37bafd7af9 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-65\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 / year</a></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-elements-2500c6475a3fa956c7c9f0264bdaf6c7 wp-block-column has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></ul>\n\n\n\n<div class=\"wp-block-buttons alignfull is-horizontal is-content-justification-center is-layout-flex wp-container-67\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 / year</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:272:\"Three equal-width columns set up as a pricing table. The left column has a yellow background, the middle column has a light purple background, and the right column has a light blue background. Each column contains a heading, subheading, separator, list, and then a button.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"buttons\";i:1;s:7:\"columns\";i:2;s:8:\"featured\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:5340:\"<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"style\":{\"color\":{\"background\":\"#ffe97d\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#ffe97d;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"single\" style=\"font-size:40px\"><strong>Single</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Enrich our growing community.</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"customColor\":\"#000000\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-background is-style-wide\" style=\"background-color:#000000;color:#000000\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for one adult</li><li>One free ticket per special exhibition</li><li>Two single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$110 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#d1d1e1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#d1d1e1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"family\" style=\"font-size:40px\"><strong>Family</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.5\"}},\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\" style=\"line-height:1.5\"><strong>Support special exhibitions.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Four free tickets per special exhibition</li><li>Four single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}},\"className\":\"is-style-fill\"} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$200 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"color\":{\"background\":\"#c0ebf1\",\"text\":\"#000000\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#000000\"}}},\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-column has-text-color has-background has-link-color\" style=\"background-color:#c0ebf1;color:#000000;padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"40px\"}}} -->\n<h2 id=\"patron\" style=\"font-size:40px\"><strong>Patron</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"fontSize\":\"normal\"} -->\n<p class=\"has-normal-font-size\"><strong>Take support to the next level.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\" />\n<!-- /wp:separator -->\n\n<!-- wp:list {\"fontSize\":\"normal\"} -->\n<ul class=\"has-normal-font-size\"><li>General admission and member discounts for two adults</li><li>Five free tickets per special exhibition</li><li>Six single-use guest passes per year</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons {\"align\":\"full\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"orientation\":\"horizontal\"}} -->\n<div class=\"wp-block-buttons alignfull\"><!-- wp:button {\"textColor\":\"white\",\"width\":100,\"style\":{\"color\":{\"background\":\"#000000\"},\"border\":{\"radius\":0}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-white-color has-text-color has-background no-border-radius\" style=\"background-color:#000000\">$400 / year</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:17;O:8:\"stdClass\":7:{s:2:\"id\";i:669;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:31:\"Image and quote on a background\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2221:\"\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-1-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-1-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-1-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-1.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Terry a O&#8217;Neal</p>\n</div>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png 1024w, https://s.w.org/patterns/files/2021/06/pear-half-300x300.png 300w, https://s.w.org/patterns/files/2021/06/pear-half-150x150.png 150w, https://s.w.org/patterns/files/2021/06/pear-half-768x768.png 768w, https://s.w.org/patterns/files/2021/06/pear-half.png 1300w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-block-group is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n\n\n\n<p class=\"has-extra-small-font-size\">– Molière</p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:221:\"Two media and text blocks. The top one has a pale green background. The text is on the left and contains a quote, and the image is on the right. The next block underneath has the image on the left, and quote on the right.\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2404:\"<!-- wp:media-text {\"mediaPosition\":\"right\",\"mediaId\":5263,\"mediaLink\":\"https://wordpress.org/patterns/pattern/image-and-quote-on-a-background/pear-3/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#f1f5c7\"}}} -->\n<div class=\"wp-block-media-text alignwide has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#f1f5c7\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-1-1024x1024.png\" alt=\"\" class=\"wp-image-5263 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>Even the bitterest fruit has sugar in it.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Terry a O\'Neal</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\n\n<!-- wp:media-text {\"mediaId\":673,\"mediaLink\":\"https://wordpress.org/patterns/pear-half/\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\",\"style\":{\"color\":{\"background\":\"#fffdea\"}}} -->\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center has-background\" style=\"background-color:#fffdea\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/pear-half-1024x1024.png\" alt=\"\" class=\"wp-image-673 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.2\",\"fontSize\":\"36px\"}}} -->\n<p style=\"font-size:36px;line-height:1.2\"><strong>The trees that are slow to grow bear the best fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"fontSize\":\"extra-small\"} -->\n<p class=\"has-extra-small-font-size\">– Molière</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:18;O:8:\"stdClass\":7:{s:2:\"id\";i:591;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:5:\"Event\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1657:\"\n<div class=\"wp-elements-edf0023baa22d5c3aadb817ac19c1b79 wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1536x1536.jpg 1536w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1.jpg 1572w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure><div class=\"wp-block-media-text__content\">\n<div class=\"wp-elements-ee61a3653e44280067f52b6b1f02506c wp-block-group has-link-color is-layout-flow\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\">\n<h2 class=\"wp-block-heading\" style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n\n\n\n<p class=\"wp-elements-0860918d5b16b9e1778b1966b333b980 has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"header\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1592:\"<!-- wp:media-text {\"align\":\"full\",\"mediaPosition\":\"right\",\"mediaId\":590,\"mediaLink\":\"https://wordpress.org/patterns/image-from-rawpixel-id-430289-jpeg-1/\",\"mediaType\":\"image\",\"mediaWidth\":60,\"verticalAlignment\":\"top\",\"style\":{\"color\":{\"background\":\"#121c1c\",\"text\":\"#fffdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile is-vertically-aligned-top has-text-color has-background has-link-color\" style=\"background-color:#121c1c;color:#fffdc7;grid-template-columns:auto 60%\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-430289-jpeg-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-590 size-full\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"2em\",\"right\":\"2em\",\"bottom\":\"2em\",\"left\":\"2em\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}}}} -->\n<div class=\"wp-block-group has-link-color\" style=\"padding-top:2em;padding-right:2em;padding-bottom:2em;padding-left:2em\"><!-- wp:heading {\"style\":{\"typography\":{\"fontWeight\":\"700\",\"fontSize\":\"48px\",\"lineHeight\":\"1.15\"}}} -->\n<h2 style=\"font-size:48px;font-weight:700;line-height:1.15\">Opening <br>Party</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#fffdc7\"}}},\"color\":{\"text\":\"#fffdc7\"}}} -->\n<p class=\"has-text-color has-link-color\" style=\"color:#fffdc7\"><strong><a href=\"#\">RSVP →</a></strong></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:media-text -->\";}i:19;O:8:\"stdClass\":7:{s:2:\"id\";i:566;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:30:\"Event announcement and details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1614:\"\n<div class=\"wp-elements-b69341fa8ca2b5011df7156020136c46 wp-block-group alignfull has-black-color has-text-color has-background has-link-color is-layout-flow\" style=\"background-color:#d2cdc7\">\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n\n\n\n<h3 class=\"alignwide wp-block-heading\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-75\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:25%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:75%\">\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-78\">\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n</div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:0:\"\";s:19:\"wpop_viewport_width\";i:800;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:2622:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#d2cdc7\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|black\"}}}},\"textColor\":\"black\"} -->\n<div class=\"wp-block-group alignfull has-black-color has-text-color has-background has-link-color\" style=\"background-color:#d2cdc7\"><!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h2 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">HÉLÈNE DUMAS<br><em>FRAGMENTS</em></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3,\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"46px\",\"lineHeight\":\"1.1\",\"fontWeight\":\"400\"}}} -->\n<h3 class=\"alignwide\" style=\"font-size:46px;font-weight:400;line-height:1.1\">20/4 — 9/9/2021<br>SOUTH LONDON ART GALLERY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"25%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:25%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"75%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:75%\"><!-- wp:image {\"id\":3173,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://mywptesting.site/wp-content/uploads/2021/06/Histoire_naturelle_..._-fragments-_-_Upper_cover_C108eee15-1.jpg\" alt=\"\" class=\"wp-image-3173\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p style=\"font-size:25px\">MORE INFO AT: WP.ORG · +44 21 1234 5678</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"align\":\"right\",\"style\":{\"typography\":{\"fontSize\":\"25px\"}}} -->\n<p class=\"has-text-align-right\" style=\"font-size:25px\">INSTAGRAM · <a href=\"#\">TICKETS</a></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:spacer {\"height\":50} -->\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:group -->\";}i:20;O:8:\"stdClass\":7:{s:2:\"id\";i:573;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Image on solid color with description\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1628:\"\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-84\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:50%\">\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\">\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img decoding=\"async\" loading=\"lazy\" width=\"263\" height=\"300\" src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" srcset=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg 263w, https://s.w.org/patterns/files/2021/06/wire-sculpture-898x1024.jpg 898w, https://s.w.org/patterns/files/2021/06/wire-sculpture-768x875.jpg 768w, https://s.w.org/patterns/files/2021/06/wire-sculpture-1347x1536.jpg 1347w, https://s.w.org/patterns/files/2021/06/wire-sculpture.jpg 1658w\" sizes=\"(max-width: 263px) 100vw, 263px\" /></figure></div>\n</div></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\">\n<div class=\"wp-block-columns is-layout-flex wp-container-82\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:320px\">\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n\n\n\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n</div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:38:\"Image on solid color with description.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:6:\"images\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1826:\"<!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:cover {\"customOverlayColor\":\"#f6f6f6\",\"minHeight\":600} -->\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f6f6f6;min-height:600px\"><div class=\"wp-block-cover__inner-container\"><!-- wp:image {\"align\":\"center\",\"id\":571,\"sizeSlug\":\"medium\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img src=\"https://s.w.org/patterns/files/2021/06/wire-sculpture-263x300.jpg\" alt=\"\" class=\"wp-image-571\" /></figure></div>\n<!-- /wp:image --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"1em\",\"right\":\"1em\",\"bottom\":\"1em\",\"left\":\"1em\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"padding-top:1em;padding-right:1em;padding-bottom:1em;padding-left:1em\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"320px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:320px\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\"><strong>Airplane</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.6\"}},\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\" style=\"line-height:1.6\">Copper wire, wood base. I created this piece in late 2008. For this work, I aimed to convey both the industrial heaviness of an airplane, but also the cloudlike floating quality you feel when you’re in one.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:21;O:8:\"stdClass\":7:{s:2:\"id\";i:526;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:32:\"Offset images with descriptions.\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1754:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-87\">\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"793\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" srcset=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg 793w, https://s.w.org/patterns/files/2021/06/Iris-232x300.jpg 232w, https://s.w.org/patterns/files/2021/06/Iris-768x992.jpg 768w, https://s.w.org/patterns/files/2021/06/Iris-1189x1536.jpg 1189w, https://s.w.org/patterns/files/2021/06/Iris-1586x2048.jpg 1586w, https://s.w.org/patterns/files/2021/06/Iris.jpg 1920w\" sizes=\"(max-width: 793px) 100vw, 793px\" /></figure>\n\n\n\n<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"707\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" srcset=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg 707w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-207x300.jpg 207w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-768x1112.jpg 768w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1061x1536.jpg 1061w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-1414x2048.jpg 1414w, https://s.w.org/patterns/files/2021/06/Cherry-Blossom-scaled.jpg 1768w\" sizes=\"(max-width: 707px) 100vw, 707px\" /></figure>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:32:\"Offset images with descriptions.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:8:\"featured\";i:1;s:7:\"gallery\";i:2;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1175:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":525,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Iris-793x1024.jpg\" alt=\"\" class=\"wp-image-525\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>White Irises</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cherry Blossom</strong><br>Ogawa Kazumasa</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":524,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/Cherry-Blossom-707x1024.jpg\" alt=\"\" class=\"wp-image-524\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:22;O:8:\"stdClass\":7:{s:2:\"id\";i:521;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:45:\"Image with description below and to the right\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1415:\"\n<div class=\"wp-block-columns is-layout-flex wp-container-92\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"1024\" src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" srcset=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg 1024w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-300x300.jpg 300w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-150x150.jpg 150w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-768x768.jpg 768w, https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1.jpg 1510w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:10%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-95\">\n<div class=\"wp-block-column is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n</div>\n</div>\n\n\n\n<p></p>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:46:\"Image with description below and to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"images\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1241:\"<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":522,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/patterns/files/2021/06/image-from-rawpixel-id-539759-jpeg-1-1024x1024.jpg\" alt=\"Vintage Cupid Illustration\" class=\"wp-image-522\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"10%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:10%\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:paragraph {\"style\":{\"typography\":{\"fontSize\":\"14px\"}}} -->\n<p style=\"font-size:14px\"><strong>Cupid in Flight</strong><br>48” x 48” Giclee print on archival paper.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}i:23;O:8:\"stdClass\":7:{s:2:\"id\";i:502;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:13:\"Event details\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1510:\"\n<figure class=\"wp-block-image alignwide size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"2560\" height=\"1227\" src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" srcset=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg 2560w, https://s.w.org/patterns/files/2021/06/Group-17-300x144.jpg 300w, https://s.w.org/patterns/files/2021/06/Group-17-1024x491.jpg 1024w, https://s.w.org/patterns/files/2021/06/Group-17-768x368.jpg 768w, https://s.w.org/patterns/files/2021/06/Group-17-1536x736.jpg 1536w, https://s.w.org/patterns/files/2021/06/Group-17-2048x981.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></figure>\n\n\n\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-layout-flex wp-container-100\">\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\">\n<div class=\"wp-block-buttons is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</a></div>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:14:\"Event details.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:0:{}s:15:\"pattern_content\";s:1624:\"<!-- wp:image {\"align\":\"wide\",\"id\":501,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://s.w.org/patterns/files/2021/06/Group-17-scaled.jpg\" alt=\"Image of a woman being carried through the air by swans.\" class=\"wp-image-501\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Location:</strong><br>82 Main St. Brooklyn, NY</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"2\"}}} -->\n<p style=\"line-height:2\"><strong>Date:</strong><br>October 24, 2021</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"width\":100,\"style\":{\"color\":{\"background\":\"#262626\",\"text\":\"#efefef\"}}} -->\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100\"><a class=\"wp-block-button__link has-text-color has-background\" style=\"background-color:#262626;color:#efefef\">Purchase Tickets</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:24;O:8:\"stdClass\":7:{s:2:\"id\";i:200;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:21:\"Three columns of text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:953:\"\n<div class=\"wp-block-columns alignfull has-text-color has-background is-layout-flex wp-container-104\" style=\"background-color:#ffffff;color:#000000\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n\n\n\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n\n\n\n<p>Stay updated and see our current exhibitions here.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\" style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n\n\n\n<p>Get to know our opening times, ticket prices and discounts.</p>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:22:\"Three columns of text.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:3:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";i:2;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1496:\"<!-- wp:columns {\"align\":\"full\",\"style\":{\"color\":{\"text\":\"#000000\",\"background\":\"#ffffff\"}}} -->\n<div class=\"wp-block-columns alignfull has-text-color has-background\" style=\"background-color:#ffffff;color:#000000\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"http://wordpress.org\">Virtual Tour ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get a virtual tour of the museum. Ideal for schools and events.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Current Shows ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Stay updated and see our current exhibitions here.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"level\":3,\"style\":{\"typography\":{\"fontSize\":\"24px\",\"lineHeight\":\"1.3\"}}} -->\n<h3 style=\"font-size:24px;line-height:1.3\"><strong><a href=\"https://wordpress.org\">Useful Info ↗</a></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get to know our opening times, ticket prices and discounts.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\";}i:25;O:8:\"stdClass\":7:{s:2:\"id\";i:199;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:34:\"Three columns with images and text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:2843:\"\n<div class=\"wp-block-group alignfull has-background is-layout-flow\" style=\"background-color:#f8f4e4\">\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-106\">\n<div class=\"wp-block-column is-layout-flow\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h6 class=\"has-text-color wp-block-heading\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n\n\n\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-110\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.38%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33%\">\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:33.62%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-113\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:67%\">\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-center is-layout-flow\" style=\"flex-basis:33%\">\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man&#8217;s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n</div>\n</div>\n</div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:77:\"Three columns with images and text, with vertical spacing for an offset look.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:7:\"columns\";i:1;s:8:\"featured\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:3990:\"<!-- wp:group {\"align\":\"full\",\"style\":{\"color\":{\"background\":\"#f8f4e4\"}}} -->\n<div class=\"wp-block-group alignfull has-background\" style=\"background-color:#f8f4e4\"><!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":6,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h6 class=\"has-text-color\" id=\"ecosystem\" style=\"color:#000000\">ECOSYSTEM</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"typography\":{\"lineHeight\":\"1.1\",\"fontSize\":\"5vw\"},\"color\":{\"text\":\"#000000\"}}} -->\n<p class=\"has-text-color\" style=\"color:#000000;font-size:5vw;line-height:1.1\"><strong>Positive growth.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":\"5px\"} -->\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"33.38%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.38%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\"><em>Nature</em>, in the common sense, refers to essences unchanged by man; space, the air, the river, the leaf.&nbsp;<em>Art</em>&nbsp;is applied to the mixture of his will with the same things, as in a house, a canal, a statue, a picture. But his operations taken together are so insignificant, a little chipping, baking, patching, and washing, that in an impression so grand as that of the world on the human mind, they do not vary the result.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33%\"><!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-01.jpg\" alt=\"The sun setting through a dense forest.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"33.62%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:33.62%\"><!-- wp:image {\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-02.jpg\" alt=\"Wind turbines standing on a grassy plain, against a blue sky.\" /></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"67%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:67%\"><!-- wp:image {\"align\":\"right\",\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<div class=\"wp-block-image\"><figure class=\"alignright size-large\"><img src=\"https://s.w.org/images/core/5.8/outside-03.jpg\" alt=\"The sun shining over a ridge leading down into the shore. In the distance, a car drives down a road.\" /></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33%\"><!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#000000\"}},\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-color has-extra-small-font-size\" style=\"color:#000000\">Undoubtedly we have no questions to ask which are unanswerable. We must trust the perfection of the creation so far, as to believe that whatever curiosity the order of things has awakened in our minds, the order of things can satisfy. Every man\'s condition is a solution in hieroglyphic to those inquiries he would put.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\";}i:26;O:8:\"stdClass\":7:{s:2:\"id\";i:192;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:37:\"Media and text with image on the left\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:554:\"\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 class=\"has-text-align-center has-text-color wp-block-heading\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n\n\n\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:66:\"Media and text block with image to the left and text to the right.\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:827:\"<!-- wp:media-text {\"align\":\"full\",\"mediaType\":\"image\",\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-media-text alignfull is-stacked-on-mobile is-vertically-aligned-center\"><figure class=\"wp-block-media-text__media\"><img src=\"https://s.w.org/images/core/5.8/architecture-04.jpg\" alt=\"Close-up, abstract view of architecture.\" /></figure><div class=\"wp-block-media-text__content\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":3,\"style\":{\"color\":{\"text\":\"#000000\"}}} -->\n<h3 class=\"has-text-align-center has-text-color\" style=\"color:#000000\"><strong>Open Spaces</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"extra-small\"} -->\n<p class=\"has-text-align-center has-extra-small-font-size\"><a href=\"#\">See case study ↗</a></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:media-text -->\";}i:27;O:8:\"stdClass\":7:{s:2:\"id\";i:185;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:35:\"Large header with left-aligned text\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:1115:\"\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img decoding=\"async\" class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\">\n<h2 class=\"alignwide has-text-color wp-block-heading\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n\n\n\n<div class=\"wp-block-columns alignwide is-layout-flex wp-container-117\">\n<div class=\"wp-block-column is-layout-flow\" style=\"flex-basis:55%\">\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\"></div>\n</div>\n</div></div>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:0:\"\";s:16:\"wpop_description\";s:29:\"Cover image with quote on top\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:0:{}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:6:\"header\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:1610:\"<!-- wp:cover {\"url\":\"https://s.w.org/images/core/5.8/forest.jpg\",\"dimRatio\":60,\"minHeight\":800,\"align\":\"full\"} -->\n<div class=\"wp-block-cover alignfull has-background-dim-60 has-background-dim\" style=\"min-height:800px\"><img class=\"wp-block-cover__image-background\" alt=\"\" src=\"https://s.w.org/images/core/5.8/forest.jpg\" data-object-fit=\"cover\" /><div class=\"wp-block-cover__inner-container\"><!-- wp:heading {\"align\":\"wide\",\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"fontSize\":\"64px\"}}} -->\n<h2 class=\"alignwide has-text-color\" style=\"color:#ffe074;font-size:64px\">Forest.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:columns {\"align\":\"wide\"} -->\n<div class=\"wp-block-columns alignwide\"><!-- wp:column {\"width\":\"55%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:55%\"><!-- wp:spacer {\"height\":330} -->\n<div style=\"height:330px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#ffe074\"},\"typography\":{\"lineHeight\":\"1.3\",\"fontSize\":\"12px\"}}} -->\n<p class=\"has-text-color\" style=\"color:#ffe074;font-size:12px;line-height:1.3\"><em>Even a child knows how valuable the forest is. The fresh, breathtaking smell of trees. Echoing birds flying above that dense magnitude. A stable climate, a sustainable diverse life and a source of culture. Yet, forests and other ecosystems hang in the balance, threatened to become croplands, pasture, and plantations.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:cover -->\";}i:28;O:8:\"stdClass\":7:{s:2:\"id\";i:184;s:5:\"title\";O:8:\"stdClass\":1:{s:8:\"rendered\";s:7:\"Heading\";}s:7:\"content\";O:8:\"stdClass\":2:{s:8:\"rendered\";s:526:\"\n<h2 class=\"alignwide wp-block-heading\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We&#8217;re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n\";s:9:\"protected\";b:0;}s:4:\"meta\";O:8:\"stdClass\":6:{s:13:\"wpop_keywords\";s:17:\"large text, title\";s:16:\"wpop_description\";s:12:\"Heading text\";s:19:\"wpop_viewport_width\";i:1200;s:16:\"wpop_block_types\";a:1:{i:0;s:12:\"core/heading\";}s:11:\"wpop_locale\";s:5:\"en_US\";s:15:\"wpop_wp_version\";s:0:\"\";}s:14:\"category_slugs\";a:2:{i:0;s:8:\"featured\";i:1;s:4:\"text\";}s:13:\"keyword_slugs\";a:1:{i:0;s:4:\"core\";}s:15:\"pattern_content\";s:621:\"<!-- wp:heading {\"align\":\"wide\",\"style\":{\"typography\":{\"fontSize\":\"48px\",\"lineHeight\":\"1.1\"}}} -->\n<h2 class=\"alignwide\" id=\"we-re-a-studio-in-berlin-with-an-international-practice-in-architecture-urban-planning-and-interior-design-we-believe-in-sharing-knowledge-and-promoting-dialogue-to-increase-the-creative-potential-of-collaboration\" style=\"font-size:48px;line-height:1.1\">We\'re a studio in Berlin with an international practice in architecture, urban planning and interior design. We believe in sharing knowledge and promoting dialogue to increase the creative potential of collaboration.</h2>\n<!-- /wp:heading -->\";}}','no');
  356. INSERT INTO `wp_options` VALUES (417,'_transient_timeout_global_styles_zeever','1672245405','no');
  357. INSERT INTO `wp_options` VALUES (418,'_transient_global_styles_zeever','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--zeever-primary: #FCFCFC;--wp--preset--color--zeever-secondary: #9fffaf;--wp--preset--color--zeever-third: #121212;--wp--preset--color--zeever-bodytext: #D0D0D0;--wp--preset--color--zeever-bgsoft: #0B0C10;--wp--preset--color--zeever-border: #363636;--wp--preset--color--zeever-button-border: #9be1ff;--wp--preset--color--zeever-form: #252525;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--gradient--quinary-to-septenary: linear-gradient(160deg, var(--wp--preset--color--quinary), var(--wp--preset--color--septenary));--wp--preset--duotone--dark-grayscale: url(\'#wp-duotone-dark-grayscale\');--wp--preset--duotone--grayscale: url(\'#wp-duotone-grayscale\');--wp--preset--duotone--purple-yellow: url(\'#wp-duotone-purple-yellow\');--wp--preset--duotone--blue-red: url(\'#wp-duotone-blue-red\');--wp--preset--duotone--midnight: url(\'#wp-duotone-midnight\');--wp--preset--duotone--magenta-yellow: url(\'#wp-duotone-magenta-yellow\');--wp--preset--duotone--purple-green: url(\'#wp-duotone-purple-green\');--wp--preset--duotone--blue-orange: url(\'#wp-duotone-blue-orange\');--wp--preset--font-size--small: 18px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 24px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--tiny: 16px;--wp--preset--font-size--normal: 20px;--wp--preset--font-size--extra-large: 40px;--wp--preset--font-size--huge: 96px;--wp--preset--font-size--gigantic: 144px;--wp--preset--font-size--heading-1: clamp(42px, 5.2778vw, 76px );--wp--preset--font-size--heading-2: clamp(28px, 3.334vw, 48px);--wp--preset--font-size--heading-3: clamp(22px, 1.667vw, 24px);--wp--preset--font-size--heading-4: clamp(20px, 1.528vw, 22px);--wp--preset--font-size--heading-5: clamp(18px, 1.389vw, 20px);--wp--preset--font-size--heading-6: clamp(14px, 1.112vw, 16px);--wp--preset--font-family--primary: \'Poppins\';--wp--preset--font-family--secondary: \'Heebo\';--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--custom--headings--typography--font-family: var(--wp--preset--font-family--primary);}body { margin: 0;--wp--style--global--content-size: 1170px;--wp--style--global--wide-size: 1200px; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }.wp-site-blocks > * + * { margin-block-start: 24px; }body { --wp--style--block-gap: 24px; }body .is-layout-flow > *{margin-block-start: 0;margin-block-end: 0;}body .is-layout-flow > * + *{margin-block-start: 24px;margin-block-end: 0;}body .is-layout-constrained > *{margin-block-start: 0;margin-block-end: 0;}body .is-layout-constrained > * + *{margin-block-start: 24px;margin-block-end: 0;}body .is-layout-flex{gap: 24px;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body{background-color: #000001;color: #D0D0D0;padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){color: #9fffaf;text-decoration: underline;}h1{font-family: var(--wp--custom--headings--typography--font-family);}h2{font-family: var(--wp--custom--headings--typography--font-family);}h3{font-family: var(--wp--custom--headings--typography--font-family);}h4{font-family: var(--wp--custom--headings--typography--font-family);}h5{font-family: var(--wp--custom--headings--typography--font-family);}h6{font-family: var(--wp--custom--headings--typography--font-family);}.wp-element-button, .wp-block-button__link{background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-zeever-primary-color{color: var(--wp--preset--color--zeever-primary) !important;}.has-zeever-secondary-color{color: var(--wp--preset--color--zeever-secondary) !important;}.has-zeever-third-color{color: var(--wp--preset--color--zeever-third) !important;}.has-zeever-bodytext-color{color: var(--wp--preset--color--zeever-bodytext) !important;}.has-zeever-bgsoft-color{color: var(--wp--preset--color--zeever-bgsoft) !important;}.has-zeever-border-color{color: var(--wp--preset--color--zeever-border) !important;}.has-zeever-button-border-color{color: var(--wp--preset--color--zeever-button-border) !important;}.has-zeever-form-color{color: var(--wp--preset--color--zeever-form) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-zeever-primary-background-color{background-color: var(--wp--preset--color--zeever-primary) !important;}.has-zeever-secondary-background-color{background-color: var(--wp--preset--color--zeever-secondary) !important;}.has-zeever-third-background-color{background-color: var(--wp--preset--color--zeever-third) !important;}.has-zeever-bodytext-background-color{background-color: var(--wp--preset--color--zeever-bodytext) !important;}.has-zeever-bgsoft-background-color{background-color: var(--wp--preset--color--zeever-bgsoft) !important;}.has-zeever-border-background-color{background-color: var(--wp--preset--color--zeever-border) !important;}.has-zeever-button-border-background-color{background-color: var(--wp--preset--color--zeever-button-border) !important;}.has-zeever-form-background-color{background-color: var(--wp--preset--color--zeever-form) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-zeever-primary-border-color{border-color: var(--wp--preset--color--zeever-primary) !important;}.has-zeever-secondary-border-color{border-color: var(--wp--preset--color--zeever-secondary) !important;}.has-zeever-third-border-color{border-color: var(--wp--preset--color--zeever-third) !important;}.has-zeever-bodytext-border-color{border-color: var(--wp--preset--color--zeever-bodytext) !important;}.has-zeever-bgsoft-border-color{border-color: var(--wp--preset--color--zeever-bgsoft) !important;}.has-zeever-border-border-color{border-color: var(--wp--preset--color--zeever-border) !important;}.has-zeever-button-border-border-color{border-color: var(--wp--preset--color--zeever-button-border) !important;}.has-zeever-form-border-color{border-color: var(--wp--preset--color--zeever-form) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-quinary-to-septenary-gradient-background{background: var(--wp--preset--gradient--quinary-to-septenary) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-tiny-font-size{font-size: var(--wp--preset--font-size--tiny) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-extra-large-font-size{font-size: var(--wp--preset--font-size--extra-large) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}.has-gigantic-font-size{font-size: var(--wp--preset--font-size--gigantic) !important;}.has-heading-1-font-size{font-size: var(--wp--preset--font-size--heading-1) !important;}.has-heading-2-font-size{font-size: var(--wp--preset--font-size--heading-2) !important;}.has-heading-3-font-size{font-size: var(--wp--preset--font-size--heading-3) !important;}.has-heading-4-font-size{font-size: var(--wp--preset--font-size--heading-4) !important;}.has-heading-5-font-size{font-size: var(--wp--preset--font-size--heading-5) !important;}.has-heading-6-font-size{font-size: var(--wp--preset--font-size--heading-6) !important;}.has-primary-font-family{font-family: var(--wp--preset--font-family--primary) !important;}.has-secondary-font-family{font-family: var(--wp--preset--font-family--secondary) !important;}','no');
  358. INSERT INTO `wp_options` VALUES (419,'_transient_timeout_global_styles_svg_filters_zeever','1672245406','no');
  359. INSERT INTO `wp_options` VALUES (420,'_transient_global_styles_svg_filters_zeever','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>','no');
  360. /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
  361. UNLOCK TABLES;
  362. --
  363. -- Table structure for table `wp_postmeta`
  364. --
  365. DROP TABLE IF EXISTS `wp_postmeta`;
  366. /*!40101 SET @saved_cs_client = @@character_set_client */;
  367. SET character_set_client = utf8mb4 ;
  368. CREATE TABLE `wp_postmeta` (
  369. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  370. `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  371. `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  372. `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  373. PRIMARY KEY (`meta_id`),
  374. KEY `post_id` (`post_id`),
  375. KEY `meta_key` (`meta_key`(191))
  376. ) ENGINE=InnoDB AUTO_INCREMENT=146 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  377. /*!40101 SET character_set_client = @saved_cs_client */;
  378. --
  379. -- Dumping data for table `wp_postmeta`
  380. --
  381. LOCK TABLES `wp_postmeta` WRITE;
  382. /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
  383. INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default');
  384. INSERT INTO `wp_postmeta` VALUES (2,3,'_wp_page_template','default');
  385. INSERT INTO `wp_postmeta` VALUES (3,3,'_edit_lock','1672190011:1');
  386. INSERT INTO `wp_postmeta` VALUES (4,1,'_wp_trash_meta_status','publish');
  387. INSERT INTO `wp_postmeta` VALUES (5,1,'_wp_trash_meta_time','1672187926');
  388. INSERT INTO `wp_postmeta` VALUES (6,1,'_wp_desired_post_slug','hello-world');
  389. INSERT INTO `wp_postmeta` VALUES (7,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}');
  390. INSERT INTO `wp_postmeta` VALUES (8,7,'_edit_lock','1672187826:1');
  391. INSERT INTO `wp_postmeta` VALUES (9,9,'_edit_lock','1672187840:1');
  392. INSERT INTO `wp_postmeta` VALUES (14,11,'_edit_lock','1672188548:1');
  393. INSERT INTO `wp_postmeta` VALUES (15,12,'_wp_attached_file','2022/12/main_icon.png');
  394. INSERT INTO `wp_postmeta` VALUES (16,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:21:\"2022/12/main_icon.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"main_icon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"main_icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"main_icon-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  395. INSERT INTO `wp_postmeta` VALUES (19,11,'_thumbnail_id','12');
  396. INSERT INTO `wp_postmeta` VALUES (20,11,'_wp_page_template','blank');
  397. INSERT INTO `wp_postmeta` VALUES (21,14,'_elementor_edit_mode','builder');
  398. INSERT INTO `wp_postmeta` VALUES (22,14,'_elementor_template_type','kit');
  399. INSERT INTO `wp_postmeta` VALUES (23,2,'_edit_lock','1672190417:1');
  400. INSERT INTO `wp_postmeta` VALUES (25,2,'_elementor_template_type','wp-page');
  401. INSERT INTO `wp_postmeta` VALUES (26,2,'_elementor_version','3.9.2');
  402. INSERT INTO `wp_postmeta` VALUES (27,14,'_elementor_css','a:6:{s:4:\"time\";i:1672189416;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
  403. INSERT INTO `wp_postmeta` VALUES (28,15,'_wp_page_template','default');
  404. INSERT INTO `wp_postmeta` VALUES (29,15,'_elementor_edit_mode','builder');
  405. INSERT INTO `wp_postmeta` VALUES (30,15,'_elementor_template_type','wp-page');
  406. INSERT INTO `wp_postmeta` VALUES (31,15,'_elementor_version','3.9.2');
  407. INSERT INTO `wp_postmeta` VALUES (32,3,'_edit_last','1');
  408. INSERT INTO `wp_postmeta` VALUES (34,17,'_wp_attached_file','2022/12/ibm-template.png');
  409. INSERT INTO `wp_postmeta` VALUES (35,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:880;s:6:\"height\";i:356;s:4:\"file\";s:24:\"2022/12/ibm-template.png\";s:8:\"filesize\";i:90672;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"ibm-template-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17665;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ibm-template-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"ibm-template-768x311.png\";s:5:\"width\";i:768;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  410. INSERT INTO `wp_postmeta` VALUES (36,18,'_wp_attached_file','2022/12/ios-template.png');
  411. INSERT INTO `wp_postmeta` VALUES (37,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:880;s:6:\"height\";i:356;s:4:\"file\";s:24:\"2022/12/ios-template.png\";s:8:\"filesize\";i:63933;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"ios-template-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12551;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"ios-template-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11608;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"ios-template-768x311.png\";s:5:\"width\";i:768;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59196;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  412. INSERT INTO `wp_postmeta` VALUES (38,19,'_wp_attached_file','2022/12/material-template.png');
  413. INSERT INTO `wp_postmeta` VALUES (39,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:880;s:6:\"height\";i:356;s:4:\"file\";s:29:\"2022/12/material-template.png\";s:8:\"filesize\";i:80505;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"material-template-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13722;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"material-template-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12305;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"material-template-768x311.png\";s:5:\"width\";i:768;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  414. INSERT INTO `wp_postmeta` VALUES (40,20,'_wp_attached_file','2022/12/phosphor-template.png');
  415. INSERT INTO `wp_postmeta` VALUES (41,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:880;s:6:\"height\";i:356;s:4:\"file\";s:29:\"2022/12/phosphor-template.png\";s:8:\"filesize\";i:88105;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"phosphor-template-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"phosphor-template-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17024;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"phosphor-template-768x311.png\";s:5:\"width\";i:768;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80422;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  416. INSERT INTO `wp_postmeta` VALUES (48,22,'_wp_page_template','default');
  417. INSERT INTO `wp_postmeta` VALUES (49,22,'_elementor_template_type','wp-page');
  418. INSERT INTO `wp_postmeta` VALUES (50,22,'_elementor_version','3.9.2');
  419. INSERT INTO `wp_postmeta` VALUES (51,22,'_elementor_edit_mode','builder');
  420. INSERT INTO `wp_postmeta` VALUES (52,23,'_wp_page_template','default');
  421. INSERT INTO `wp_postmeta` VALUES (53,23,'_elementor_template_type','wp-page');
  422. INSERT INTO `wp_postmeta` VALUES (54,23,'_elementor_version','3.9.2');
  423. INSERT INTO `wp_postmeta` VALUES (55,23,'_elementor_edit_mode','builder');
  424. INSERT INTO `wp_postmeta` VALUES (56,2,'_elementor_data','[{\"id\":\"4cf80a9b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"438d0468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"666b075\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":17,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ibm-template.png\"},{\"id\":18,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ios-template.png\"},{\"id\":19,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/material-template.png\"},{\"id\":20,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/phosphor-template.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"image_stretch\":\"yes\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"5c653b41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi\\u00f1a coladas. (And gettin\' caught in the rain.)<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>...or something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>As a new WordPress user, you should go to <a href=\\\"http:\\/\\/shadrin14323.local\\/wp-admin\\/\\\">your dashboard<\\/a> to delete this page and create new pages for your content. Have fun!<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
  425. INSERT INTO `wp_postmeta` VALUES (57,24,'_wp_page_template','default');
  426. INSERT INTO `wp_postmeta` VALUES (58,24,'_elementor_template_type','wp-page');
  427. INSERT INTO `wp_postmeta` VALUES (59,24,'_elementor_version','3.9.2');
  428. INSERT INTO `wp_postmeta` VALUES (60,24,'_elementor_edit_mode','builder');
  429. INSERT INTO `wp_postmeta` VALUES (61,24,'_elementor_data','[{\"id\":\"4cf80a9b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"438d0468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"666b075\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":17,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ibm-template.png\"},{\"id\":18,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ios-template.png\"},{\"id\":19,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/material-template.png\"},{\"id\":20,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/phosphor-template.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"image_stretch\":\"yes\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"5c653b41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi\\u00f1a coladas. (And gettin\' caught in the rain.)<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>...or something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>As a new WordPress user, you should go to <a href=\\\"http:\\/\\/shadrin14323.local\\/wp-admin\\/\\\">your dashboard<\\/a> to delete this page and create new pages for your content. Have fun!<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
  430. INSERT INTO `wp_postmeta` VALUES (62,2,'_elementor_page_assets','a:0:{}');
  431. INSERT INTO `wp_postmeta` VALUES (63,14,'_edit_lock','1672190414:1');
  432. INSERT INTO `wp_postmeta` VALUES (64,25,'_wp_page_template','default');
  433. INSERT INTO `wp_postmeta` VALUES (65,25,'_elementor_template_type','wp-page');
  434. INSERT INTO `wp_postmeta` VALUES (66,25,'_elementor_version','3.9.2');
  435. INSERT INTO `wp_postmeta` VALUES (67,25,'_elementor_edit_mode','builder');
  436. INSERT INTO `wp_postmeta` VALUES (68,25,'_elementor_data','[{\"id\":\"4cf80a9b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"438d0468\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"666b075\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":17,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ibm-template.png\"},{\"id\":18,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/ios-template.png\"},{\"id\":19,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/material-template.png\"},{\"id\":20,\"url\":\"http:\\/\\/shadrin14323.local\\/wp-content\\/uploads\\/2022\\/12\\/phosphor-template.png\"}],\"thumbnail_size\":\"large\",\"slides_to_show\":\"1\",\"image_stretch\":\"yes\",\"navigation\":\"dots\"},\"elements\":[],\"widgetType\":\"image-carousel\"},{\"id\":\"5c653b41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi\\u00f1a coladas. (And gettin\' caught in the rain.)<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>...or something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><!-- wp:paragraph -->\\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\\/p>\\n<!-- \\/wp:paragraph --><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>As a new WordPress user, you should go to <a href=\\\"http:\\/\\/shadrin14323.local\\/wp-admin\\/\\\">your dashboard<\\/a> to delete this page and create new pages for your content. Have fun!<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]');
  437. INSERT INTO `wp_postmeta` VALUES (69,25,'_elementor_page_assets','a:0:{}');
  438. INSERT INTO `wp_postmeta` VALUES (70,2,'_elementor_edit_mode','builder');
  439. INSERT INTO `wp_postmeta` VALUES (71,2,'_elementor_css','a:6:{s:4:\"time\";i:1672190520;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
  440. INSERT INTO `wp_postmeta` VALUES (72,27,'_wp_attached_file','2022/12/main_icon-1.png');
  441. INSERT INTO `wp_postmeta` VALUES (73,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-1.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  442. INSERT INTO `wp_postmeta` VALUES (74,28,'_wp_attached_file','2022/12/main_icon_wallpaper.png');
  443. INSERT INTO `wp_postmeta` VALUES (75,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5513;s:6:\"height\";i:4268;s:4:\"file\";s:31:\"2022/12/main_icon_wallpaper.png\";s:8:\"filesize\";i:1050655;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-300x232.png\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27502;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"main_icon_wallpaper-1024x793.png\";s:5:\"width\";i:1024;s:6:\"height\";i:793;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:328027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-768x595.png\";s:5:\"width\";i:768;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184502;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"main_icon_wallpaper-1536x1189.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1189;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:701047;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"main_icon_wallpaper-2048x1586.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1586;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1127516;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  444. INSERT INTO `wp_postmeta` VALUES (76,29,'_wp_attached_file','2022/12/main_icon_wallpaper.jpg');
  445. INSERT INTO `wp_postmeta` VALUES (77,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1438;s:6:\"height\";i:821;s:4:\"file\";s:31:\"2022/12/main_icon_wallpaper.jpg\";s:8:\"filesize\";i:141256;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4901;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"main_icon_wallpaper-1024x585.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3181;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"main_icon_wallpaper-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18216;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  446. INSERT INTO `wp_postmeta` VALUES (78,30,'origin','theme');
  447. INSERT INTO `wp_postmeta` VALUES (79,33,'_elementor_edit_mode','builder');
  448. INSERT INTO `wp_postmeta` VALUES (80,33,'_elementor_template_type','kit');
  449. INSERT INTO `wp_postmeta` VALUES (81,32,'origin','theme');
  450. INSERT INTO `wp_postmeta` VALUES (82,33,'_elementor_css','a:6:{s:4:\"time\";i:1672189416;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
  451. INSERT INTO `wp_postmeta` VALUES (83,14,'_wp_page_template','default');
  452. INSERT INTO `wp_postmeta` VALUES (84,14,'_elementor_page_settings','a:1:{s:9:\"site_name\";s:12:\"WorldFitness\";}');
  453. INSERT INTO `wp_postmeta` VALUES (85,35,'_wp_attached_file','2022/12/мокап-2.png');
  454. INSERT INTO `wp_postmeta` VALUES (86,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:752;s:4:\"file\";s:24:\"2022/12/мокап-2.png\";s:8:\"filesize\";i:387538;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"мокап-2-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43271;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"мокап-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21371;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"мокап-2-768x578.png\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226495;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  455. INSERT INTO `wp_postmeta` VALUES (87,38,'_wp_attached_file','2022/12/мокап-2-2.jpg');
  456. INSERT INTO `wp_postmeta` VALUES (88,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1036;s:6:\"height\";i:672;s:4:\"file\";s:26:\"2022/12/мокап-2-2.jpg\";s:8:\"filesize\";i:116328;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"мокап-2-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7707;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"мокап-2-2-1024x664.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:664;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51642;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"мокап-2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3940;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"мокап-2-2-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32941;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  457. INSERT INTO `wp_postmeta` VALUES (89,39,'_wp_attached_file','2022/12/мокап-2-2-1.jpg');
  458. INSERT INTO `wp_postmeta` VALUES (90,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1013;s:6:\"height\";i:745;s:4:\"file\";s:28:\"2022/12/мокап-2-2-1.jpg\";s:8:\"filesize\";i:120660;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"мокап-2-2-1-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"мокап-2-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4148;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"мокап-2-2-1-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  459. INSERT INTO `wp_postmeta` VALUES (91,41,'_wp_attached_file','2022/12/main_icon-2.png');
  460. INSERT INTO `wp_postmeta` VALUES (92,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-2.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  461. INSERT INTO `wp_postmeta` VALUES (93,42,'_wp_attached_file','2022/12/main_icon-3.png');
  462. INSERT INTO `wp_postmeta` VALUES (94,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-3.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-3-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  463. INSERT INTO `wp_postmeta` VALUES (95,43,'_wp_attached_file','2022/12/main_icon-4.png');
  464. INSERT INTO `wp_postmeta` VALUES (96,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-4.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-4-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  465. INSERT INTO `wp_postmeta` VALUES (97,46,'_wp_attached_file','2022/12/мокап-1.jpg');
  466. INSERT INTO `wp_postmeta` VALUES (98,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2022/12/мокап-1.jpg\";s:8:\"filesize\";i:146424;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"мокап-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"мокап-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3376;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"мокап-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41760;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"©Asylab\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:31:\"iPhone 11 Pro Mockups by Asylab\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"©Asylab\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:31:\"iPhone 11 Pro Mockups by Asylab\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
  467. INSERT INTO `wp_postmeta` VALUES (99,47,'_wp_attached_file','2022/12/мокап-3.jpg');
  468. INSERT INTO `wp_postmeta` VALUES (100,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:24:\"2022/12/мокап-3.jpg\";s:8:\"filesize\";i:101119;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"мокап-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6411;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"мокап-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3145;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"мокап-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
  469. INSERT INTO `wp_postmeta` VALUES (101,48,'_wp_attached_file','2022/12/мокап-4.jpg');
  470. INSERT INTO `wp_postmeta` VALUES (102,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:857;s:4:\"file\";s:24:\"2022/12/мокап-4.jpg\";s:8:\"filesize\";i:159042;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"мокап-4-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"мокап-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4642;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"мокап-4-768x658.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47132;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
  471. INSERT INTO `wp_postmeta` VALUES (103,49,'_wp_attached_file','2022/12/мокап-5.jpg');
  472. INSERT INTO `wp_postmeta` VALUES (104,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:714;s:4:\"file\";s:24:\"2022/12/мокап-5.jpg\";s:8:\"filesize\";i:126522;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"мокап-5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6939;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"мокап-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3803;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"мокап-5-768x548.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33509;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"©Asylab\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:36:\"Samsung Galaxy S10 Mockups by Asylab\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"©Asylab\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:36:\"Samsung Galaxy S10 Mockups by Asylab\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
  473. INSERT INTO `wp_postmeta` VALUES (105,50,'_wp_attached_file','2022/12/картинка-йога.jpg');
  474. INSERT INTO `wp_postmeta` VALUES (106,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:503;s:4:\"file\";s:37:\"2022/12/картинка-йога.jpg\";s:8:\"filesize\";i:53874;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"картинка-йога-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10882;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"картинка-йога-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5113;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"картинка-йога-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  475. INSERT INTO `wp_postmeta` VALUES (107,51,'_wp_attached_file','2022/12/картинка-дома.jpg');
  476. INSERT INTO `wp_postmeta` VALUES (108,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:817;s:4:\"file\";s:37:\"2022/12/картинка-дома.jpg\";s:8:\"filesize\";i:229220;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"картинка-дома-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10961;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"картинка-дома-1024x598.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97626;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"картинка-дома-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5941;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"картинка-дома-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56344;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  477. INSERT INTO `wp_postmeta` VALUES (109,52,'_wp_attached_file','2022/12/картинка-зал.jpg');
  478. INSERT INTO `wp_postmeta` VALUES (110,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:490;s:4:\"file\";s:35:\"2022/12/картинка-зал.jpg\";s:8:\"filesize\";i:121952;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"картинка-зал-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16881;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"картинка-зал-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7815;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  479. INSERT INTO `wp_postmeta` VALUES (111,54,'_wp_attached_file','2022/12/main_icon-5.png');
  480. INSERT INTO `wp_postmeta` VALUES (112,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-5.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-5-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-5-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  481. INSERT INTO `wp_postmeta` VALUES (113,55,'_wp_attached_file','2022/12/main_icon-5-edited.png');
  482. INSERT INTO `wp_postmeta` VALUES (114,55,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:707;s:6:\"height\";i:707;s:4:\"file\";s:30:\"2022/12/main_icon-5-edited.png\";s:8:\"filesize\";i:585721;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"main_icon-5-edited-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94895;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"main_icon-5-edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23905;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"54\";s:4:\"file\";s:23:\"2022/12/main_icon-5.png\";}}');
  483. INSERT INTO `wp_postmeta` VALUES (115,56,'_wp_attached_file','2022/12/main_icon-6.png');
  484. INSERT INTO `wp_postmeta` VALUES (116,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-6.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-6-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-6-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  485. INSERT INTO `wp_postmeta` VALUES (117,57,'_wp_attached_file','2022/12/main_icon-7.png');
  486. INSERT INTO `wp_postmeta` VALUES (118,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-7.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-7-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  487. INSERT INTO `wp_postmeta` VALUES (119,58,'_wp_attached_file','2022/12/main_icon-8.png');
  488. INSERT INTO `wp_postmeta` VALUES (120,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-8.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-8-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-8-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  489. INSERT INTO `wp_postmeta` VALUES (121,62,'_wp_attached_file','2022/12/картинка-телефон.jpg');
  490. INSERT INTO `wp_postmeta` VALUES (122,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:43:\"2022/12/картинка-телефон.jpg\";s:8:\"filesize\";i:9439;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"картинка-телефон-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  491. INSERT INTO `wp_postmeta` VALUES (123,63,'_wp_attached_file','2022/12/картинка-макс.jpg');
  492. INSERT INTO `wp_postmeta` VALUES (124,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:201;s:6:\"height\";i:234;s:4:\"file\";s:37:\"2022/12/картинка-макс.jpg\";s:8:\"filesize\";i:27583;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"картинка-макс-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  493. INSERT INTO `wp_postmeta` VALUES (125,64,'_wp_attached_file','2022/12/картинка-макс-edited.jpg');
  494. INSERT INTO `wp_postmeta` VALUES (126,64,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:201;s:6:\"height\";i:201;s:4:\"file\";s:44:\"2022/12/картинка-макс-edited.jpg\";s:8:\"filesize\";i:11659;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"картинка-макс-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7127;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"63\";s:4:\"file\";s:37:\"2022/12/картинка-макс.jpg\";}}');
  495. INSERT INTO `wp_postmeta` VALUES (127,65,'_wp_attached_file','2022/12/картинка-телефон-1.jpg');
  496. INSERT INTO `wp_postmeta` VALUES (128,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:45:\"2022/12/картинка-телефон-1.jpg\";s:8:\"filesize\";i:9439;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"картинка-телефон-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  497. INSERT INTO `wp_postmeta` VALUES (129,66,'_wp_attached_file','2022/12/картинка-телефон-1-edited.jpg');
  498. INSERT INTO `wp_postmeta` VALUES (130,66,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:168;s:6:\"height\";i:168;s:4:\"file\";s:52:\"2022/12/картинка-телефон-1-edited.jpg\";s:8:\"filesize\";i:4848;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"картинка-телефон-1-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4122;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"65\";s:4:\"file\";s:45:\"2022/12/картинка-телефон-1.jpg\";}}');
  499. INSERT INTO `wp_postmeta` VALUES (131,67,'_wp_attached_file','2022/12/картинка-джоджо.jpg');
  500. INSERT INTO `wp_postmeta` VALUES (132,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:249;s:6:\"height\";i:293;s:4:\"file\";s:41:\"2022/12/картинка-джоджо.jpg\";s:8:\"filesize\";i:33400;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"картинка-джоджо-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  501. INSERT INTO `wp_postmeta` VALUES (133,68,'_wp_attached_file','2022/12/картинка-джоджо-edited.jpg');
  502. INSERT INTO `wp_postmeta` VALUES (134,68,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:249;s:6:\"height\";i:249;s:4:\"file\";s:48:\"2022/12/картинка-джоджо-edited.jpg\";s:8:\"filesize\";i:13827;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"картинка-джоджо-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6296;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"67\";s:4:\"file\";s:41:\"2022/12/картинка-джоджо.jpg\";}}');
  503. INSERT INTO `wp_postmeta` VALUES (135,69,'_wp_attached_file','2022/12/картинка-эш.jpg');
  504. INSERT INTO `wp_postmeta` VALUES (136,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:573;s:4:\"file\";s:33:\"2022/12/картинка-эш.jpg\";s:8:\"filesize\";i:89976;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"картинка-эш-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18743;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"картинка-эш-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8786;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"картинка-эш-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78448;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:17:\"Nicolas Pelletier\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477861435\";s:9:\"copyright\";s:17:\"Nicolas Pelletier\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  505. INSERT INTO `wp_postmeta` VALUES (137,70,'_wp_attached_file','2022/12/картинка-эш-edited.jpg');
  506. INSERT INTO `wp_postmeta` VALUES (138,70,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:573;s:6:\"height\";i:573;s:4:\"file\";s:40:\"2022/12/картинка-эш-edited.jpg\";s:8:\"filesize\";i:69690;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"картинка-эш-edited-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24512;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"картинка-эш-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9013;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:17:\"Nicolas Pelletier\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1477861435\";s:9:\"copyright\";s:17:\"Nicolas Pelletier\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"69\";s:4:\"file\";s:33:\"2022/12/картинка-эш.jpg\";}}');
  507. INSERT INTO `wp_postmeta` VALUES (139,71,'_wp_attached_file','2022/12/картинка-телефон-2.jpg');
  508. INSERT INTO `wp_postmeta` VALUES (140,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:45:\"2022/12/картинка-телефон-2.jpg\";s:8:\"filesize\";i:9439;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"картинка-телефон-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  509. INSERT INTO `wp_postmeta` VALUES (141,75,'_wp_attached_file','2022/12/main_icon-9.png');
  510. INSERT INTO `wp_postmeta` VALUES (142,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:23:\"2022/12/main_icon-9.png\";s:8:\"filesize\";i:691190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"main_icon-9-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46684;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"main_icon-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"main_icon-9-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:309558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
  511. INSERT INTO `wp_postmeta` VALUES (143,76,'origin','theme');
  512. INSERT INTO `wp_postmeta` VALUES (144,77,'_wp_attached_file','2022/12/main_icon-edited.png');
  513. INSERT INTO `wp_postmeta` VALUES (145,77,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:728;s:6:\"height\";i:728;s:4:\"file\";s:28:\"2022/12/main_icon-edited.png\";s:8:\"filesize\";i:587196;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"main_icon-edited-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89514;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"main_icon-edited-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22543;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:12:\"parent_image\";a:2:{s:13:\"attachment_id\";s:2:\"12\";s:4:\"file\";s:21:\"2022/12/main_icon.png\";}}');
  514. /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
  515. UNLOCK TABLES;
  516. --
  517. -- Table structure for table `wp_posts`
  518. --
  519. DROP TABLE IF EXISTS `wp_posts`;
  520. /*!40101 SET @saved_cs_client = @@character_set_client */;
  521. SET character_set_client = utf8mb4 ;
  522. CREATE TABLE `wp_posts` (
  523. `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  524. `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  525. `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  526. `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  527. `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  528. `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  529. `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  530. `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  531. `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  532. `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  533. `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  534. `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  535. `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  536. `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  537. `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  538. `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  539. `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  540. `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  541. `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  542. `menu_order` int(11) NOT NULL DEFAULT '0',
  543. `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  544. `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  545. `comment_count` bigint(20) NOT NULL DEFAULT '0',
  546. PRIMARY KEY (`ID`),
  547. KEY `post_name` (`post_name`(191)),
  548. KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  549. KEY `post_parent` (`post_parent`),
  550. KEY `post_author` (`post_author`)
  551. ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  552. /*!40101 SET character_set_client = @saved_cs_client */;
  553. --
  554. -- Dumping data for table `wp_posts`
  555. --
  556. LOCK TABLES `wp_posts` WRITE;
  557. /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
  558. INSERT INTO `wp_posts` VALUES (1,1,'2022-12-23 02:12:40','2022-12-23 02:12:40','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','trash','open','open','','hello-world__trashed','','','2022-12-28 08:38:46','2022-12-28 00:38:46','',0,'http://shadrin14323.local/?p=1',0,'post','',1);
  559. INSERT INTO `wp_posts` VALUES (2,1,'2022-12-23 02:12:40','2022-12-23 02:12:40','<style>/*! elementor - v3.9.2 - 21-12-2022 */<br />\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ibm-template.png\" alt=\"ibm\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ios-template.png\" alt=\"ios\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/material-template.png\" alt=\"material\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/phosphor-template.png\" alt=\"phosphor\"></figure>\n\n<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote>\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote>\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2022-12-28 09:21:23','2022-12-28 01:21:23','',0,'http://shadrin14323.local/?page_id=2',0,'page','',0);
  560. INSERT INTO `wp_posts` VALUES (3,1,'2022-12-23 02:12:40','2022-12-22 18:12:40','<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://shadrin14323.local.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','draft','closed','closed','','privacy-policy','','','2022-12-28 09:13:31','2022-12-28 01:13:31','',0,'http://shadrin14323.local/?page_id=3',0,'page','',0);
  561. INSERT INTO `wp_posts` VALUES (4,1,'2022-12-23 02:31:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-12-23 02:31:42','0000-00-00 00:00:00','',0,'http://shadrin14323.local/?p=4',0,'post','',0);
  562. INSERT INTO `wp_posts` VALUES (5,1,'2022-12-23 02:32:04','2022-12-23 02:32:04','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-twentytwentythree','','','2022-12-23 02:32:04','2022-12-23 02:32:04','',0,'http://shadrin14323.local/wp-global-styles-twentytwentythree/',0,'wp_global_styles','',0);
  563. INSERT INTO `wp_posts` VALUES (6,1,'2022-12-28 08:38:46','2022-12-28 00:38:46','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2022-12-28 08:38:46','2022-12-28 00:38:46','',1,'http://shadrin14323.local/?p=6',0,'revision','',0);
  564. INSERT INTO `wp_posts` VALUES (7,1,'2022-12-28 08:41:00','2022-12-28 00:41:00','','Я сверху','','publish','open','open','','%d1%8f-%d1%81%d0%b2%d0%b5%d1%80%d1%85%d1%83','','','2022-12-28 08:39:26','2022-12-28 00:39:26','',0,'http://shadrin14323.local/?p=7',0,'post','',0);
  565. INSERT INTO `wp_posts` VALUES (8,1,'2022-12-28 08:39:26','2022-12-28 00:39:26','','Я сверху','','inherit','closed','closed','','7-revision-v1','','','2022-12-28 08:39:26','2022-12-28 00:39:26','',7,'http://shadrin14323.local/?p=8',0,'revision','',0);
  566. INSERT INTO `wp_posts` VALUES (9,1,'2022-12-28 08:39:43','2022-12-28 00:39:43','','Я снизу','','publish','open','open','','%d1%8f-%d1%81%d0%bd%d0%b8%d0%b7%d1%83','','','2022-12-28 08:39:43','2022-12-28 00:39:43','',0,'http://shadrin14323.local/?p=9',0,'post','',0);
  567. INSERT INTO `wp_posts` VALUES (10,1,'2022-12-28 08:39:43','2022-12-28 00:39:43','','Я снизу','','inherit','closed','closed','','9-revision-v1','','','2022-12-28 08:39:43','2022-12-28 00:39:43','',9,'http://shadrin14323.local/?p=10',0,'revision','',0);
  568. INSERT INTO `wp_posts` VALUES (11,1,'2022-12-28 08:50:37','2022-12-28 00:50:37','<!-- wp:paragraph -->\n<p>для ознакомления</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>хыхы лол</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->','Тестовый заголовок','Тестовая запись для ознакомления','publish','open','open','','%d1%82%d0%b5%d1%81%d1%82%d0%be%d0%b2%d1%8b%d0%b9-%d0%b7%d0%b0%d0%b3%d0%be%d0%bb%d0%be%d0%b2%d0%be%d0%ba','','','2022-12-28 08:50:37','2022-12-28 00:50:37','',0,'http://shadrin14323.local/?p=11',0,'post','',0);
  569. INSERT INTO `wp_posts` VALUES (12,1,'2022-12-28 08:47:49','2022-12-28 00:47:49','','main_icon','','inherit','open','closed','','main_icon','','','2022-12-28 08:47:49','2022-12-28 00:47:49','',11,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon.png',0,'attachment','image/png',0);
  570. INSERT INTO `wp_posts` VALUES (13,1,'2022-12-28 08:50:37','2022-12-28 00:50:37','<!-- wp:paragraph -->\n<p>для ознакомления</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>хыхы лол</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->','Тестовый заголовок','Тестовая запись для ознакомления','inherit','closed','closed','','11-revision-v1','','','2022-12-28 08:50:37','2022-12-28 00:50:37','',11,'http://shadrin14323.local/?p=13',0,'revision','',0);
  571. INSERT INTO `wp_posts` VALUES (14,1,'2022-12-28 09:00:29','2022-12-28 01:00:29','','Default Kit','','publish','closed','closed','','default-kit','','','2022-12-28 13:10:54','2022-12-28 05:10:54','',0,'http://shadrin14323.local/?p=14',0,'elementor_library','',0);
  572. INSERT INTO `wp_posts` VALUES (15,1,'2022-12-28 09:05:32','2022-12-28 01:05:32','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2022-12-28 09:05:32','2022-12-28 01:05:32','',2,'http://shadrin14323.local/?p=15',0,'revision','',0);
  573. INSERT INTO `wp_posts` VALUES (16,1,'2022-12-28 09:12:10','2022-12-28 01:12:10','<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://shadrin14323.local.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2022-12-28 09:12:10','2022-12-28 01:12:10','',3,'http://shadrin14323.local/?p=16',0,'revision','',0);
  574. INSERT INTO `wp_posts` VALUES (17,1,'2022-12-28 09:16:40','2022-12-28 01:16:40','','ibm-template','ibm','inherit','open','closed','','ibm-template','','','2022-12-28 09:17:12','2022-12-28 01:17:12','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/ibm-template.png',0,'attachment','image/png',0);
  575. INSERT INTO `wp_posts` VALUES (18,1,'2022-12-28 09:16:40','2022-12-28 01:16:40','','ios-template','ios','inherit','open','closed','','ios-template','','','2022-12-28 09:17:20','2022-12-28 01:17:20','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/ios-template.png',0,'attachment','image/png',0);
  576. INSERT INTO `wp_posts` VALUES (19,1,'2022-12-28 09:16:41','2022-12-28 01:16:41','','material-template','material','inherit','open','closed','','material-template','','','2022-12-28 09:17:28','2022-12-28 01:17:28','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/material-template.png',0,'attachment','image/png',0);
  577. INSERT INTO `wp_posts` VALUES (20,1,'2022-12-28 09:16:42','2022-12-28 01:16:42','','phosphor-template','phosphor','inherit','open','closed','','phosphor-template','','','2022-12-28 09:17:48','2022-12-28 01:17:48','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/phosphor-template.png',0,'attachment','image/png',0);
  578. INSERT INTO `wp_posts` VALUES (22,1,'2022-12-28 09:19:38','2022-12-28 01:19:38','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2022-12-28 09:19:38','2022-12-28 01:19:38','',2,'http://shadrin14323.local/?p=22',0,'revision','',0);
  579. INSERT INTO `wp_posts` VALUES (23,1,'2022-12-28 09:19:38','2022-12-28 01:19:38','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2022-12-28 09:19:38','2022-12-28 01:19:38','',2,'http://shadrin14323.local/?p=23',0,'revision','',0);
  580. INSERT INTO `wp_posts` VALUES (24,1,'2022-12-28 09:19:39','2022-12-28 01:19:39','<style>/*! elementor - v3.9.2 - 21-12-2022 */\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style> \n <figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ibm-template.png\" alt=\"ibm\" /></figure><figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ios-template.png\" alt=\"ios\" /></figure><figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/material-template.png\" alt=\"material\" /></figure><figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/phosphor-template.png\" alt=\"phosphor\" /></figure> \n <!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n<!-- wp:quote -->\n<blockquote><!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n<!-- wp:quote -->\n<blockquote><!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph --></blockquote>\n<!-- /wp:quote -->\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2022-12-28 09:19:39','2022-12-28 01:19:39','',2,'http://shadrin14323.local/?p=24',0,'revision','',0);
  581. INSERT INTO `wp_posts` VALUES (25,1,'2022-12-28 09:21:23','2022-12-28 01:21:23','<style>/*! elementor - v3.9.2 - 21-12-2022 */<br />\n.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ibm-template.png\" alt=\"ibm\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/ios-template.png\" alt=\"ios\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/material-template.png\" alt=\"material\"></figure>\n<figure><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/phosphor-template.png\" alt=\"phosphor\"></figure>\n\n<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote>\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote>\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://shadrin14323.local/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2022-12-28 09:21:23','2022-12-28 01:21:23','',2,'http://shadrin14323.local/?p=25',0,'revision','',0);
  582. INSERT INTO `wp_posts` VALUES (26,1,'2022-12-28 09:54:30','2022-12-28 01:54:30','{\"styles\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#9fffaf\"}}}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"slug\":\"zeever-primary\",\"color\":\"#FCFCFC\",\"name\":\"Primary\"},{\"slug\":\"zeever-secondary\",\"color\":\"#9fffaf\",\"name\":\"Secondary\"},{\"slug\":\"zeever-third\",\"color\":\"#121212\",\"name\":\"Third\"},{\"slug\":\"zeever-bodytext\",\"color\":\"#D0D0D0\",\"name\":\"Body Text\"},{\"slug\":\"zeever-bgsoft\",\"color\":\"#0B0C10\",\"name\":\"Background Soft\"},{\"slug\":\"zeever-border\",\"color\":\"#363636\",\"name\":\"Border\"},{\"slug\":\"zeever-button-border\",\"color\":\"#9be1ff\",\"name\":\"Button Border\"},{\"slug\":\"zeever-form\",\"color\":\"#252525\",\"name\":\"Form\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','publish','closed','closed','','wp-global-styles-zeever','','','2022-12-29 00:21:20','2022-12-28 16:21:20','',0,'http://shadrin14323.local/wp-global-styles-zeever/',0,'wp_global_styles','',0);
  583. INSERT INTO `wp_posts` VALUES (27,1,'2022-12-28 09:56:22','2022-12-28 01:56:22','','main_icon-1','','inherit','open','closed','','main_icon-1','','','2022-12-28 09:56:22','2022-12-28 01:56:22','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-1.png',0,'attachment','image/png',0);
  584. INSERT INTO `wp_posts` VALUES (28,1,'2022-12-28 11:43:16','2022-12-28 03:43:16','','main_icon_wallpaper','','inherit','open','closed','','main_icon_wallpaper','','','2022-12-28 11:43:16','2022-12-28 03:43:16','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon_wallpaper.png',0,'attachment','image/png',0);
  585. INSERT INTO `wp_posts` VALUES (29,1,'2022-12-28 12:45:34','2022-12-28 04:45:34','','main_icon_wallpaper','','inherit','open','closed','','main_icon_wallpaper-2','','','2022-12-28 12:45:34','2022-12-28 04:45:34','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon_wallpaper.jpg',0,'attachment','image/jpeg',0);
  586. INSERT INTO `wp_posts` VALUES (30,1,'2022-12-28 13:04:52','2022-12-28 05:04:52','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 231, 133)\",\"rgb(255, 231, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#ff8585\",\"rgb(255, 133, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#9be1ff\",\"rgb(155, 225, 255)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"},\"color\":{\"text\":\"#ffe785\"}},\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-text-color\" style=\"color:#ffe785;font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"},\"color\":{\"text\":\"#ff8585\"}},\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-text-color\" style=\"color:#ff8585;font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-button-border\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-button-border-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 231, 133)\",\"rgb(255, 231, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"color\":{\"text\":\"#ffe785\"}},\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-text-color has-heading-3-font-size\" style=\"color:#ffe785;margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(1, 1, 1)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(155, 225, 255)\",\"rgb(155, 225, 255)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-button-border\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-button-border-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(0, 0, 0)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-third\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-third-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-third\"} -->\n<p class=\"has-text-align-left has-zeever-third-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 133, 133)\",\"rgb(255, 133, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"color\":{\"text\":\"#ff8585\"}},\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-text-color has-heading-3-font-size\" style=\"color:#ff8585;margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(0, 0, 0)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-third\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-third-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-third\"} -->\n<p class=\"has-text-align-left has-zeever-third-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Решил подкачаться. Начал ходить в клуб бокса при вузе, а меня там разве что пинали. Ещё и деньги за это просили. Закалился, конечно, но хотелось бы больше.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Скачал приложение WorldFitness и накачался за каких-то полгода в домашних условиях! Базовые комплексы очень хорошие!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":64,\"width\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-макс-edited.jpg\" alt=\"\" class=\"wp-image-64\" style=\"border-radius:50px\" width=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Максим</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Разработчик ПО</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Мне обещали, что за хороший отзыв меня разместят на сайте. Так вот говорю: приложение - бомба! Качайте все!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Нет, серьёзно, вы видели мою бицуху? Да я в окно для аватарки не поместился, пришлось растягивать! Это ли не показатель? Качался с помощью WorldFitness!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":71,\"width\":150,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-2.jpg\" alt=\"\" class=\"wp-image-71\" style=\"border-radius:50px\" width=\"150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Билли</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Мастер DnD</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Тренирую зверушек для победы в крупном турнире. Любим с друзьями походы, так что часто надолго уезжаю из города. Но тренировки то надо продолжать! Так что скачал приложение и в конструкторе собирал нужные комплексы, которые затем скидывал своим \"ученикам\". Очень удобно. Ещё и за их достижениями следил. В турнире мы в итоге победили!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":70,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-эш-edited.jpg\" alt=\"\" class=\"wp-image-70\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Эш</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Тренер покемонов</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Мать чем-то заболела. Дед сказал, что дело в каком-то чудном подростке из Египта, которому надо срочно надавать по жопе. Ну, скачал ваше приложение и за месяц поднабрал массу. Того парня одолеть смог! А мать, чтобы в моё отсутствие совсем не померла, занималась йогой. Тоже с помощью вашего приложения. Осталась довольна!</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":68,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-джоджо-edited.jpg\" alt=\"\" class=\"wp-image-68\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Жотаро</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Крестоносец звёздной пыли</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"backgroundColor\":\"zeever-third\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":\"unset\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-primary-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Реклам</strong>а</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>3 поста в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Всего 3 собственных комплекса и 10 собственных упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Частичный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>Google Play</strong></a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>App Store</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"color\":{\"background\":\"#ffe785\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#ffe785\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#f09000\",\"#feff00\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-third\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-third-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Никакой рекламы</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число постов в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число собственных комплексов и упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Выделение вашего профиля и продвижение ваших постов в сети</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Полный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Приоритет в тех. поддержке</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>200 руб/месяц</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\",\"id\":62,\"dimRatio\":70,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-70 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-62\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">8 (800) 555-35-35</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">г. Москва, ул. Пушкина, 17а</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','publish','closed','closed','','front-page','','','2022-12-29 00:21:20','2022-12-28 16:21:20','',0,'http://shadrin14323.local/front-page/',0,'wp_template','',0);
  587. INSERT INTO `wp_posts` VALUES (31,1,'2022-12-28 13:09:31','2022-12-28 05:09:31','<!-- wp:navigation-link {\"label\":\"Главная\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->\n\n<!-- wp:navigation-link {\"label\":\"О нас\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->\n\n<!-- wp:navigation-link {\"label\":\"Связь\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->','навигация','','publish','closed','closed','','%d0%bd%d0%b0%d0%b2%d0%b8%d0%b3%d0%b0%d1%86%d0%b8%d1%8f','','','2022-12-28 13:10:54','2022-12-28 05:10:54','',0,'http://shadrin14323.local/%d0%bd%d0%b0%d0%b2%d0%b8%d0%b3%d0%b0%d1%86%d0%b8%d1%8f/',0,'wp_navigation','',0);
  588. INSERT INTO `wp_posts` VALUES (32,1,'2022-12-28 13:10:54','2022-12-28 05:10:54','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0\",\"top\":\"10px\"}}},\"layout\":{\"wideSize\":\"1140px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:10px;padding-bottom:0\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":77,\"width\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-edited.png\" alt=\"\" class=\"wp-image-77\" width=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"36px\",\"lineHeight\":\"1\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\",\"fontFamily\":\"system-fonts\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":31,\"textColor\":\"white\",\"className\":\"is-style-customnav\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\"},\"style\":{\"typography\":{\"fontSize\":\"14px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','header','','publish','closed','closed','','header','','','2022-12-29 00:35:41','2022-12-28 16:35:41','',0,'http://shadrin14323.local/header/',0,'wp_template_part','',0);
  589. INSERT INTO `wp_posts` VALUES (33,1,'2022-12-28 13:10:54','2022-12-28 05:10:54','','Default Kit','','inherit','closed','closed','','14-revision-v1','','','2022-12-28 13:10:54','2022-12-28 05:10:54','',14,'http://shadrin14323.local/?p=33',0,'revision','',0);
  590. INSERT INTO `wp_posts` VALUES (34,1,'2022-12-28 13:10:54','2022-12-28 05:10:54','<!-- wp:navigation-link {\"label\":\"Главная\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->\n\n<!-- wp:navigation-link {\"label\":\"О нас\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->\n\n<!-- wp:navigation-link {\"label\":\"Связь\",\"url\":\"#\",\"kind\":\"custom\",\"isTopLevelLink\":true} /-->','навигация','','inherit','closed','closed','','31-revision-v1','','','2022-12-28 13:10:54','2022-12-28 05:10:54','',31,'http://shadrin14323.local/?p=34',0,'revision','',0);
  591. INSERT INTO `wp_posts` VALUES (35,1,'2022-12-28 14:52:57','2022-12-28 06:52:57','','мокап-2','','inherit','open','closed','','%d0%bc%d0%be%d0%ba%d0%b0%d0%bf-2','','','2022-12-28 14:52:57','2022-12-28 06:52:57','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2.png',0,'attachment','image/png',0);
  592. INSERT INTO `wp_posts` VALUES (36,1,'2022-12-28 14:53:24','2022-12-28 06:53:24','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}},\"layout\":{\"wideSize\":\"1140px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"36px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\",\"fontFamily\":\"system-fonts\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":31,\"textColor\":\"white\",\"className\":\"is-style-customnav\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\"},\"style\":{\"typography\":{\"fontSize\":\"14px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','header','','inherit','closed','closed','','32-revision-v1','','','2022-12-28 14:53:24','2022-12-28 06:53:24','',32,'http://shadrin14323.local/?p=36',0,'revision','',0);
  593. INSERT INTO `wp_posts` VALUES (37,1,'2022-12-28 14:53:24','2022-12-28 06:53:24','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2.png\",\"id\":35,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.5},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-35\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Мобильное приложение для фитнеса</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Getting Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Future Concept.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3 has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">The Big Ideas.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Creative Solutions.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">OUR SERVICES FOR CLIENTS</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Digital Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">UI Design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Content Writing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Marketing Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Web Development</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Social Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Works</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Projects We Have Done</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"30px\",\"right\":\"30px\"}}},\"className\":\"is-style-custombuttonborder3 zeever-animate zeever-move-left zeever-delay-1\"} -->\n<div class=\"wp-block-button is-style-custombuttonborder3 zeever-animate zeever-move-left zeever-delay-1\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"padding-top:18px;padding-right:30px;padding-bottom:18px;padding-left:30px\">VIEW ALL →</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":84,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/technology-gadget-ear-font-audio-headphones-1237753-pxhere.com.webp\" alt=\"\" class=\"wp-image-84\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":81,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/cameras-optics-Point-and-shoot-camera-photograph-camera-camera-accessory-white-1618001-pxhere.com.webp\" alt=\"\" class=\"wp-image-81\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":85,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/watch-hand-car-wheel-time-hour-712324-pxhere.com.webp\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":80,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/cameras-optics-camera-accessory-camera-photograph-Point-and-shoot-camera-photography-1524315-pxhere.com.webp\" alt=\"\" class=\"wp-image-80\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">About</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">We Are Best Digital Agency Since 2008</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599048-pxhere.com.webp\",\"id\":112,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-112\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599048-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Team Work</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Committed and creative</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599057-pxhere.com.webp\",\"id\":113,\"dimRatio\":30,\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-113\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599057-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Philosophy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Trust pays off</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/computer-group-building-home-internet-office-945774-pxhere.com.webp\",\"id\":111,\"dimRatio\":30,\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-111\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/computer-group-building-home-internet-office-945774-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Office</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Somewhere on earth</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Who We Are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Our Vision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Our Mission</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Testimonials.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">FEEDBACK FROUM OUR CLIENTS</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"tagName\":\"main\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<main class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Latest News</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:capitalize\">CHECK OUT SOME OF OUR NEWS</h1>\n<!-- /wp:heading -->\n\n<!-- wp:query {\"queryId\":24,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"className\":\"zeever-post-template-gap\"} -->\n<div class=\"wp-block-query zeever-post-template-gap\"><!-- wp:post-template {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<!-- wp:post-featured-image {\"isLink\":true,\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"20px\"}}}} /-->\n\n<!-- wp:post-date {\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} /-->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}},\"fontSize\":\"large\"} /-->\n\n<!-- wp:post-excerpt {\"moreText\":\"Read More\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\",\"bottom\":\"20px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|zeever-secondary\"}}}},\"textColor\":\"zeever-bodytext\"} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></main>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Have any projects in mind?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 14:53:24','2022-12-28 06:53:24','',30,'http://shadrin14323.local/?p=37',0,'revision','',0);
  594. INSERT INTO `wp_posts` VALUES (38,1,'2022-12-28 14:54:39','2022-12-28 06:54:39','','мокап-2-2','','inherit','open','closed','','%d0%bc%d0%be%d0%ba%d0%b0%d0%bf-2-2','','','2022-12-28 14:54:39','2022-12-28 06:54:39','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2.jpg',0,'attachment','image/jpeg',0);
  595. INSERT INTO `wp_posts` VALUES (39,1,'2022-12-28 14:57:10','2022-12-28 06:57:10','','мокап-2-2-1','','inherit','open','closed','','%d0%bc%d0%be%d0%ba%d0%b0%d0%bf-2-2-1','','','2022-12-28 14:57:10','2022-12-28 06:57:10','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg',0,'attachment','image/jpeg',0);
  596. INSERT INTO `wp_posts` VALUES (40,1,'2022-12-28 14:57:39','2022-12-28 06:57:39','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Мобильное приложение для фитнеса</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Getting Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Future Concept.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3 has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">The Big Ideas.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Creative Solutions.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Services</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">OUR SERVICES FOR CLIENTS</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Digital Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">UI Design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Content Writing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Marketing Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Web Development</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Social Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Works</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Projects We Have Done</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"30px\",\"right\":\"30px\"}}},\"className\":\"is-style-custombuttonborder3 zeever-animate zeever-move-left zeever-delay-1\"} -->\n<div class=\"wp-block-button is-style-custombuttonborder3 zeever-animate zeever-move-left zeever-delay-1\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"padding-top:18px;padding-right:30px;padding-bottom:18px;padding-left:30px\">VIEW ALL →</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":84,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/technology-gadget-ear-font-audio-headphones-1237753-pxhere.com.webp\" alt=\"\" class=\"wp-image-84\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":81,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/cameras-optics-Point-and-shoot-camera-photograph-camera-camera-accessory-white-1618001-pxhere.com.webp\" alt=\"\" class=\"wp-image-81\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":85,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/watch-hand-car-wheel-time-hour-712324-pxhere.com.webp\" alt=\"\" class=\"wp-image-85\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":80,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/cameras-optics-camera-accessory-camera-photograph-Point-and-shoot-camera-photography-1524315-pxhere.com.webp\" alt=\"\" class=\"wp-image-80\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">About</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">We Are Best Digital Agency Since 2008</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599048-pxhere.com.webp\",\"id\":112,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-112\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599048-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Team Work</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Committed and creative</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599057-pxhere.com.webp\",\"id\":113,\"dimRatio\":30,\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-113\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/employee-meeting-work-job-working-argentina-1599057-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Philosophy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Trust pays off</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/computer-group-building-home-internet-office-945774-pxhere.com.webp\",\"id\":111,\"dimRatio\":30,\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-111\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/computer-group-building-home-internet-office-945774-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Office</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Somewhere on earth</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Who We Are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Our Vision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Our Mission</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Testimonials.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">FEEDBACK FROUM OUR CLIENTS</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"tagName\":\"main\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<main class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Latest News</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:capitalize\">CHECK OUT SOME OF OUR NEWS</h1>\n<!-- /wp:heading -->\n\n<!-- wp:query {\"queryId\":24,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"className\":\"zeever-post-template-gap\"} -->\n<div class=\"wp-block-query zeever-post-template-gap\"><!-- wp:post-template {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<!-- wp:post-featured-image {\"isLink\":true,\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"20px\"}}}} /-->\n\n<!-- wp:post-date {\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} /-->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}},\"fontSize\":\"large\"} /-->\n\n<!-- wp:post-excerpt {\"moreText\":\"Read More\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\",\"bottom\":\"20px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|zeever-secondary\"}}}},\"textColor\":\"zeever-bodytext\"} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></main>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Have any projects in mind?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 14:57:39','2022-12-28 06:57:39','',30,'http://shadrin14323.local/?p=40',0,'revision','',0);
  597. INSERT INTO `wp_posts` VALUES (41,1,'2022-12-28 15:00:37','2022-12-28 07:00:37','','main_icon-2','','inherit','open','closed','','main_icon-2','','','2022-12-28 15:00:37','2022-12-28 07:00:37','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-2.png',0,'attachment','image/png',0);
  598. INSERT INTO `wp_posts` VALUES (42,1,'2022-12-28 15:40:53','2022-12-28 07:40:53','','main_icon-3','','inherit','open','closed','','main_icon-3','','','2022-12-28 15:40:53','2022-12-28 07:40:53','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-3.png',0,'attachment','image/png',0);
  599. INSERT INTO `wp_posts` VALUES (43,1,'2022-12-28 15:53:16','2022-12-28 07:53:16','','main_icon-4','','inherit','open','closed','','main_icon-4','','','2022-12-28 15:53:16','2022-12-28 07:53:16','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-4.png',0,'attachment','image/png',0);
  600. INSERT INTO `wp_posts` VALUES (44,1,'2022-12-28 15:53:54','2022-12-28 07:53:54','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}},\"layout\":{\"wideSize\":\"1140px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"36px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\",\"fontFamily\":\"system-fonts\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":31,\"textColor\":\"white\",\"className\":\"is-style-customnav\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\"},\"style\":{\"typography\":{\"fontSize\":\"14px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','header','','inherit','closed','closed','','32-revision-v1','','','2022-12-28 15:53:54','2022-12-28 07:53:54','',32,'http://shadrin14323.local/?p=44',0,'revision','',0);
  601. INSERT INTO `wp_posts` VALUES (45,1,'2022-12-28 15:57:23','2022-12-28 07:57:23','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}},\"layout\":{\"wideSize\":\"1140px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"33.33%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:33.33%\"><!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"36px\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\",\"fontFamily\":\"system-fonts\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"66.66%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:66.66%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":31,\"textColor\":\"white\",\"className\":\"is-style-customnav\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\"},\"style\":{\"typography\":{\"fontSize\":\"14px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','header','','inherit','closed','closed','','32-revision-v1','','','2022-12-28 15:57:23','2022-12-28 07:57:23','',32,'http://shadrin14323.local/?p=45',0,'revision','',0);
  602. INSERT INTO `wp_posts` VALUES (46,1,'2022-12-28 22:09:17','2022-12-28 14:09:17','','iPhone 11 Pro Mockups by Asylab','iPhone 11 Pro Mockups by Asylab','inherit','open','closed','','iphone-11-pro-mockups-by-asylab','','','2022-12-28 22:09:17','2022-12-28 14:09:17','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg',0,'attachment','image/jpeg',0);
  603. INSERT INTO `wp_posts` VALUES (47,1,'2022-12-28 22:12:27','2022-12-28 14:12:27','','мокап-3','','inherit','open','closed','','%d0%bc%d0%be%d0%ba%d0%b0%d0%bf-3','','','2022-12-28 22:12:27','2022-12-28 14:12:27','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg',0,'attachment','image/jpeg',0);
  604. INSERT INTO `wp_posts` VALUES (48,1,'2022-12-28 22:12:34','2022-12-28 14:12:34','','мокап-4','','inherit','open','closed','','%d0%bc%d0%be%d0%ba%d0%b0%d0%bf-4','','','2022-12-28 22:12:34','2022-12-28 14:12:34','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg',0,'attachment','image/jpeg',0);
  605. INSERT INTO `wp_posts` VALUES (49,1,'2022-12-28 22:16:38','2022-12-28 14:16:38','','Samsung Galaxy S10 Mockups by Asylab','Samsung Galaxy S10 Mockups by Asylab','inherit','open','closed','','samsung-galaxy-s10-mockups-by-asylab','','','2022-12-28 22:16:38','2022-12-28 14:16:38','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg',0,'attachment','image/jpeg',0);
  606. INSERT INTO `wp_posts` VALUES (50,1,'2022-12-28 22:22:04','2022-12-28 14:22:04','','картинка-йога','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%b9%d0%be%d0%b3%d0%b0','','','2022-12-28 22:22:04','2022-12-28 14:22:04','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg',0,'attachment','image/jpeg',0);
  607. INSERT INTO `wp_posts` VALUES (51,1,'2022-12-28 22:25:13','2022-12-28 14:25:13','','картинка-дома','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%b4%d0%be%d0%bc%d0%b0','','','2022-12-28 22:25:13','2022-12-28 14:25:13','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg',0,'attachment','image/jpeg',0);
  608. INSERT INTO `wp_posts` VALUES (52,1,'2022-12-28 22:26:16','2022-12-28 14:26:16','','картинка-зал','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%b7%d0%b0%d0%bb','','','2022-12-28 22:26:16','2022-12-28 14:26:16','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg',0,'attachment','image/jpeg',0);
  609. INSERT INTO `wp_posts` VALUES (53,1,'2022-12-28 22:36:36','2022-12-28 14:36:36','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customboxshadow zeever-animate zeever-move-up zeever-delay-3 has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Digital Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">UI Design</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Content Writing</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Marketing Strategy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Web Development</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Social Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Lorem ipsum dolor sit amet, consectet adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"tagName\":\"main\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<main class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Скачать</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:capitalize\">CHECK OUT SOME OF OUR NEWS</h1>\n<!-- /wp:heading -->\n\n<!-- wp:query {\"queryId\":24,\"query\":{\"perPage\":3,\"pages\":0,\"offset\":0,\"postType\":\"post\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"className\":\"zeever-post-template-gap\"} -->\n<div class=\"wp-block-query zeever-post-template-gap\"><!-- wp:post-template {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<!-- wp:post-featured-image {\"isLink\":true,\"align\":\"wide\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"20px\"}}}} /-->\n\n<!-- wp:post-date {\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} /-->\n\n<!-- wp:post-title {\"isLink\":true,\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}},\"fontSize\":\"large\"} /-->\n\n<!-- wp:post-excerpt {\"moreText\":\"Read More\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\",\"bottom\":\"20px\"}},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|zeever-secondary\"}}}},\"textColor\":\"zeever-bodytext\"} /-->\n<!-- /wp:post-template --></div>\n<!-- /wp:query --></main>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Have any projects in mind?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 22:36:36','2022-12-28 14:36:36','',30,'http://shadrin14323.local/?p=53',0,'revision','',0);
  610. INSERT INTO `wp_posts` VALUES (54,1,'2022-12-28 22:54:07','2022-12-28 14:54:07','','main_icon-5','','inherit','open','closed','','main_icon-5','','','2022-12-28 22:54:07','2022-12-28 14:54:07','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5.png',0,'attachment','image/png',0);
  611. INSERT INTO `wp_posts` VALUES (55,1,'2022-12-28 22:58:24','2022-12-28 14:58:24','','main_icon-5','','inherit','open','closed','','main_icon-5-2','','','2022-12-28 22:58:24','2022-12-28 14:58:24','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png',0,'attachment','image/png',0);
  612. INSERT INTO `wp_posts` VALUES (56,1,'2022-12-28 23:00:37','2022-12-28 15:00:37','','main_icon-6','','inherit','open','closed','','main_icon-6','','','2022-12-28 23:00:37','2022-12-28 15:00:37','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-6.png',0,'attachment','image/png',0);
  613. INSERT INTO `wp_posts` VALUES (57,1,'2022-12-28 23:02:16','2022-12-28 15:02:16','','main_icon-7','','inherit','open','closed','','main_icon-7','','','2022-12-28 23:02:16','2022-12-28 15:02:16','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-7.png',0,'attachment','image/png',0);
  614. INSERT INTO `wp_posts` VALUES (58,1,'2022-12-28 23:02:24','2022-12-28 15:02:24','','main_icon-8','','inherit','open','closed','','main_icon-8','','','2022-12-28 23:02:24','2022-12-28 15:02:24','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-8.png',0,'attachment','image/png',0);
  615. INSERT INTO `wp_posts` VALUES (59,1,'2022-12-28 23:02:42','2022-12-28 15:02:42','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"blob:http://shadrin14323.local/0a8114b2-ceb9-47b7-9ae3-89c69325c8fb\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"blob:http://shadrin14323.local/dfeb304d-e13c-4d63-a30f-1307bd8675b4\" alt=\"\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(199, 120, 0)\",\"rgb(253, 255, 120)\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 23:02:42','2022-12-28 15:02:42','',30,'http://shadrin14323.local/?p=59',0,'revision','',0);
  616. INSERT INTO `wp_posts` VALUES (60,1,'2022-12-28 23:06:25','2022-12-28 15:06:25','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button /--></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\"}} -->\n<div class=\"wp-block-group\"></div>\n<!-- /wp:group --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(199, 120, 0)\",\"rgb(253, 255, 120)\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 23:06:25','2022-12-28 15:06:25','',30,'http://shadrin14323.local/?p=60',0,'revision','',0);
  617. INSERT INTO `wp_posts` VALUES (61,1,'2022-12-28 23:31:34','2022-12-28 15:31:34','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button /--></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":94,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-hair-photography-summer-1177664-pxhere.com.webp\" alt=\"\" class=\"wp-image-94\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">John Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Designer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":97,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-people-girl-woman-hair-photography-1172571-pxhere.com.webp\" alt=\"\" class=\"wp-image-97\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Jennifer Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Marketing</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":96,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/person-girl-woman-hair-photography-portrait-108386-pxhere.com.webp\" alt=\"\" class=\"wp-image-96\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Claudia Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Consultant</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque consequat bibendum turpis sit amet pretium. Nunc ut dui ornare, vulputate augue sed, varius velit.</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":95,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/man-person-people-lawn-photography-model-1220414-pxhere.com.webp\" alt=\"\" class=\"wp-image-95\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Steven Doe</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Programmer</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"backgroundColor\":\"zeever-border\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-zeever-border-background-color has-background\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":\"unset\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-primary-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Реклам</strong>а</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>3 поста в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Всего 3 собственных комплекса и 10 собственных упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Частичный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>Google Play</strong></a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>App Store</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"color\":{\"background\":\"#ffe785\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#ffe785\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#f09000\",\"#feff00\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-third\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-third-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Никакой рекламы</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число постов в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число собственных комплексов и упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Выделение вашего профиля и продвижение ваших постов в сети</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Полный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Приоритет в тех. поддержке</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>200 руб/месяц</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\",\"id\":49,\"dimRatio\":90,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-90 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-49\" alt=\"\" src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/laptop-notebook-computer-smartphone-mobile-writing-764384-pxhere.com.webp\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"},\"style\":{\"spacing\":{\"margin\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:40px\"><!-- wp:button {\"style\":{\"border\":{\"radius\":\"0px\"},\"spacing\":{\"padding\":{\"top\":\"15px\",\"right\":\"40px\",\"bottom\":\"15px\",\"left\":\"40px\"}}},\"className\":\"is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill is-style-custombuttonborder3 zeever-animate zeever-move-up zeever-delay-1 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:15px;padding-right:40px;padding-bottom:15px;padding-left:40px\">Get Started</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-28 23:31:34','2022-12-28 15:31:34','',30,'http://shadrin14323.local/?p=61',0,'revision','',0);
  618. INSERT INTO `wp_posts` VALUES (62,1,'2022-12-28 23:49:24','2022-12-28 15:49:24','','картинка-телефон','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%82%d0%b5%d0%bb%d0%b5%d1%84%d0%be%d0%bd','','','2022-12-28 23:49:24','2022-12-28 15:49:24','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg',0,'attachment','image/jpeg',0);
  619. INSERT INTO `wp_posts` VALUES (63,1,'2022-12-28 23:52:34','2022-12-28 15:52:34','','картинка-макс','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%bc%d0%b0%d0%ba%d1%81','','','2022-12-28 23:52:34','2022-12-28 15:52:34','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-макс.jpg',0,'attachment','image/jpeg',0);
  620. INSERT INTO `wp_posts` VALUES (64,1,'2022-12-28 23:53:18','2022-12-28 15:53:18','','картинка-макс','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%bc%d0%b0%d0%ba%d1%81-2','','','2022-12-28 23:53:18','2022-12-28 15:53:18','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-макс-edited.jpg',0,'attachment','image/jpeg',0);
  621. INSERT INTO `wp_posts` VALUES (65,1,'2022-12-28 23:54:42','2022-12-28 15:54:42','','картинка-телефон-1','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%82%d0%b5%d0%bb%d0%b5%d1%84%d0%be%d0%bd-1','','','2022-12-28 23:54:42','2022-12-28 15:54:42','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-1.jpg',0,'attachment','image/jpeg',0);
  622. INSERT INTO `wp_posts` VALUES (66,1,'2022-12-28 23:54:59','2022-12-28 15:54:59','','картинка-телефон-1','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%82%d0%b5%d0%bb%d0%b5%d1%84%d0%be%d0%bd-1-2','','','2022-12-28 23:54:59','2022-12-28 15:54:59','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-1-edited.jpg',0,'attachment','image/jpeg',0);
  623. INSERT INTO `wp_posts` VALUES (67,1,'2022-12-29 00:00:52','2022-12-28 16:00:52','','картинка-джоджо','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%b4%d0%b6%d0%be%d0%b4%d0%b6%d0%be','','','2022-12-29 00:00:52','2022-12-28 16:00:52','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-джоджо.jpg',0,'attachment','image/jpeg',0);
  624. INSERT INTO `wp_posts` VALUES (68,1,'2022-12-29 00:01:08','2022-12-28 16:01:08','','картинка-джоджо','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d0%b4%d0%b6%d0%be%d0%b4%d0%b6%d0%be-2','','','2022-12-29 00:01:08','2022-12-28 16:01:08','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-джоджо-edited.jpg',0,'attachment','image/jpeg',0);
  625. INSERT INTO `wp_posts` VALUES (69,1,'2022-12-29 00:04:32','2022-12-28 16:04:32','','картинка-эш','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%8d%d1%88','','','2022-12-29 00:04:32','2022-12-28 16:04:32','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-эш.jpg',0,'attachment','image/jpeg',0);
  626. INSERT INTO `wp_posts` VALUES (70,1,'2022-12-29 00:04:48','2022-12-28 16:04:48','','картинка-эш','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%8d%d1%88-2','','','2022-12-29 00:04:48','2022-12-28 16:04:48','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-эш-edited.jpg',0,'attachment','image/jpeg',0);
  627. INSERT INTO `wp_posts` VALUES (71,1,'2022-12-29 00:06:16','2022-12-28 16:06:16','','картинка-телефон-2','','inherit','open','closed','','%d0%ba%d0%b0%d1%80%d1%82%d0%b8%d0%bd%d0%ba%d0%b0-%d1%82%d0%b5%d0%bb%d0%b5%d1%84%d0%be%d0%bd-2','','','2022-12-29 00:06:16','2022-12-28 16:06:16','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-2.jpg',0,'attachment','image/jpeg',0);
  628. INSERT INTO `wp_posts` VALUES (72,1,'2022-12-29 00:06:59','2022-12-28 16:06:59','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"><!-- wp:button /--></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Решил подкачаться. Начал ходить в клуб бокса при вузе, а меня там разве что пинали. Ещё и деньги за это просили. Закалился, конечно, но хотелось бы больше.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Скачал приложение WorldFitness и накачался за каких-то полгода в домашних условиях! Базовые комплексы очень хорошие!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":64,\"width\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-макс-edited.jpg\" alt=\"\" class=\"wp-image-64\" style=\"border-radius:50px\" width=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Максим</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Разработчик ПО</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Мне обещали, что за хороший отзыв меня разместят на сайте. Так вот говорю: приложение - бомба! Качайте все!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Нет, серьёзно, вы видели мою бицуху? Да я в окно для аватарки не поместился, пришлось растягивать! Это ли не показатель? Качался с помощью WorldFitness!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":71,\"width\":150,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-2.jpg\" alt=\"\" class=\"wp-image-71\" style=\"border-radius:50px\" width=\"150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Билли</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Мастер DnD</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Тренирую зверушек для победы в крупном турнире. Любим с друзьями походы, так что часто надолго уезжаю из города. Но тренировки то надо продолжать! Так что скачал приложение и в конструкторе собирал нужные комплексы, которые затем скидывал своим \"ученикам\". Очень удобно. Ещё и за их достижениями следил. В турнире мы в итоге победили!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":70,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-эш-edited.jpg\" alt=\"\" class=\"wp-image-70\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Эш</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Тренер покемонов</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Мать чем-то заболела. Дед сказал, что дело в каком-то чудном подростке из Египта, которому надо срочно надавать по жопе. Ну, скачал ваше приложение и за месяц поднабрал массу. Того парня одолеть смог! А мать, чтобы в моё отсутствие совсем не померла, занималась йогой. Тоже с помощью вашего приложения. Осталась довольна!</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":68,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-джоджо-edited.jpg\" alt=\"\" class=\"wp-image-68\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Жотаро</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Крестоносец звёздной пыли</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"backgroundColor\":\"zeever-third\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":\"unset\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-primary-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Реклам</strong>а</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>3 поста в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Всего 3 собственных комплекса и 10 собственных упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Частичный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>Google Play</strong></a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>App Store</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"color\":{\"background\":\"#ffe785\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#ffe785\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#f09000\",\"#feff00\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-third\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-third-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Никакой рекламы</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число постов в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число собственных комплексов и упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Выделение вашего профиля и продвижение ваших постов в сети</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Полный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Приоритет в тех. поддержке</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>200 руб/месяц</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\",\"id\":62,\"dimRatio\":70,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-70 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-62\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">8 (800) 555-35-35</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">г. Москва, ул. Пушкина, 17а</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-29 00:06:59','2022-12-28 16:06:59','',30,'http://shadrin14323.local/?p=72',0,'revision','',0);
  629. INSERT INTO `wp_posts` VALUES (73,1,'2022-12-29 00:21:20','2022-12-28 16:21:20','{\"styles\":{\"elements\":{\"link\":{\"color\":{\"text\":\"#9fffaf\"}}}},\"settings\":{\"color\":{\"palette\":{\"theme\":[{\"slug\":\"zeever-primary\",\"color\":\"#FCFCFC\",\"name\":\"Primary\"},{\"slug\":\"zeever-secondary\",\"color\":\"#9fffaf\",\"name\":\"Secondary\"},{\"slug\":\"zeever-third\",\"color\":\"#121212\",\"name\":\"Third\"},{\"slug\":\"zeever-bodytext\",\"color\":\"#D0D0D0\",\"name\":\"Body Text\"},{\"slug\":\"zeever-bgsoft\",\"color\":\"#0B0C10\",\"name\":\"Background Soft\"},{\"slug\":\"zeever-border\",\"color\":\"#363636\",\"name\":\"Border\"},{\"slug\":\"zeever-button-border\",\"color\":\"#9be1ff\",\"name\":\"Button Border\"},{\"slug\":\"zeever-form\",\"color\":\"#252525\",\"name\":\"Form\"}]}}},\"isGlobalStylesUserThemeJSON\":true,\"version\":2}','Custom Styles','','inherit','closed','closed','','26-revision-v1','','','2022-12-29 00:21:20','2022-12-28 16:21:20','',26,'http://shadrin14323.local/?p=73',0,'revision','',0);
  630. INSERT INTO `wp_posts` VALUES (74,1,'2022-12-29 00:21:20','2022-12-28 16:21:20','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":false,\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\",\"id\":39,\"dimRatio\":0,\"focalPoint\":{\"x\":0.5,\"y\":0.1},\"minHeight\":563,\"contentPosition\":\"center center\",\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}}} -->\n<div class=\"wp-block-cover\" style=\"padding-bottom:180px;min-height:563px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-39\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-2-2-1.jpg\" style=\"object-position:50% 10%\" data-object-fit=\"cover\" data-object-position=\"50% 10%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:template-part {\"slug\":\"header\",\"theme\":\"zeever\"} /-->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"200px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:200px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"700px\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:700px\"><!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"40px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-1 is-style-default\",\"fontSize\":\"tiny\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-1 is-style-default has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"margin-right:0px;margin-bottom:40px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">соц. сеть и Мобильное приложение для фитнеса<br><br>Все ваши тренировки и достижения в одном месте</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"capitalize\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"top\":\"23px\"}}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"heading-1\"} -->\n<h1 class=\"zeever-animate zeever-move-right zeever-delay-3 has-zeever-primary-color has-text-color has-heading-1-font-size\" style=\"margin-top:23px;margin-right:0px;font-style:normal;font-weight:700;line-height:1.2;text-transform:capitalize\">worldFitness</h1>\n<!-- /wp:heading -->\n\n<!-- wp:buttons {\"style\":{\"spacing\":{\"margin\":{\"top\":\"60px\"}}}} -->\n<div class=\"wp-block-buttons\" style=\"margin-top:60px\"><!-- wp:button {\"style\":{\"spacing\":{\"padding\":{\"top\":\"18px\",\"bottom\":\"18px\",\"left\":\"40px\",\"right\":\"40px\"}},\"border\":{\"radius\":\"0px\"}},\"className\":\"is-style-custombuttonfill zeever-animate zeever-animate zeever-move-right zeever-delay-1-move-right zeever-animate zeever-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3\",\"fontFamily\":\"helvetica-arial\"} -->\n<div class=\"wp-block-button is-style-custombuttonfill zeever-animate zeever-move-right zeever-delay-1-move-right zeever-delay-1-delay-5 is-style-custombuttonborder3 has-helvetica-arial-font-family\"><a class=\"wp-block-button__link wp-element-button\" href=\"#\" style=\"border-radius:0px;padding-top:18px;padding-right:40px;padding-bottom:18px;padding-left:40px\">Установить</a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"180px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-bottom:180px\"><!-- wp:columns {\"style\":{\"spacing\":{\"padding\":{\"left\":\"10px\",\"right\":\"10px\"}}},\"className\":\"zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-columns zeever-margin-top-n80 zeever-animate zeever-move-up zeever-delay-1\" style=\"padding-right:10px;padding-left:10px\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1\",\"layout\":{\"inherit\":false,\"contentSize\":\"\"}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":127,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 231, 133)\",\"rgb(255, 231, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/concept.webp\" alt=\"\" class=\"wp-image-127\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Делитесь планами тренировок с другими</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Больше никаких диктовок под запись. Отныне вы можете сохранить свой комплекс упражнений в удобном виде, а затем переслать его другим пользователям.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"border\":{\"width\":\"2px\",\"style\":\"solid\"},\"color\":{\"background\":\"#121212\"}},\"borderColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3 is-style-customboxshadow has-border-color has-zeever-secondary-border-color has-background\" style=\"border-style:solid;border-width:2px;background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":128,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#ff8585\",\"rgb(255, 133, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ideas.webp\" alt=\"\" class=\"wp-image-128\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Весь спорт в одном месте</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Звёзды спорта, крупнейшие фитнес-клубы, знаменитые тренера и все ваши друзья-спортсмены сидят здесь! Обменивайтесь со всеми ними достижениями, тренировочными комплексами и новостями.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"bottom\":\"50px\",\"right\":\"30px\",\"left\":\"30px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5\",\"layout\":{\"inherit\":false}} -->\n<div class=\"wp-block-group is-style-customborderhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:30px;padding-bottom:50px;padding-left:30px\"><!-- wp:image {\"id\":129,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#9be1ff\",\"rgb(155, 225, 255)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/creative.webp\" alt=\"\" class=\"wp-image-129\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\"}},\"typography\":{\"fontSize\":\"28px\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\"} -->\n<h2 class=\"has-text-align-left has-zeever-primary-color has-text-color\" style=\"margin-top:30px;font-size:28px;font-style:normal;font-weight:600\">Сами создавайте свои тренировки</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Приложение имеет встроенный конструктор для создания собственных комплексов тренировок из заготовленных нами или вами упражнений</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Для кого и как мы работаем</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Наше решение помогает следить за физическим здоровьем всем и везде</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"verticalAlignment\":\"bottom\"} -->\n<div class=\"wp-block-column is-vertically-aligned-bottom\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\",\"id\":51,\"dimRatio\":30,\"customOverlayColor\":\"#050505\",\"focalPoint\":{\"x\":0.55,\"y\":0.52},\"minHeight\":580,\"minHeightUnit\":\"px\",\"isDark\":false,\"style\":{\"spacing\":{\"padding\":{\"left\":\"20px\"}}}} -->\n<div class=\"wp-block-cover is-light\" style=\"padding-left:20px;min-height:580px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\" style=\"background-color:#050505\"></span><img class=\"wp-block-cover__image-background wp-image-51\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-дома.jpg\" style=\"object-position:55% 52%\" data-object-fit=\"cover\" data-object-position=\"55% 52%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"480px\"} -->\n<div style=\"height:480px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Дом</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Даже в домашних условиях из своего тела можно выжать всё</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:20px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\",\"id\":52,\"dimRatio\":30,\"focalPoint\":{\"x\":0.58,\"y\":1},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-52\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-зал.jpg\" style=\"object-position:58% 100%\" data-object-fit=\"cover\" data-object-position=\"58% 100%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Зал</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Хоть с тренером, хоть без, мы предложим вам комплекс под любой инвентарь</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\",\"id\":50,\"dimRatio\":30,\"focalPoint\":{\"x\":0.56,\"y\":0.53},\"minHeight\":280,\"isDark\":false} -->\n<div class=\"wp-block-cover is-light\" style=\"min-height:280px\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-30 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-50\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-йога.jpg\" style=\"object-position:56% 53%\" data-object-fit=\"cover\" data-object-position=\"56% 53%\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":\"140px\"} -->\n<div style=\"height:140px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"large\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-1 has-zeever-primary-color has-text-color has-large-font-size\" style=\"font-style:normal;font-weight:600\">Йога</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-zeever-primary-color has-text-color has-tiny-font-size\">Занимайтесь индийскими практиками при любых условиях</p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:cover --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"80px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:80px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"},\"color\":{\"text\":\"#ffe785\"}},\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-text-color\" style=\"color:#ffe785;font-size:21px\">Для одиночек</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Мы предоставляем множество готовых комплексов и упражнений на любые группы мышц, а удобный таймер не только будет вас контролировать, но и подскажет что делать дальше.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"},\"color\":{\"text\":\"#ff8585\"}},\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-text-color\" style=\"color:#ff8585;font-size:21px\">Для тренеров</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Зачем хранить все тренировки в заметках и тетрадях, когда можно хранить их в своём телефоне и с удобным конструктором? Более того, всего парой нажатий позволит вам поделиться нужным комплексом тренировок с любым другим пользователем. Больше никаких диктовок под запись!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"right\":\"60px\"}}}} -->\n<div class=\"wp-block-column\" style=\"padding-right:60px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontSize\":\"21px\"}},\"textColor\":\"zeever-button-border\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<h2 class=\"zeever-animate zeever-move-up zeever-delay-1 has-zeever-button-border-color has-text-color\" style=\"font-size:21px\">Для спортсменов</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<p class=\"has-text-align-left zeever-animate zeever-move-up zeever-delay-3 has-zeever-bodytext-color has-text-color\">Хотите поставить новый рекорд? Наше приложение с радостью сохранит все ваши предыдущие достижения и сообщит о новых. А может вы знамениты и хотите делиться своими новостями с фанатами? Тогда наша социальная сеть создана для вас и ваших новостей, достижений или тренировок на показ.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:100px;padding-bottom:60px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\" style=\"font-style:normal;font-weight:600\">Наше приложение</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Ознакомтесь с нашим приложением получше</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:buttons {\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"color\":{\"background\":\"#121212\"},\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:image {\"id\":46,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-1.jpg\" alt=\"\" class=\"wp-image-46\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:image {\"id\":47,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-3.jpg\" alt=\"\" class=\"wp-image-47\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:image {\"id\":48,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-4.jpg\" alt=\"\" class=\"wp-image-48\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:image {\"id\":49,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/мокап-5.jpg\" alt=\"\" class=\"wp-image-49\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"zeever-bgsoft\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-bgsoft-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"zeever-primary\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-zeever-primary-color has-text-color has-heading-2-font-size\">Возможности VIP</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Купите VIP доступ к приложению, чтобы получить новые возможности</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":135,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 231, 133)\",\"rgb(255, 231, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/strategy.webp\" alt=\"\" class=\"wp-image-135\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"color\":{\"text\":\"#ffe785\"}},\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-text-color has-heading-3-font-size\" style=\"color:#ffe785;margin-top:30px;margin-bottom:20px\">Станьте звездой сети</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Вы будете выделяться на фоне обычных пользователей, а ваши посты будут продвигаться в рекомендации чаще.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"0px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottom zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:0px;padding-left:40px\"><!-- wp:image {\"id\":130,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(1, 1, 1)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/ui-design.webp\" alt=\"\" class=\"wp-image-130\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"black\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-black-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Раскройте все упражнения</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Полное снятие ограничений на использование комплексов и упражнений.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bgsoft\"} -->\n<p class=\"has-text-align-left has-zeever-bgsoft-color has-text-color\">Условие не распространяется на продукты, созданные не группой WorldFitness.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":133,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(155, 225, 255)\",\"rgb(155, 225, 255)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/content.webp\" alt=\"\" class=\"wp-image-133\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"30px\",\"bottom\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-button-border\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-button-border-color has-text-color has-heading-3-font-size\" style=\"margin-top:30px;margin-bottom:20px;font-style:normal;font-weight:600\">Никаких ограничений для ваших личных творений</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontSize\":\"14px\"}},\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\" style=\"font-size:14px\">Больше никаких ограничений на максимальное количество комплексов/упражнений, созданных вами, а также никаких ограничений на максимальную длину комплексов.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\"}}},\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"layout\":{\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group zeever-animate zeever-move-up zeever-delay-3\" style=\"padding-top:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-1 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":131,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(0, 0, 0)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/marketing.webp\" alt=\"\" class=\"wp-image-131\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-third\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-third-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Ваш голос важен</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-third\"} -->\n<p class=\"has-text-align-left has-zeever-third-color has-text-color\">Мы внимательно проследим за каждым вашим репортом, а тех. поддержка всегда будет вам рада.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}},\"color\":{\"background\":\"#121212\"}},\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-3 has-background\" style=\"background-color:#121212;padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":132,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"rgb(255, 133, 133)\",\"rgb(255, 133, 133)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/web.webp\" alt=\"\" class=\"wp-image-132\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"},\"color\":{\"text\":\"#ff8585\"}},\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-text-color has-heading-3-font-size\" style=\"color:#ff8585;margin-top:20px;font-style:normal;font-weight:600\">Пишите сколько влезет</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-bodytext\"} -->\n<p class=\"has-text-align-left has-zeever-bodytext-color has-text-color\">Снятие ограничения на максимальное число постов в день.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"style\":{\"spacing\":{\"padding\":{\"top\":\"50px\",\"right\":\"40px\",\"bottom\":\"50px\",\"left\":\"40px\"}}},\"backgroundColor\":\"zeever-secondary\",\"className\":\"is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column is-style-customborderbottomhover zeever-animate zeever-move-up zeever-delay-5 has-zeever-secondary-background-color has-background\" style=\"padding-top:50px;padding-right:40px;padding-bottom:50px;padding-left:40px\"><!-- wp:image {\"id\":134,\"width\":50,\"height\":50,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#000000\",\"rgb(0, 0, 0)\"]}}} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/social-media.webp\" alt=\"\" class=\"wp-image-134\" width=\"50\" height=\"50\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"20px\"}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"600\"}},\"textColor\":\"zeever-third\",\"fontSize\":\"heading-3\"} -->\n<h2 class=\"has-text-align-left has-zeever-third-color has-text-color has-heading-3-font-size\" style=\"margin-top:20px;font-style:normal;font-weight:600\">Забудьте о рекламе</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"left\",\"textColor\":\"zeever-third\"} -->\n<p class=\"has-text-align-left has-zeever-third-color has-text-color\">Полное отключение рекламы сторонних продуктов в нашем приложении.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"60px\"}}},\"backgroundColor\":\"zeever-third\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\" style=\"padding-top:100px;padding-bottom:60px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"left\",\"textColor\":\"white\",\"className\":\"is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-left is-style-lineseparator zeever-animate zeever-move-right zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\">Отзывы</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"textTransform\":\"uppercase\"}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-right zeever-delay-3\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-left zeever-animate zeever-move-right zeever-delay-3 has-zeever-secondary-color has-text-color has-tiny-font-size\" style=\"font-style:normal;font-weight:500;text-transform:uppercase\">Мнение наших клиентов о нас</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"100px\"}},\"color\":{\"background\":\"#121212\"}},\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#121212;padding-top:0px;padding-bottom:100px\"><!-- wp:columns {\"align\":\"full\"} -->\n<div class=\"wp-block-columns alignfull\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:group -->\n<div class=\"wp-block-group\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-1\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-1\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Решил подкачаться. Начал ходить в клуб бокса при вузе, а меня там разве что пинали. Ещё и деньги за это просили. Закалился, конечно, но хотелось бы больше.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Скачал приложение WorldFitness и накачался за каких-то полгода в домашних условиях! Базовые комплексы очень хорошие!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":64,\"width\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-макс-edited.jpg\" alt=\"\" class=\"wp-image-64\" style=\"border-radius:50px\" width=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Максим</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Разработчик ПО</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-3\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-3\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Мне обещали, что за хороший отзыв меня разместят на сайте. Так вот говорю: приложение - бомба! Качайте все!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Нет, серьёзно, вы видели мою бицуху? Да я в окно для аватарки не поместился, пришлось растягивать! Это ли не показатель? Качался с помощью WorldFitness!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":71,\"width\":150,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон-2.jpg\" alt=\"\" class=\"wp-image-71\" style=\"border-radius:50px\" width=\"150\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Билли</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Мастер DnD</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-5\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-5\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\">Тренирую зверушек для победы в крупном турнире. Любим с друзьями походы, так что часто надолго уезжаю из города. Но тренировки то надо продолжать! Так что скачал приложение и в конструкторе собирал нужные комплексы, которые затем скидывал своим \"ученикам\". Очень удобно. Ещё и за их достижениями следил. В турнире мы в итоге победили!</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":70,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-эш-edited.jpg\" alt=\"\" class=\"wp-image-70\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Эш</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Тренер покемонов</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"className\":\"zeever-animate zeever-move-up zeever-delay-7\"} -->\n<div class=\"wp-block-column zeever-animate zeever-move-up zeever-delay-7\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"40px\",\"right\":\"40px\",\"bottom\":\"80px\",\"left\":\"40px\"}},\"border\":{\"radius\":{\"topLeft\":\"0px\",\"topRight\":\"0px\",\"bottomLeft\":\"0px\",\"bottomRight\":\"0px\"},\"style\":\"solid\",\"width\":\"1px\"}},\"borderColor\":\"zeever-border\",\"backgroundColor\":\"black\"} -->\n<div class=\"wp-block-group has-border-color has-zeever-border-border-color has-black-background-color has-background\" style=\"border-style:solid;border-width:1px;border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-left-radius:0px;border-bottom-right-radius:0px;padding-top:40px;padding-right:40px;padding-bottom:80px;padding-left:40px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":136,\"width\":60,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/themes/zeever/assets/img/quote.webp\" alt=\"\" class=\"wp-image-136\" width=\"60\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"textColor\":\"zeever-bodytext\",\"fontSize\":\"tiny\"} -->\n<p class=\"has-text-align-center has-zeever-bodytext-color has-text-color has-tiny-font-size\"><em>Мать чем-то заболела. Дед сказал, что дело в каком-то чудном подростке из Египта, которому надо срочно надавать по жопе. Ну, скачал ваше приложение и за месяц поднабрал массу. Того парня одолеть смог! А мать, чтобы в моё отсутствие совсем не померла, занималась йогой. Тоже с помощью вашего приложения. Осталась довольна!</em></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:group -->\n\n<!-- wp:image {\"align\":\"center\",\"id\":68,\"width\":70,\"height\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"border\":{\"radius\":\"50px\"}},\"className\":\"zeever-margin-top-n40 is-style-rounded\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized has-custom-border zeever-margin-top-n40 is-style-rounded\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-джоджо-edited.jpg\" alt=\"\" class=\"wp-image-68\" style=\"border-radius:50px\" width=\"70\" height=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"top\":\"15px\"}}},\"textColor\":\"white\",\"fontSize\":\"tiny\"} -->\n<h2 class=\"has-text-align-center has-white-color has-text-color has-tiny-font-size\" style=\"margin-top:15px\">Жотаро</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"fontSize\":\"14px\",\"lineHeight\":\"0\"}},\"textColor\":\"zeever-bodytext\"} -->\n<h2 class=\"has-text-align-center has-zeever-bodytext-color has-text-color\" style=\"font-size:14px;font-style:normal;font-weight:400;line-height:0\">Крестоносец звёздной пыли</h2>\n<!-- /wp:heading --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"inherit\":true,\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:heading {\"textAlign\":\"center\",\"level\":1,\"style\":{\"typography\":{\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":\"1.2\"},\"spacing\":{\"margin\":{\"right\":\"0px\",\"bottom\":\"60px\"}}},\"textColor\":\"zeever-secondary\",\"className\":\"zeever-animate zeever-move-up zeever-delay-3\",\"fontSize\":\"heading-2\"} -->\n<h1 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-3 has-zeever-secondary-color has-text-color has-heading-2-font-size\" style=\"margin-right:0px;margin-bottom:60px;font-style:normal;font-weight:500;line-height:1.2;text-transform:uppercase\">Начните пользоваться уже сейчас</h1>\n<!-- /wp:heading -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"backgroundColor\":\"zeever-third\",\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-zeever-third-background-color has-background\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":\"unset\"}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-primary\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-primary-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Реклам</strong>а</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>3 поста в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Всего 3 собственных комплекса и 10 собственных упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Частичный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>Google Play</strong></a></div>\n<!-- /wp:button -->\n\n<!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>App Store</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"width\":\"50%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:50%\"><!-- wp:group {\"style\":{\"color\":{\"background\":\"#ffe785\"}},\"layout\":{\"type\":\"flex\",\"orientation\":\"vertical\",\"justifyContent\":\"center\"}} -->\n<div class=\"wp-block-group has-background\" style=\"background-color:#ffe785\"><!-- wp:image {\"id\":55,\"width\":177,\"height\":177,\"sizeSlug\":\"full\",\"linkDestination\":\"none\",\"style\":{\"color\":{\"duotone\":[\"#f09000\",\"#feff00\"]}},\"className\":\"is-style-default\"} -->\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-5-edited.png\" alt=\"\" class=\"wp-image-55\" width=\"177\" height=\"177\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:list {\"textColor\":\"zeever-third\",\"fontSize\":\"tiny\"} -->\n<ul class=\"has-zeever-third-color has-text-color has-tiny-font-size\"><!-- wp:list-item -->\n<li><strong>Никакой рекламы</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число постов в день</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Неограниченное число собственных комплексов и упражнений</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Выделение вашего профиля и продвижение ваших постов в сети</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Полный доступ к комплексам и упражнениям от FitnessWorld</strong></li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li><strong>Приоритет в тех. поддержке</strong></li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"><!-- wp:button {\"textColor\":\"zeever-third\",\"style\":{\"color\":{\"background\":\"#9be1ff\"}}} -->\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-zeever-third-color has-text-color has-background wp-element-button\" style=\"background-color:#9be1ff\"><strong>200 руб/месяц</strong></a></div>\n<!-- /wp:button --></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:group -->\n\n<!-- wp:buttons -->\n<div class=\"wp-block-buttons\"></div>\n<!-- /wp:buttons --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->\n\n<!-- wp:cover {\"url\":\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\",\"id\":62,\"dimRatio\":70,\"overlayColor\":\"black\"} -->\n<div class=\"wp-block-cover\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-70 has-background-dim\"></span><img class=\"wp-block-cover__image-background wp-image-62\" alt=\"\" src=\"http://shadrin14323.local/wp-content/uploads/2022/12/картинка-телефон.jpg\" data-object-fit=\"cover\"/><div class=\"wp-block-cover__inner-container\"><!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"100px\",\"bottom\":\"100px\"}}},\"layout\":{\"wideSize\":\"1170px\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:100px;padding-bottom:100px\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:heading {\"textAlign\":\"center\",\"style\":{\"spacing\":{\"margin\":{\"bottom\":\"40px\",\"top\":\"40px\"}}},\"textColor\":\"white\",\"className\":\"zeever-animate zeever-move-up zeever-delay-1\",\"fontSize\":\"heading-2\"} -->\n<h2 class=\"has-text-align-center zeever-animate zeever-move-up zeever-delay-1 has-white-color has-text-color has-heading-2-font-size\" style=\"margin-top:40px;margin-bottom:40px\">Как с нами связаться?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">8 (800) 555-35-35</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"align\":\"center\",\"fontSize\":\"large\"} -->\n<p class=\"has-text-align-center has-large-font-size\">г. Москва, ул. Пушкина, 17а</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:social-links {\"size\":\"has-normal-icon-size\",\"align\":\"center\",\"className\":\"is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links aligncenter has-normal-icon-size is-style-iconsborderhover zeever-animate zeever-move-down zeever-delay-1\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div></div>\n<!-- /wp:cover -->\n\n<!-- wp:template-part {\"slug\":\"footer\",\"theme\":\"zeever\"} /-->','Главная страница','Отображает главную страницу.','inherit','closed','closed','','30-revision-v1','','','2022-12-29 00:21:20','2022-12-28 16:21:20','',30,'http://shadrin14323.local/?p=74',0,'revision','',0);
  631. INSERT INTO `wp_posts` VALUES (75,1,'2022-12-29 00:25:06','2022-12-28 16:25:06','','main_icon-9','','inherit','open','closed','','main_icon-9','','','2022-12-29 00:25:06','2022-12-28 16:25:06','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-9.png',0,'attachment','image/png',0);
  632. INSERT INTO `wp_posts` VALUES (76,1,'2022-12-29 00:28:50','2022-12-28 16:28:50','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"30px\",\"bottom\":\"0px\"}}},\"backgroundColor\":\"black\",\"layout\":{\"wideSize\":\"1170px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group has-black-background-color has-background\" style=\"padding-top:30px;padding-bottom:0px\"><!-- wp:columns {\"verticalAlignment\":\"top\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"300px\",\"style\":{\"spacing\":{\"padding\":{\"right\":\"40px\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"padding-right:40px;flex-basis:300px\"><!-- wp:image {\"align\":\"center\",\"id\":75,\"width\":149,\"height\":149,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-9.png\" alt=\"\" class=\"wp-image-75\" width=\"149\" height=\"149\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:site-title {\"textAlign\":\"center\",\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}},\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"lineHeight\":1,\"textTransform\":\"none\"},\"spacing\":{\"margin\":{\"top\":\"0\"}}},\"fontSize\":\"extra-large\"} /--></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"width\":\"200px\",\"style\":{\"spacing\":{\"padding\":{\"left\":\"60px\",\"top\":\"20px\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"padding-top:20px;padding-left:60px;flex-basis:200px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}},\"textColor\":\"white\",\"fontSize\":\"small\"} -->\n<h2 class=\"has-white-color has-text-color has-small-font-size\" style=\"font-style:normal;font-weight:500\"> Карта сайта</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\">Главная</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\">О нас</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph {\"style\":{\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\"} -->\n<p class=\"has-white-color has-text-color has-link-color\">Связь</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"top\",\"style\":{\"spacing\":{\"padding\":{\"top\":\"20px\",\"right\":\"20px\"}}}} -->\n<div class=\"wp-block-column is-vertically-aligned-top\" style=\"padding-top:20px;padding-right:20px\"><!-- wp:heading {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\"},\"spacing\":{\"margin\":{\"left\":\"25px\"}}},\"textColor\":\"white\",\"fontSize\":\"small\"} -->\n<h2 class=\"has-white-color has-text-color has-small-font-size\" style=\"margin-left:25px;font-style:normal;font-weight:500\">Наши контактные данные</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>г. Москва, ул. Пушкина, 17а</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>8 (800) 555-35-35</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>worldfitness@qmail.com</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:separator {\"backgroundColor\":\"zeever-third\",\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator has-text-color has-zeever-third-color has-alpha-channel-opacity has-zeever-third-background-color has-background is-style-wide\"/>\n<!-- /wp:separator -->\n\n<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"top\":\"0px\",\"bottom\":\"10px\"}}}} -->\n<div class=\"wp-block-group\" style=\"padding-top:0px;padding-bottom:10px\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:paragraph {\"align\":\"left\",\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"fontSize\":\"14px\"},\"color\":{\"text\":\"#d0d0d0\"},\"elements\":{\"link\":{\"color\":{\"text\":\"#1e70ea\"}}}}} -->\n<p class=\"has-text-align-left has-text-color has-link-color\" style=\"color:#d0d0d0;font-size:14px;font-style:normal;font-weight:300\">Copyright © 2022. All rights reserved.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:social-links {\"iconColor\":\"white\",\"iconColorValue\":\"#ffffff\",\"size\":\"has-small-icon-size\",\"className\":\"is-style-logos-only\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"right\",\"flexWrap\":\"wrap\",\"orientation\":\"horizontal\"}} -->\n<ul class=\"wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only\"><!-- wp:social-link {\"url\":\"https://facebook.com\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://twitter.com\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://instagram.com\",\"service\":\"instagram\"} /-->\n\n<!-- wp:social-link {\"url\":\"https://youtube.com\",\"service\":\"youtube\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group --></div>\n<!-- /wp:group -->','footer','','publish','closed','closed','','footer','','','2022-12-29 00:28:50','2022-12-28 16:28:50','',0,'http://shadrin14323.local/footer/',0,'wp_template_part','',0);
  633. INSERT INTO `wp_posts` VALUES (77,1,'2022-12-29 00:35:04','2022-12-28 16:35:04','','main_icon','','inherit','open','closed','','main_icon-10','','','2022-12-29 00:35:04','2022-12-28 16:35:04','',0,'http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-edited.png',0,'attachment','image/png',0);
  634. INSERT INTO `wp_posts` VALUES (78,1,'2022-12-29 00:35:41','2022-12-28 16:35:41','<!-- wp:group {\"style\":{\"spacing\":{\"padding\":{\"bottom\":\"0\",\"top\":\"10px\"}}},\"layout\":{\"wideSize\":\"1140px\",\"contentSize\":\"1170px\",\"type\":\"constrained\"}} -->\n<div class=\"wp-block-group\" style=\"padding-top:10px;padding-bottom:0\"><!-- wp:columns {\"verticalAlignment\":\"center\"} -->\n<div class=\"wp-block-columns are-vertically-aligned-center\"><!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\"}} -->\n<div class=\"wp-block-group\"><!-- wp:image {\"id\":77,\"width\":70,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full is-resized\"><img src=\"http://shadrin14323.local/wp-content/uploads/2022/12/main_icon-edited.png\" alt=\"\" class=\"wp-image-77\" width=\"70\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:site-title {\"style\":{\"typography\":{\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"fontSize\":\"36px\",\"lineHeight\":\"1\"},\"elements\":{\"link\":{\"color\":{\"text\":\"var:preset|color|white\"}}}},\"textColor\":\"white\",\"fontFamily\":\"system-fonts\"} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column -->\n\n<!-- wp:column {\"verticalAlignment\":\"center\",\"width\":\"50%\"} -->\n<div class=\"wp-block-column is-vertically-aligned-center\" style=\"flex-basis:50%\"><!-- wp:group {\"layout\":{\"type\":\"flex\",\"flexWrap\":\"nowrap\",\"justifyContent\":\"right\"}} -->\n<div class=\"wp-block-group\"><!-- wp:navigation {\"ref\":31,\"textColor\":\"white\",\"className\":\"is-style-customnav\",\"layout\":{\"type\":\"flex\",\"orientation\":\"horizontal\"},\"style\":{\"typography\":{\"fontSize\":\"14px\",\"textTransform\":\"uppercase\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\"}}} /--></div>\n<!-- /wp:group --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div>\n<!-- /wp:group -->','header','','inherit','closed','closed','','32-revision-v1','','','2022-12-29 00:35:41','2022-12-28 16:35:41','',32,'http://shadrin14323.local/?p=78',0,'revision','',0);
  635. /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
  636. UNLOCK TABLES;
  637. --
  638. -- Table structure for table `wp_term_relationships`
  639. --
  640. DROP TABLE IF EXISTS `wp_term_relationships`;
  641. /*!40101 SET @saved_cs_client = @@character_set_client */;
  642. SET character_set_client = utf8mb4 ;
  643. CREATE TABLE `wp_term_relationships` (
  644. `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  645. `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  646. `term_order` int(11) NOT NULL DEFAULT '0',
  647. PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  648. KEY `term_taxonomy_id` (`term_taxonomy_id`)
  649. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  650. /*!40101 SET character_set_client = @saved_cs_client */;
  651. --
  652. -- Dumping data for table `wp_term_relationships`
  653. --
  654. LOCK TABLES `wp_term_relationships` WRITE;
  655. /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
  656. INSERT INTO `wp_term_relationships` VALUES (1,1,0);
  657. INSERT INTO `wp_term_relationships` VALUES (5,2,0);
  658. INSERT INTO `wp_term_relationships` VALUES (7,1,0);
  659. INSERT INTO `wp_term_relationships` VALUES (9,1,0);
  660. INSERT INTO `wp_term_relationships` VALUES (11,3,0);
  661. INSERT INTO `wp_term_relationships` VALUES (11,4,0);
  662. INSERT INTO `wp_term_relationships` VALUES (26,5,0);
  663. INSERT INTO `wp_term_relationships` VALUES (30,5,0);
  664. INSERT INTO `wp_term_relationships` VALUES (32,5,0);
  665. INSERT INTO `wp_term_relationships` VALUES (32,6,0);
  666. INSERT INTO `wp_term_relationships` VALUES (76,5,0);
  667. INSERT INTO `wp_term_relationships` VALUES (76,7,0);
  668. /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
  669. UNLOCK TABLES;
  670. --
  671. -- Table structure for table `wp_term_taxonomy`
  672. --
  673. DROP TABLE IF EXISTS `wp_term_taxonomy`;
  674. /*!40101 SET @saved_cs_client = @@character_set_client */;
  675. SET character_set_client = utf8mb4 ;
  676. CREATE TABLE `wp_term_taxonomy` (
  677. `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  678. `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  679. `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  680. `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  681. `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  682. `count` bigint(20) NOT NULL DEFAULT '0',
  683. PRIMARY KEY (`term_taxonomy_id`),
  684. UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  685. KEY `taxonomy` (`taxonomy`)
  686. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  687. /*!40101 SET character_set_client = @saved_cs_client */;
  688. --
  689. -- Dumping data for table `wp_term_taxonomy`
  690. --
  691. LOCK TABLES `wp_term_taxonomy` WRITE;
  692. /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
  693. INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,2);
  694. INSERT INTO `wp_term_taxonomy` VALUES (2,2,'wp_theme','',0,1);
  695. INSERT INTO `wp_term_taxonomy` VALUES (3,3,'category','Тестовая рубрика для ознакомления',0,1);
  696. INSERT INTO `wp_term_taxonomy` VALUES (4,4,'post_tag','Тестовая метка для ознакомления',0,1);
  697. INSERT INTO `wp_term_taxonomy` VALUES (5,5,'wp_theme','',0,4);
  698. INSERT INTO `wp_term_taxonomy` VALUES (6,6,'wp_template_part_area','',0,1);
  699. INSERT INTO `wp_term_taxonomy` VALUES (7,7,'wp_template_part_area','',0,1);
  700. /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
  701. UNLOCK TABLES;
  702. --
  703. -- Table structure for table `wp_termmeta`
  704. --
  705. DROP TABLE IF EXISTS `wp_termmeta`;
  706. /*!40101 SET @saved_cs_client = @@character_set_client */;
  707. SET character_set_client = utf8mb4 ;
  708. CREATE TABLE `wp_termmeta` (
  709. `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  710. `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  711. `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  712. `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  713. PRIMARY KEY (`meta_id`),
  714. KEY `term_id` (`term_id`),
  715. KEY `meta_key` (`meta_key`(191))
  716. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  717. /*!40101 SET character_set_client = @saved_cs_client */;
  718. --
  719. -- Dumping data for table `wp_termmeta`
  720. --
  721. LOCK TABLES `wp_termmeta` WRITE;
  722. /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
  723. /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
  724. UNLOCK TABLES;
  725. --
  726. -- Table structure for table `wp_terms`
  727. --
  728. DROP TABLE IF EXISTS `wp_terms`;
  729. /*!40101 SET @saved_cs_client = @@character_set_client */;
  730. SET character_set_client = utf8mb4 ;
  731. CREATE TABLE `wp_terms` (
  732. `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  733. `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  734. `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  735. `term_group` bigint(10) NOT NULL DEFAULT '0',
  736. PRIMARY KEY (`term_id`),
  737. KEY `slug` (`slug`(191)),
  738. KEY `name` (`name`(191))
  739. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  740. /*!40101 SET character_set_client = @saved_cs_client */;
  741. --
  742. -- Dumping data for table `wp_terms`
  743. --
  744. LOCK TABLES `wp_terms` WRITE;
  745. /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
  746. INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
  747. INSERT INTO `wp_terms` VALUES (2,'twentytwentythree','twentytwentythree',0);
  748. INSERT INTO `wp_terms` VALUES (3,'Проверка рубрик','rubrick_check',0);
  749. INSERT INTO `wp_terms` VALUES (4,'Тестовая метка','tag_test',0);
  750. INSERT INTO `wp_terms` VALUES (5,'zeever','zeever',0);
  751. INSERT INTO `wp_terms` VALUES (6,'header','header',0);
  752. INSERT INTO `wp_terms` VALUES (7,'footer','footer',0);
  753. /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
  754. UNLOCK TABLES;
  755. --
  756. -- Table structure for table `wp_usermeta`
  757. --
  758. DROP TABLE IF EXISTS `wp_usermeta`;
  759. /*!40101 SET @saved_cs_client = @@character_set_client */;
  760. SET character_set_client = utf8mb4 ;
  761. CREATE TABLE `wp_usermeta` (
  762. `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  763. `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  764. `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  765. `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  766. PRIMARY KEY (`umeta_id`),
  767. KEY `user_id` (`user_id`),
  768. KEY `meta_key` (`meta_key`(191))
  769. ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  770. /*!40101 SET character_set_client = @saved_cs_client */;
  771. --
  772. -- Dumping data for table `wp_usermeta`
  773. --
  774. LOCK TABLES `wp_usermeta` WRITE;
  775. /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
  776. INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','shadrin_vlad');
  777. INSERT INTO `wp_usermeta` VALUES (2,1,'first_name','');
  778. INSERT INTO `wp_usermeta` VALUES (3,1,'last_name','');
  779. INSERT INTO `wp_usermeta` VALUES (4,1,'description','');
  780. INSERT INTO `wp_usermeta` VALUES (5,1,'rich_editing','true');
  781. INSERT INTO `wp_usermeta` VALUES (6,1,'syntax_highlighting','true');
  782. INSERT INTO `wp_usermeta` VALUES (7,1,'comment_shortcuts','false');
  783. INSERT INTO `wp_usermeta` VALUES (8,1,'admin_color','fresh');
  784. INSERT INTO `wp_usermeta` VALUES (9,1,'use_ssl','0');
  785. INSERT INTO `wp_usermeta` VALUES (10,1,'show_admin_bar_front','true');
  786. INSERT INTO `wp_usermeta` VALUES (11,1,'locale','');
  787. INSERT INTO `wp_usermeta` VALUES (12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}');
  788. INSERT INTO `wp_usermeta` VALUES (13,1,'wp_user_level','10');
  789. INSERT INTO `wp_usermeta` VALUES (14,1,'dismissed_wp_pointers','theme_editor_notice');
  790. INSERT INTO `wp_usermeta` VALUES (15,1,'show_welcome_panel','0');
  791. INSERT INTO `wp_usermeta` VALUES (16,1,'session_tokens','a:1:{s:64:\"7bf4cedd35b3e5e46e51745b0cf9dc3e4eaa2243168c9e6939fe54da583c7df0\";a:4:{s:10:\"expiration\";i:1672972300;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36\";s:5:\"login\";i:1671762700;}}');
  792. INSERT INTO `wp_usermeta` VALUES (17,1,'wp_dashboard_quick_press_last_post_id','4');
  793. INSERT INTO `wp_usermeta` VALUES (18,1,'wp_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:3:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;s:10:\"openPanels\";a:1:{i:0;s:11:\"post-status\";}}s:9:\"_modified\";s:24:\"2022-12-28T16:35:42.860Z\";s:14:\"core/edit-site\";a:3:{s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:0;s:18:\"welcomeGuideStyles\";b:0;}}');
  794. INSERT INTO `wp_usermeta` VALUES (19,1,'wp_user-settings','libraryContent=browse');
  795. INSERT INTO `wp_usermeta` VALUES (20,1,'wp_user-settings-time','1672188642');
  796. INSERT INTO `wp_usermeta` VALUES (21,1,'elementor_introduction','a:1:{s:7:\"exit_to\";b:1;}');
  797. /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
  798. UNLOCK TABLES;
  799. --
  800. -- Table structure for table `wp_users`
  801. --
  802. DROP TABLE IF EXISTS `wp_users`;
  803. /*!40101 SET @saved_cs_client = @@character_set_client */;
  804. SET character_set_client = utf8mb4 ;
  805. CREATE TABLE `wp_users` (
  806. `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  807. `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  808. `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  809. `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  810. `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  811. `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  812. `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  813. `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  814. `user_status` int(11) NOT NULL DEFAULT '0',
  815. `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  816. PRIMARY KEY (`ID`),
  817. KEY `user_login_key` (`user_login`),
  818. KEY `user_nicename` (`user_nicename`),
  819. KEY `user_email` (`user_email`)
  820. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
  821. /*!40101 SET character_set_client = @saved_cs_client */;
  822. --
  823. -- Dumping data for table `wp_users`
  824. --
  825. LOCK TABLES `wp_users` WRITE;
  826. /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
  827. INSERT INTO `wp_users` VALUES (1,'shadrin_vlad','$P$B58K7vA/hBuTKFD7UbFlCrmiAr5/HF.','shadrin_vlad','shadrin.vlad.2001@gmail.com','http://shadrin14323.local','2022-12-23 02:12:40','',0,'shadrin_vlad');
  828. /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
  829. UNLOCK TABLES;
  830. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  831. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  832. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  833. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  834. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  835. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  836. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  837. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  838. -- Dump completed on 2022-12-29 1:33:32