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.
 
 
 
 
 

54 lines
2.7 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<data>
<template id="boec_blog_preview" name="Boec Blog Preview" inherit_id="website_blog.blog_post_complete">
<xpath expr="//section[@id='o_wblog_post_top']" position="replace">
<section class="blog_details ">
<div class="wrapper gap">
<div class="top">
<h3 class="dlk">
<span t-field="blog_post.name"/>
</h3>
<ul class="info">
<span t-field="blog_post.subtitle"/>
</ul>
</div>
</div>
<div class="blog_image">
<div class="container">
<div class="img_wrapper">
<t t-call="website.record_cover">
<t t-set="_record" t-value="blog_post"/>
<t t-set="snippet_autofocus" t-value="True"/>
<t t-set="use_filters" t-value="True"/>
<t t-set="use_size" t-value="o_full_screen_height"/>
<t t-set="display_opt_name">Blog Post Cover</t>
<t t-set="additionnal_classes" t-value="'o_full_screen_height'"/>
</t>
</div>
</div>
</div>
</section>
</xpath>
</template>
<template id="boec_blog_share" name="Boec Blog Share" inherit_id="website_blog.blog_post_content">
<xpath expr="//div[@t-field='blog_post.content']" position="replace">
<div class="social">
<p class="shr">Share</p>
<div class="blog_icon">
<a href="#"><span class="fab fa-facebook-f"/></a>
<a href="#"> <span class="fab fa-pinterest"/></a>
<a href="#"> <span class="fab fa-twitter"/></a>
<a href="#"> <span class="fab fa-linkedin-in"/></a>
</div>
</div>
<div t-field="blog_post.content"
data-editor-message="WRITE HERE OR DRAG BUILDING BLOCKS"
t-attf-class="o_wblog_post_content_field #{'js_tweet' if opt_blog_post_select_to_tweet else ''} #{'js_comment' if opt_blog_post_select_to_comment else ''} #{'o_wblog_read_text' if opt_blog_post_readable else ''}"/>
</xpath>
</template>
</data>
</odoo>