blob: 3afd4f93bc16b6cf2dd55302416426525533c78e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template name="Text Highlight" id="s_text_highlight">
<div class="s_text_highlight bg-secondary my-3 text-center w-100">
<div class="container">
<h3>Text Highlight</h3>
<p>Put the focus on what you have to say!</p>
</div>
</div>
</template>
<template id="assets_snippet_s_text_highlight_css_000" inherit_id="website.assets_frontend">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/website/static/src/snippets/s_text_highlight/000.scss"/>
</xpath>
</template>
</odoo>
|