feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run

- 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
This commit is contained in:
2026-08-21 19:29:00 -06:00
commit 1f72193a64
3266 changed files with 531480 additions and 0 deletions

View File

@@ -0,0 +1,78 @@
name: Bug Report
description: Report a general Winter CMS or Storm library issue. See our policy below if reporting a security issue.
labels: ["Status: Review Needed", "Type: Unconfirmed Bug"]
body:
- type: markdown
attributes:
value: |
Thanks for your interest in improving Winter CMS! To avoid duplicate issues please ensure that no previous issues already cover the problem you wish to report before you submit your report. Otherwise, feel free to fill out the form below to submit an issue.
**Please do not use this form to report a security issue. For security issues, review our [Security Policy](https://github.com/wintercms/winter/security/policy).**
- type: dropdown
id: build
attributes:
label: Winter CMS Build
description: Please select the Winter CMS build that you encountered your issue with. You can find the version in the **Updates & Plugins** section of the Settings page of the Backend, or by running the `php artisan winter:version` command.
options:
- dev-develop
- 1.2
- 1.1
- 1.0 (please try updating first)
- Other (please specify below)
validations:
required: true
- type: dropdown
id: php_version
attributes:
label: PHP Version
description: Please provide us the branch of PHP version. For example, for PHP version 7.4.9, select `7.4`, or for PHP version 8.0.1, select `8.0`.
options:
- 8.4
- 8.3
- 8.2
- 8.1
- 8.0
- 7.4
- 7.3
- 7.2
- Other (please specify below)
validations:
required: true
- type: dropdown
id: database
attributes:
label: Database engine
description: Please provide us with the database server type you are running.
options:
- MySQL/MariaDB
- PostgreSQL
- SQLite
- SQL Server
- No database
- Other (please specify below)
validations:
required: true
- type: input
id: plugins
attributes:
label: Plugins installed
description: If any plugins are installed, please list them here in the format `Author.PluginName, Author2.PluginName, etc`.
- type: textarea
id: description
attributes:
label: Issue description
description: Please describe the issue in as much detail as possible. Include screenshots of error messages or copy and paste any logs that result from the issue occurring.
validations:
required: true
- type: textarea
id: replication
attributes:
label: Steps to replicate
description: Please list the steps that you took in order for the issue to occur.
validations:
required: true
- type: textarea
id: workaround
attributes:
label: Workaround
description: If you have a workaround, please detail it here, for the benefit of other users who encounter the issue.

32
.github/ISSUE_TEMPLATE/2_PRE_PR.yaml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Pre-Pull Request Discussion
description: If you intend to submit a PR and wish to discuss it first, start here.
labels: ["Status: Review Needed", "Type: Conceptual Enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for your interest in submitting a pull request to Winter CMS. We always value contributions from our community. If you wish to start a discussion on the pull request before submission, such as discussing implementation details, please use this form.
- type: dropdown
id: subsystem
attributes:
label: Package targeted
description: Please select which portion of Winter CMS your PR is targeting.
options:
- Winter CMS
- Storm Library
- Both
- Other (please specify below)
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Please describe what your PR is intending to do.
validations:
required: true
- type: textarea
id: compatibility
attributes:
label: Will this change be backwards-compatible?
description: Please describe if this intended change may break backwards compatibility or not. If it does, state the rationale in which you believe this to be an acceptable break in backwards compatibility.

14
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
blank_issues_enabled: true
contact_links:
- name: General Winter CMS Support
url: https://wintercms.com/support
about: If you need help with Winter CMS, please review our support options.
- name: Discord
url: https://discord.gg/D5MFSPH6Ux
about: Join us on Discord for general discussions and one-on-one help.
- name: Feature Requests
url: https://github.com/wintercms/winter/discussions
about: Please post an Idea thread to the Discussions section for feature requests.
- name: Documentation Issue
url: https://github.com/wintercms/docs
about: For documentation issues, please submit an issue or PR to the Docs repository.