Initial commit

This commit is contained in:
Alexander Agnarson 2020-03-11 14:44:42 +01:00
commit b0607606ae
369 changed files with 85494 additions and 0 deletions

View file

@ -0,0 +1,43 @@
<?php
/**
* Customizer controls underscore.js template.
*
* @package Kirki
* @subpackage Controls
* @copyright Copyright (c) 2019, Ari Stathopoulos (@aristath)
* @license https://opensource.org/licenses/MIT
* @since 3.0.17
*/
?>
<#
element = ( data.choices.element ) ? data.choices.element : 'input';
data = _.defaults( data, {
label: '',
description: '',
inputAttrs: '',
value: '',
'data-id': '',
choices: {}
} );
#>
<div class="kirki-input-container" data-id="{{ data.id }}">
<label>
<# if ( data.label ) { #>
<span class="customize-control-title">{{{ data.label }}}</span>
<# } #>
<# if ( data.description ) { #>
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
<div class="customize-control-content">
<{{ element }}
data-id="{{ data['data-id'] }}"
{{{ data.inputAttrs }}}
value="{{ data.value }}"
<# _.each( data.choices, function( val, key ) { #>
{{ key }}="{{ val }}"
<# } ); #>
<# if ( data.choices.content ) { #>>{{{ data.choices.content }}}</{{ element }}><# } else { #>/><# } #>
</div>
</label>
</div>