15 lines
740 B
XML
15 lines
740 B
XML
<odoo>
|
|
<template id="custom_favicon_backend" inherit_id="web.layout" name="Custom Favicon & 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> |