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.
 
 
 
 
 

40 lines
2.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="splash_blog_details" name="Splash Blog Details" inherit_id="website_blog.blog_post_complete">
<!-- It features a two-column layout with a custom search widget on the right and the blog post content on the left.-->
<xpath expr="//div[@id='o_wblog_post_content']" position="replace">
<section class="Blog_detail py-5 pb-5">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-12 col-12">
<div class="blog_left">
<div class="b_left_single">
<div class="blog_img">
<t t-call="website_blog.post_cover_image">
<t t-set="use_size" t-value="True"/>
</t>
<div class="blog_date">
<t t-esc="blog_post.published_date"
t-options="{'widget': 'date', 'format': 'dd MMM'}">
<t t-set="_record"
t-value="blog_post"/>
</t>
</div>
</div>
<div class="blog_details para">
<t t-call="website_blog.blog_post_content"/>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-12">
<t t-call="theme_splash.splash_blog_search"/>
</div>
</div>
</div>
</section>
</xpath>
<xpath expr="//div[@id='o_wblog_post_sidebar_col']" position="replace">
</xpath>
</template>
</odoo>