<?php // Template for the Crop area layout, used for example in the Customizer. ?>
<script type="text/html" id="tmpl-crop-content">
<img class="crop-image" src="{{ data.url }}" alt="<?php
esc_attr_e( 'Image crop area preview. Requires mouse interaction.'
); ?>" />
<div class="upload-errors"></div>
</script>
<?php // Template for the Site Icon preview, used for example in the Customizer. ?>
<script type="text/html" id="tmpl-site-icon-preview">
<h2><?php
_e( 'Preview'
); ?></h2>
<strong aria-hidden="true"><?php
_e( 'As a browser icon'
); ?></strong>
<div class="favicon-preview">
<img src="<?php
echo esc_url( admin_url( 'images/' .
( is_rtl() ? 'browser-rtl.png' : 'browser.png'
) ) ); ?>" class="browser-preview" width="182" height="" alt="" />
<div class="favicon">
<img id="preview-favicon" src="{{ data.url }}" alt="<?php
esc_attr_e( 'Preview as a browser icon'
); ?>" />
</div>
<span class="browser-title" aria-hidden="true"><# print( '<?php
echo esc_js( get_bloginfo( 'name'
) ); ?>' ) #></span>
</div>
<strong aria-hidden="true"><?php
_e( 'As an app icon'
); ?></strong>
<div class="app-icon-preview">
<img id="preview-app-icon" src="{{ data.url }}" alt="<?php
esc_attr_e( 'Preview as an app icon'
); ?>" />
</div>
</script>