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.
43 lines
2.1 KiB
43 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<templates id="template" xml:space="preserve">
|
|
<!-- Used to create the recent blogs-->
|
|
<t t-name="diva_index2_blog" name="Index 2 Blog">
|
|
<div class="wrapper">
|
|
<div class="heading">
|
|
<h3 class="main">Blog</h3>
|
|
</div>
|
|
<div class="container-fluid">
|
|
<div class="blog_content">
|
|
<div class="card-group">
|
|
<t t-foreach="posts_recent" t-as="p" t-key="p">
|
|
<div class="card hvr-underline-reveal">
|
|
<div class="top_type icon">
|
|
NEWS
|
|
</div>
|
|
<div class="o_record_cover_container d-flex
|
|
flex-column h-100 o_colored_level o_cc img_wrap">
|
|
<div t-attf-style="background-image:
|
|
{{getBackground(p.cover_properties)}}"
|
|
class="o_record_cover_component o_record_cover_image "/>
|
|
</div>
|
|
<div class="card-body subline">
|
|
<a t-attf-href="/blog/#{p.blog_id[0]}/#{p.id}">
|
|
<h5 class="card-title"
|
|
style="color:black;">
|
|
<t t-esc="p.name"/>
|
|
</h5>
|
|
</a>
|
|
<p class="card-text">
|
|
<small class="text-muted">
|
|
<t t-esc="changeDateFormat(p.published_date)"/>
|
|
</small>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</templates>
|
|
|