<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[52286] trunk: Site Editor: Add site export REST API endpoint.</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { white-space: pre-line; overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta" style="font-size: 105%">
<dt style="float: left; width: 6em; font-weight: bold">Revision</dt> <dd><a style="font-weight: bold" href="https://core.trac.wordpress.org/changeset/52286">52286</a><script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","description":"Review this Commit","action":{"@type":"ViewAction","url":"https://core.trac.wordpress.org/changeset/52286","name":"Review Commit"}}</script></dd>
<dt style="float: left; width: 6em; font-weight: bold">Author</dt> <dd>spacedmonkey</dd>
<dt style="float: left; width: 6em; font-weight: bold">Date</dt> <dd>2021-11-30 17:30:22 +0000 (Tue, 30 Nov 2021)</dd>
</dl>

<pre style='padding-left: 1em; margin: 2em 0; border-left: 2px solid #ccc; line-height: 1.25; font-size: 105%; font-family: sans-serif'>Site Editor: Add site export REST API endpoint. 

Add a REST API to export site templates and template part as html files. When the REST API is requested, it responds by downloading a single ZIP file and exits early, without completing full request.  To create the exported zip, the ZipArchive class is required. If this class is not present then the export will gracefully fail, returning a `WP_Error` object and 500 status error code. 

Props spacedmonkey, youknowriad, Mamaduka, walbo, peterwilsoncc. 
Fixes <a href="https://core.trac.wordpress.org/ticket/54448">#54448</a> .</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunksrcwpincludesblocktemplateutilsphp">trunk/src/wp-includes/block-template-utils.php</a></li>
<li><a href="#trunksrcwpincludesrestapiphp">trunk/src/wp-includes/rest-api.php</a></li>
<li><a href="#trunksrcwpsettingsphp">trunk/src/wp-settings.php</a></li>
<li><a href="#trunktestsphpunittestsblocktemplateutilsphp">trunk/tests/phpunit/tests/block-template-utils.php</a></li>
<li><a href="#trunktestsqunitfixtureswpapigeneratedjs">trunk/tests/qunit/fixtures/wp-api-generated.js</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunksrcwpincludesrestapiendpointsclasswpresteditsiteexportcontrollerphp">trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunksrcwpincludesblocktemplateutilsphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/src/wp-includes/block-template-utils.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/src/wp-includes/block-template-utils.php    2021-11-30 17:16:13 UTC (rev 52285)
+++ trunk/src/wp-includes/block-template-utils.php      2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -455,6 +455,39 @@
</span><span class="cx" style="display: block; padding: 0 10px"> }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px"> /**
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+ * Parses a block template and removes the theme attribute from each template part.
+ *
+ * @access private
+ * @since 5.9.0
+ *
+ * @param string $template_content Serialized block template content.
+ * @return string Updated block template content.
+ */
+function _remove_theme_attribute_in_block_template_content( $template_content ) {
+       $has_updated_content = false;
+       $new_content         = '';
+       $template_blocks     = parse_blocks( $template_content );
+
+       $blocks = _flatten_blocks( $template_blocks );
+       foreach ( $blocks as $key => $block ) {
+               if ( 'core/template-part' === $block['blockName'] && isset( $block['attrs']['theme'] ) ) {
+                       unset( $blocks[ $key ]['attrs']['theme'] );
+                       $has_updated_content = true;
+               }
+       }
+
+       if ( ! $has_updated_content ) {
+               return $template_content;
+       }
+
+       foreach ( $template_blocks as $block ) {
+               $new_content .= serialize_block( $block );
+       }
+
+       return $new_content;
+}
+
+/**
</ins><span class="cx" style="display: block; padding: 0 10px">  * Build a unified template object based on a theme file.
</span><span class="cx" style="display: block; padding: 0 10px">  *
</span><span class="cx" style="display: block; padding: 0 10px">  * @access private
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -863,3 +896,55 @@
</span><span class="cx" style="display: block; padding: 0 10px"> function block_footer_area() {
</span><span class="cx" style="display: block; padding: 0 10px">        block_template_part( 'footer' );
</span><span class="cx" style="display: block; padding: 0 10px"> }
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+
+/**
+ * Creates an export of the current templates and
+ * template parts from the site editor at the
+ * specified path in a ZIP file.
+ *
+ * @since 5.9.0
+ *
+ * @return WP_Error|string Path of the ZIP file or error on failure.
+ */
+function wp_generate_block_templates_export_file() {
+       if ( ! class_exists( 'ZipArchive' ) ) {
+               return new WP_Error( __( 'Zip Export not supported.' ) );
+       }
+
+       $obscura  = wp_generate_password( 12, false, false );
+       $filename = get_temp_dir() . 'edit-site-export-' . $obscura . '.zip';
+
+       $zip = new ZipArchive();
+       if ( true !== $zip->open( $filename, ZipArchive::CREATE ) ) {
+               return new WP_Error( __( 'Unable to open export file (archive) for writing.' ) );
+       }
+
+       $zip->addEmptyDir( 'theme' );
+       $zip->addEmptyDir( 'theme/templates' );
+       $zip->addEmptyDir( 'theme/parts' );
+
+       // Load templates into the zip file.
+       $templates = get_block_templates();
+       foreach ( $templates as $template ) {
+               $template->content = _remove_theme_attribute_in_block_template_content( $template->content );
+
+               $zip->addFromString(
+                       'theme/templates/' . $template->slug . '.html',
+                       $template->content
+               );
+       }
+
+       // Load template parts into the zip file.
+       $template_parts = get_block_templates( array(), 'wp_template_part' );
+       foreach ( $template_parts as $template_part ) {
+               $zip->addFromString(
+                       'theme/parts/' . $template_part->slug . '.html',
+                       $template_part->content
+               );
+       }
+
+       // Save changes to the zip file.
+       $zip->close();
+
+       return $filename;
+}
</ins></span></pre></div>
<a id="trunksrcwpincludesrestapiendpointsclasswpresteditsiteexportcontrollerphp"></a>
<div class="addfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Added: trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php                            (rev 0)
+++ trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php      2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -0,0 +1,93 @@
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+<?php
+/**
+ * REST API: WP_REST_Edit_Site_Export_Controller class
+ *
+ * @package    WordPress
+ * @subpackage REST_API
+ */
+
+/**
+ * Controller which provides REST endpoint for exporting current templates
+ * and template parts.
+ *
+ * @since 5.9.0
+ *
+ * @see WP_REST_Controller
+ */
+class WP_REST_Edit_Site_Export_Controller extends WP_REST_Controller {
+
+       /**
+        * Constructor.
+        *
+        * @since 5.9.0
+        */
+       public function __construct() {
+               $this->namespace = 'wp-block-editor/v1';
+               $this->rest_base = 'export';
+       }
+
+       /**
+        * Registers the site export route.
+        *
+        * @since 5.9.0
+        */
+       public function register_routes() {
+               register_rest_route(
+                       $this->namespace,
+                       '/' . $this->rest_base,
+                       array(
+                               array(
+                                       'methods'             => WP_REST_Server::READABLE,
+                                       'callback'            => array( $this, 'export' ),
+                                       'permission_callback' => array( $this, 'permissions_check' ),
+                               ),
+                       )
+               );
+       }
+
+       /**
+        * Checks whether a given request has permission to export.
+        *
+        * @since 5.9.0
+        *
+        * @return WP_Error|true True if the request has access, or WP_Error object.
+        */
+       public function permissions_check() {
+               if ( ! current_user_can( 'edit_theme_options' ) ) {
+                       new WP_Error(
+                               'rest_cannot_view_url_details',
+                               __( 'Sorry, you are not allowed to export templates and template parts.' ),
+                               array( 'status' => rest_authorization_required_code() )
+                       );
+               }
+
+               return true;
+       }
+
+       /**
+        * Output a ZIP file with an export of the current templates
+        * and template parts from the site editor, and close the connection.
+        *
+        * @since 5.9.0
+        *
+        * @return WP_Error|void
+        */
+       public function export() {
+               // Generate the export file.
+               $filename = wp_generate_block_templates_export_file();
+
+               if ( is_wp_error( $filename ) ) {
+                       $filename->add_data( array( 'status' => 500 ) );
+
+                       return $filename;
+               }
+
+               header( 'Content-Type: application/zip' );
+               header( 'Content-Disposition: attachment; filename=edit-site-export.zip' );
+               header( 'Content-Length: ' . filesize( $filename ) );
+               flush();
+               readfile( $filename );
+               unlink( $filename );
+               exit;
+       }
+}
</ins><span class="cx" style="display: block; padding: 0 10px">Property changes on: trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php
</span><span class="cx" style="display: block; padding: 0 10px">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Added: svn:eol-style</h4></div>
<ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+native
</ins><span class="cx" style="display: block; padding: 0 10px">\ No newline at end of property
</span><a id="trunksrcwpincludesrestapiphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/src/wp-includes/rest-api.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/src/wp-includes/rest-api.php        2021-11-30 17:16:13 UTC (rev 52285)
+++ trunk/src/wp-includes/rest-api.php  2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -349,6 +349,10 @@
</span><span class="cx" style="display: block; padding: 0 10px">        // Menu Locations.
</span><span class="cx" style="display: block; padding: 0 10px">        $controller = new WP_REST_Menu_Locations_Controller();
</span><span class="cx" style="display: block; padding: 0 10px">        $controller->register_routes();
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+
+       // Site Editor Export.
+       $controller = new WP_REST_Edit_Site_Export_Controller();
+       $controller->register_routes();
</ins><span class="cx" style="display: block; padding: 0 10px"> }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px"> /**
</span></span></pre></div>
<a id="trunksrcwpsettingsphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/src/wp-settings.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/src/wp-settings.php 2021-11-30 17:16:13 UTC (rev 52285)
+++ trunk/src/wp-settings.php   2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -275,6 +275,7 @@
</span><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-themes-controller.php';
</span><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-plugins-controller.php';
</span><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-block-directory-controller.php';
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php';
</ins><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php';
</span><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-application-passwords-controller.php';
</span><span class="cx" style="display: block; padding: 0 10px"> require ABSPATH . WPINC . '/rest-api/endpoints/class-wp-rest-site-health-controller.php';
</span></span></pre></div>
<a id="trunktestsphpunittestsblocktemplateutilsphp"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/phpunit/tests/block-template-utils.php</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/phpunit/tests/block-template-utils.php        2021-11-30 17:16:13 UTC (rev 52285)
+++ trunk/tests/phpunit/tests/block-template-utils.php  2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -190,6 +190,38 @@
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><span class="cx" style="display: block; padding: 0 10px"> 
</span><span class="cx" style="display: block; padding: 0 10px">        /**
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+         * @ticket 54448
+        *
+        * @dataProvider data_remove_theme_attribute_in_block_template_content
+        */
+       function test_remove_theme_attribute_in_block_template_content( $template_content, $expected ) {
+               $this->assertEquals( $expected, _remove_theme_attribute_in_block_template_content( $template_content ) );
+       }
+
+       function data_remove_theme_attribute_in_block_template_content() {
+               return array(
+                       array(
+                               '<!-- wp:template-part {"slug":"header","theme":"tt1-blocks","align":"full","tagName":"header","className":"site-header"} /-->',
+                               '<!-- wp:template-part {"slug":"header","align":"full","tagName":"header","className":"site-header"} /-->',
+                       ),
+                       array(
+                               '<!-- wp:group --><!-- wp:template-part {"slug":"header","theme":"tt1-blocks","align":"full","tagName":"header","className":"site-header"} /--><!-- /wp:group -->',
+                               '<!-- wp:group --><!-- wp:template-part {"slug":"header","align":"full","tagName":"header","className":"site-header"} /--><!-- /wp:group -->',
+                       ),
+                       // Does not modify content when there is no existing theme attribute.
+                       array(
+                               '<!-- wp:template-part {"slug":"header","align":"full","tagName":"header","className":"site-header"} /-->',
+                               '<!-- wp:template-part {"slug":"header","align":"full","tagName":"header","className":"site-header"} /-->',
+                       ),
+                       // Does not remove theme when there is no template part.
+                       array(
+                               '<!-- wp:post-content /-->',
+                               '<!-- wp:post-content /-->',
+                       ),
+               );
+       }
+
+       /**
</ins><span class="cx" style="display: block; padding: 0 10px">          * Should retrieve the template from the theme files.
</span><span class="cx" style="display: block; padding: 0 10px">         */
</span><span class="cx" style="display: block; padding: 0 10px">        function test_get_block_template_from_file() {
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -311,4 +343,37 @@
</span><span class="cx" style="display: block; padding: 0 10px">                $expected                     = array( $blocks[0] );
</span><span class="cx" style="display: block; padding: 0 10px">                $this->assertSame( $expected, $actual );
</span><span class="cx" style="display: block; padding: 0 10px">        }
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+
+       /**
+        * Should generate block templates export file.
+        *
+        * @ticket 54448
+        */
+       function test_wp_generate_block_templates_export_file() {
+               $filename = wp_generate_block_templates_export_file();
+               $this->assertFileExists( $filename, 'zip file is created at the specified path' );
+               $this->assertTrue( filesize( $filename ) > 0, 'zip file is larger than 0 bytes' );
+
+               // Open ZIP file and make sure the directories exist.
+               $zip = new ZipArchive();
+               $zip->open( $filename );
+               $has_theme_dir                = $zip->locateName( 'theme/' ) !== false;
+               $has_block_templates_dir      = $zip->locateName( 'theme/templates/' ) !== false;
+               $has_block_template_parts_dir = $zip->locateName( 'theme/parts/' ) !== false;
+               $this->assertTrue( $has_theme_dir, 'theme directory exists' );
+               $this->assertTrue( $has_block_templates_dir, 'theme/templates directory exists' );
+               $this->assertTrue( $has_block_template_parts_dir, 'theme/parts directory exists' );
+
+               // ZIP file contains at least one HTML file.
+               $has_html_files = false;
+               $num_files      = $zip->numFiles;
+               for ( $i = 0; $i < $num_files; $i++ ) {
+                       $filename = $zip->getNameIndex( $i );
+                       if ( '.html' === substr( $filename, -5 ) ) {
+                               $has_html_files = true;
+                               break;
+                       }
+               }
+               $this->assertTrue( $has_html_files, 'contains at least one html file' );
+       }
</ins><span class="cx" style="display: block; padding: 0 10px"> }
</span></span></pre></div>
<a id="trunktestsqunitfixtureswpapigeneratedjs"></a>
<div class="modfile"><h4 style="background-color: #eee; color: inherit; margin: 1em 0; padding: 1.3em; font-size: 115%">Modified: trunk/tests/qunit/fixtures/wp-api-generated.js</h4>
<pre class="diff"><span>
<span class="info" style="display: block; padding: 0 10px; color: #888">--- trunk/tests/qunit/fixtures/wp-api-generated.js    2021-11-30 17:16:13 UTC (rev 52285)
+++ trunk/tests/qunit/fixtures/wp-api-generated.js      2021-11-30 17:30:22 UTC (rev 52286)
</span><span class="lines" style="display: block; padding: 0 10px; color: #888">@@ -10642,6 +10642,27 @@
</span><span class="cx" style="display: block; padding: 0 10px">                     }
</span><span class="cx" style="display: block; padding: 0 10px">                 }
</span><span class="cx" style="display: block; padding: 0 10px">             ]
</span><ins style="background-color: #dfd; text-decoration:none; display:block; padding: 0 10px">+        },
+        "/wp-block-editor/v1/export": {
+            "namespace": "wp-block-editor/v1",
+            "methods": [
+                "GET"
+            ],
+            "endpoints": [
+                {
+                    "methods": [
+                        "GET"
+                    ],
+                    "args": []
+                }
+            ],
+            "_links": {
+                "self": [
+                    {
+                        "href": "http://example.org/index.php?rest_route=/wp-block-editor/v1/export"
+                    }
+                ]
+            }
</ins><span class="cx" style="display: block; padding: 0 10px">         }
</span><span class="cx" style="display: block; padding: 0 10px">     },
</span><span class="cx" style="display: block; padding: 0 10px">     "site_logo": 0,
</span></span></pre>
</div>
</div>

</body>
</html>