Files
plugin_recre/views/web_layout.xml
2026-02-17 23:47:16 +01:00

15 lines
740 B
XML

<odoo>
<template id="custom_favicon_backend" inherit_id="web.layout" name="Custom Favicon &amp; Manifest">
<xpath expr="//head" position="inside">
<!-- Ícones de navegador -->
<link rel="shortcut icon" href="/plugin_recre/static/img/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="/plugin_recre/static/img/favicon.ico" type="image/x-icon"/>
<!-- O SEGREDO DO ANDROID: Link para o nosso JSON -->
<link rel="manifest" href="/plugin_recre/static/manifest.json"/>
<!-- Meta tag para pintar a barra do navegador do celular -->
<meta name="theme-color" content="#714B67"/>
</xpath>
</template>
</odoo>