Files
design-themes/theme_aviato/views/snippets/s_three_columns.xml
T
Chrysanthe (chgo) 376ab972ea [IMP] theme_*: improve SEO by correcting heading tag hierarchy
* anelusia, artists, avantgarde, aviato, beauty, bewise, bistro,
bookstore, buzzy, clean, cobalt, enark, graphene, kea, kiddo, loftspace,
monglia, nano, notes, odoo_experts, orchid, paptic, real estate,
treehouse, vehicle, yes, zap

This commit adapts all the `xpath` expressions inside design themes to
target the new heading tags that were changed within the snippet files.

task-4349019

closes odoo/design-themes#1043

Related: odoo/odoo#191300
Related: odoo/enterprise#92978
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
2025-09-08 18:27:03 +00:00

60 lines
2.6 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="s_three_columns" inherit_id="website.s_three_columns">
<!-- Section -->
<xpath expr="//section" position="attributes">
<attribute name="class" add="pt16 pb56 o_cc3" remove="pt32 pb32 o_cc2" separator=" "/>
</xpath>
<!-- Column #01 -->
<xpath expr="//*[hasclass('s_card')]" position="attributes">
<attribute name="style" add="--card-img-aspect-ratio: 132%" separator=";"/>
</xpath>
<xpath expr="//figure" position="attributes">
<attribute name="class" remove="ratio-16x9" add="o_card_img_ratio_custom" separator=" "/>
</xpath>
<xpath expr="//h2" position="replace" mode="inner">
Paris
</xpath>
<xpath expr="//p" position="replace" mode="inner">
Paris' monument-lined boulevards, museums, classical bistros and boutiques are enhanced by a new wave of multimedia galleries, creative wine bars..
</xpath>
<xpath expr="//p" position="after">
<a href="#" class="btn btn-primary">Book now</a>
</xpath>
<!-- Column #02 -->
<xpath expr="(//*[hasclass('s_card')])[2]" position="attributes">
<attribute name="style" add="--card-img-aspect-ratio: 132%" separator=";"/>
</xpath>
<xpath expr="(//figure)[2]" position="attributes">
<attribute name="class" remove="ratio-16x9" add="o_card_img_ratio_custom" separator=" "/>
</xpath>
<xpath expr="(//h2)[2]" position="replace" mode="inner">
Rome
</xpath>
<xpath expr="(//p)[2]" position="replace" mode="inner">
A heady mix of haunting ruins, awe-inspiring art and vibrant street life, Italys hot-blooded capital is one of the worlds most romantic and charismatic cities.
</xpath>
<xpath expr="(//p)[2]" position="after">
<a href="#" class="btn btn-primary">Book now</a>
</xpath>
<!-- Column #03 -->
<xpath expr="(//*[hasclass('s_card')])[3]" position="attributes">
<attribute name="style" add="--card-img-aspect-ratio: 132%" separator=";"/>
</xpath>
<xpath expr="(//figure)[3]" position="attributes">
<attribute name="class" remove="ratio-16x9" add="o_card_img_ratio_custom" separator=" "/>
</xpath>
<xpath expr="(//h2)[3]" position="replace" mode="inner">
Prague
</xpath>
<xpath expr="(//p)[3]" position="replace" mode="inner">
Prague is the equal of Paris in terms of beauty. Its history goes back a millennium. And the beer? The best in Europe. Prague is the perfect city to walk around.
</xpath>
<xpath expr="(//p)[3]" position="after">
<a href="#" class="btn btn-primary">Book now</a>
</xpath>
</template>
</odoo>