You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
3.9 KiB
71 lines
3.9 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="home_page_about" name="About Text | Image">
|
|
<div class="section-about w-100 float-left"
|
|
t-att-data-show-services="show_additional_services or 'false'">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-6">
|
|
<div class="about-img">
|
|
<img class="w-100"
|
|
t-att-src="'/theme_medicate/static/src/img/img-about.jpg'"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="about-container w-100 float-left">
|
|
<h3>
|
|
<b>Lorem ipsum dolor sit amet, consectetur</b>
|
|
</h3>
|
|
<p>Lorem ipsum dolor sit amet, consectetur
|
|
adipiscing elit. In in tincidunt
|
|
diam. Mauris justo erat, scelerisque non ante
|
|
nec
|
|
</p>
|
|
<ul class="pl-0">
|
|
<t t-foreach="[
|
|
'Comprehensive Inpatient Services',
|
|
'Medical And Surgical Services',
|
|
'Outpatient Services',
|
|
'Medicine & instrument',
|
|
'Specialised Support Service',
|
|
'Instant Operation & Appointment'
|
|
]" t-as="item">
|
|
<li>
|
|
<img class="mr-2"
|
|
t-att-src="'/theme_medicate/static/src/img/arrow-about-pharma.png'"/>
|
|
<t t-esc="item"/>
|
|
</li>
|
|
</t>
|
|
</ul>
|
|
<div class="additional-services"
|
|
t-att-style="'display:' + ('block' if show_additional_services else 'none')">
|
|
<ul class="pl-0">
|
|
<t t-foreach="[
|
|
'Physical therapy and rehabilitation programs tailored to specific needs.',
|
|
'Nutritional counseling and diet planning.',
|
|
'Mental health support and counseling services.',
|
|
'Palliative care for terminally ill patients to improve quality of life.',
|
|
'Language interpretation services for non-native speakers.',
|
|
]" t-as="item">
|
|
<li>
|
|
<img class="mr-2"
|
|
t-att-src="'/theme_medicate/static/src/img/arrow-about-pharma.png'"/>
|
|
<t t-esc="item"/>
|
|
</li>
|
|
</t>
|
|
</ul>
|
|
</div>
|
|
|
|
<a href="#"
|
|
class="read-more-toggle a-time-table float-left mt-5 btn-timetable text-white pt-2 pb-2 pl-3 pr-3 text-decoration-none">
|
|
<span class="read-more-text">
|
|
<t t-esc="'  Read more    +  ' if not show_additional_services else '  Read less    -  '"/>
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</odoo>
|
|
|