- 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>
19 lines
748 B
PHTML
Executable File
19 lines
748 B
PHTML
Executable File
<?php
|
|
/** @var TVE_Dash_Product_Abstract $this */
|
|
?>
|
|
<div class="tvd-col tvd-s6 tvd-ms6 tvd-m4 tvd-l3" id="tvd-product-<?php echo $this->get_tag() ?>">
|
|
<div class="tvd-card tvd-white tvd-medium">
|
|
<div class="tvd-card-content">
|
|
<?php echo $this->render_more_links() ?>
|
|
<div class="tvd-center-align">
|
|
<img src="<?php echo $this->logoUrl; ?>" alt="" class="tvd-responsive-img">
|
|
</div>
|
|
<h2 class="tvd-card-title"><?php echo $this->title ?></h2>
|
|
<p class="tvd-center"><?php echo $this->description ?></p>
|
|
</div>
|
|
<div class="tvd-card-action">
|
|
<span><?php echo $this->render_button($this->title) ?></span>
|
|
</div>
|
|
</div>
|
|
</div>
|