Commit inicial - WordPress Análisis de Precios Unitarios

- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<div class="modal-item">
<div class="cloud-template-item<#=item.locked ? ' locked' : ''#>">
<div class="cloud-item <#=item.locked ? '' : ' click'#><#=selected ? ' active' : ''#>" data-id="<#= item.id || 0 #>" data-fn="dom_select" data-name="<#= item.name #>">
<div class="cb-template-wrapper">
<div class="cb-template-name">
<#=item.name #>
<?php tcb_icon( 'check-light' ) ?>
</div>
<div class="cb-template-thumbnail lazy-loading">
<# if ( item.locked ) { #>
<span class="locked-star">
<?php tcb_icon( 'star' ) ?>
</span>
<div class="template-locked-text
<#= (item.thumb_size.h * 281)/item.thumb_size.w < 150 ? 'button-only': '' #>
<#= (item.thumb_size.h * 281)/item.thumb_size.w < 63 ? 'small': '' #>">
<p><?php echo esc_html__( 'Available in the full version of Thrive Architect', 'thrive-cb' ); ?></p>
<a href="https://thrivethemes.com/architect/upgrade/?utm_campaign=tarc-upgrade&utm_medium=tarc-lite&utm_source=ttb-ui&utm_content=tarc-element&utm_term=ttb-customer" title="Thrive Architect" target="_blank"><?php echo esc_html__( 'Upgrade', 'thrive-cb' ); ?></a>
</div>
<# } #>
<img class="tve-lazy-img" src='<?php echo esc_url( tve_editor_css( 'images/loading-spinner.gif' ) ); ?>' data-src="<#= item.thumb #>" data-ratio="<#= parseFloat(parseInt(item.thumb_size ? item.thumb_size.h : 150) / parseInt(item.thumb_size ? item.thumb_size.w : 150)).toFixed(3) #>"/>
</div>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,19 @@
<div class="template-item <#=item.locked ? ' locked' : ''#>">
<div class="template-wrapper click<#=selected ? ' active' : ''#>" data-id="<#= item.id #>" data-fn="dom_select">
<div class="template-thumbnail" style="background-image: url('<#= item.thumb #>')">
<# if ( item.locked ) { #>
<span class="locked-star">
<?php tcb_icon( 'star' ) ?>
</span>
<div class="template-locked-text">
<p><?php echo __( 'Available in the full version of Thrive Architect', 'thrive-cb' ); ?></p>
<a href="https://thrivethemes.com/architect/upgrade/?utm_campaign=tarc-upgrade&utm_medium=tarc-lite&utm_source=ttb-ui&utm_content=tarc-element&utm_term=ttb-customer" title="Thrive Architect" target="_blank"><?php echo __( 'Upgrade', 'thrive-cb' ); ?></a>
</div>
<# } #>
</div>
<div class="template-name">
<#= item.name #>
</div>
<div class="selected"></div>
</div>
</div>