41 lines
2.7 KiB
HTML
41 lines
2.7 KiB
HTML
description = "Default layout — header, footer, tracking diferido, WhatsApp float"
|
|
==
|
|
<!DOCTYPE html>
|
|
<html lang="es-MX">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% set pageTitle = this.page.meta_title ?: this.page.title %}
|
|
<title>{{ pageTitle }}{% if 'VivesPOS' not in pageTitle %} — VivesPOS{% endif %}</title>
|
|
<meta name="description" content="{{ this.page.meta_description ?: 'Punto de venta offline-first para Mexico. Vende sin internet, tus datos siempre tuyos. Keyboard-first, scanner de codigo de barras, tickets ESC/POS.' }}">
|
|
<meta property="og:locale" content="es_MX">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ pageTitle }}">
|
|
<meta property="og:description" content="Punto de venta offline-first para Mexico. Vende sin internet, tus datos siempre tuyos.">
|
|
<meta property="og:site_name" content="VivesPOS">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='6' fill='%231a56db'/><text x='50%25' y='54%25' dominant-baseline='middle' text-anchor='middle' fill='white' font-family='Inter,sans-serif' font-weight='bold' font-size='18'>V</text></svg>">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
|
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap"></noscript>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ 'assets/css/custom.css'|theme }}?v=20260822">
|
|
{% partial 'site/jsonld-software' %}
|
|
{% partial 'site/tracking' %}
|
|
{% styles %}
|
|
</head>
|
|
<body class="stretched">
|
|
<div id="wrapper">
|
|
{% partial 'site/header' %}
|
|
<section id="content">
|
|
{% page %}
|
|
</section>
|
|
{% partial 'site/footer' %}
|
|
</div>
|
|
{% partial 'site/whatsapp-float' %}
|
|
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
|
{% scripts %}
|
|
</body>
|
|
</html>
|