Files
vivespos-landing/modules/cms/controllers/index/index.php
avives 1f72193a64
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
- Base: wintercms/winter branch 1.2 (full framework)
- Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS
- Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication
- Partials: hero (offline-first), features, modes (offline/nube toggle),
  screenshots, pricing (3 planes), comparison, FAQ, CTA
- Plugin VivesPOS.Site with ContactForm
- Dockerfile: PHP 8.2 Apache, port 80, healthcheck
- Added winter/wn-pages, blog, sitemap, seo plugins
- Active theme set to vivespos
2026-08-21 19:29:00 -06:00

32 lines
1.0 KiB
PHP

<?= Block::put('sidepanel') ?>
<?php if (!$this->fatalError): ?>
<?= $this->makePartial('sidepanel') ?>
<?php endif ?>
<?= Block::endPut() ?>
<?= Block::put('body') ?>
<?php if (!$this->fatalError): ?>
<div
data-control="tab"
data-closable
data-close-confirmation="<?= e(trans('backend::lang.form.confirm_tab_close')) ?>"
data-pane-classes="layout-cell"
data-max-title-symbols="15"
data-title-as-file-names="true"
class="layout control-tabs master-tabs fancy-layout wn-logo-transparent"
id="cms-master-tabs">
<div class="layout-row min-size">
<div class="tabs-container">
<ul class="nav nav-tabs"></ul>
</div>
</div>
<div class="tab-content layout-row">
</div>
</div>
<?php else: ?>
<p class="flash-message static error"><?= e(trans($this->fatalError)) ?></p>
<?php endif ?>
<?= Block::endPut() ?>