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.
 
 
 
 
 

33 lines
1.6 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Blog -->
<template id="levelup_blog_post_loop" inherit_id="website_blog.posts_loop">
<xpath expr="//t[@t-foreach='posts']" position="replace">
<section class="blog">
<div class="wrapper gap">
<div class="container">
<h3 class="main_heading gap2">
Blog
</h3>
<div class="row">
<t t-foreach="posts" t-as="blog_post">
<div class="col-lg-4 col-col-md-4 col-sm-6 col-12">
<div class="card">
<t t-if="opt_posts_loop_show_cover" t-call="website_blog.post_cover_image"/>
<div class="card-body">
<a t-attf-href="/blog/#{slug(blog_post.blog_id)}/#{slug(blog_post)}">
<h5 class="card-title"><t t-esc="blog_post.name"/></h5>
</a>
<p class="card-text"><t t-esc="blog_post.teaser"/></p>
<t t-call="website_blog.post_info"/>
</div>
</div>
</div>
</t>
</div>
</div>
</div>
</section>
</xpath>
</template>
</odoo>