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
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
description = "Default layout"
|
|
==
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Winter CMS - {{ this.page.title }}</title>
|
|
<meta name="description" content="{{ this.page.meta_description }}">
|
|
<meta name="title" content="{{ this.page.meta_title }}">
|
|
<meta name="author" content="Winter CMS">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="generator" content="Winter CMS">
|
|
<link rel="icon" type="image/png" href="{{ 'assets/images/winter.png'|theme }}">
|
|
<link href="{{ 'assets/css/vendor.css'|theme }}" rel="stylesheet">
|
|
<link href="{{ 'assets/css/theme.css'|theme }}" rel="stylesheet">
|
|
{% styles %}
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<header id="layout-header">
|
|
{% partial 'site/header' %}
|
|
</header>
|
|
|
|
<!-- Content -->
|
|
<section id="layout-content">
|
|
{% page %}
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer id="layout-footer">
|
|
{% partial 'site/footer' %}
|
|
</footer>
|
|
|
|
<!-- Scripts -->
|
|
<script src="{{ 'assets/vendor/jquery.js'|theme }}"></script>
|
|
<script src="{{ 'assets/vendor/bootstrap.js'|theme }}"></script>
|
|
<script src="{{ 'assets/javascript/app.js'|theme }}"></script>
|
|
{% snowboard all %}
|
|
{% scripts %}
|
|
|
|
</body>
|
|
</html>
|