Forum
Displaying content of multiple pages into home page
Hi All ,
In my website , there is a section of case study . I have created multiple pages for case study .
Right now I'm trying to display on my homepage the 3 latest case studies . Just like how we do for perch collections .
So , my main page / Home Page has a section like below .
<section class="news-section-three">
<div class="auto-container">
<!--Sec Title-->
<div class="sec-title centered">
<h2>Latest zemen News</h2>
<div class="title-text">Automate & Simplify The Whole Process</div>
</div>
<div class="row clearfix">
<?php
perch_content_custom('CaseStudy', [
'page'=>'/case-study',
'template'=>'_case-study-main.html',
'sort'=>'date',
'sort-order'=>'DESC',
'count'=>1
]);
?>
</div>
</div>
</section>
Which inturn display the template from this
<!--News Block Three-->
<div class="news-block-three col-lg-4 col-md-6 col-sm-12">
<div class="inner-box wow fadeInLeft" data-wow-delay="0ms" data-wow-duration="1500ms">
<div class="image">
<a href="blog-single.html"><img src="<perch:content type="image" id="Case_Study_BG_image" label="Case_Study_BG_image">" alt="" /></a>
</div>
<div class="lower-content">
<ul class="post-info">
<li><perch:content id="Case_Study_H1" label="Case_Study_H1" type="text"/></li>
</ul>
<h3><a href="blog-single.html"><perch:content id="Case_Study_H1" label="Case_Study_H1" type="text"/></a></h3>
<a class="read-more" href="blog-single.html"><span class="fa fa-angle-right"></span> Read more</a>
</div>
</div>
</div>
all the reference i used in _case-study-main.html are the same tags that i used to create the pages under case study
my Case Study Page looks like this .
Hello Titus,
It's not very clear what you need help with.
Are you having trouble listing more than one case study on the home page?