Commit 550910e0 by rajshah

done main content single case study

parent 6c1b4490
<!-- Case Study Content -->
<?php
$case_study_content = get_field('case_study_content') ?: [];
if (!empty($case_study_content) && isset($case_study_content) && is_array($case_study_content)):
?>
<section class="case-study-general makura-new">
<div class="container">
<div class="row">
<div class="col-lg-4 col-xl-3">
<aside class="case-study-general-aside toc">
<div class="toc-title d-lg-none">
<h6>Table of Content</h6>
</div>
<div class="category-list">
<ul>
<?php foreach ($case_study_content as $i => $casestudy):
$case_study_content_title = $casestudy['case_study_content_title'] ?? '';
$case_study_content_desc = $casestudy['case_study_content_desc'] ?? '';
$case_study_content_title_id = str_replace(' ', '-', strtolower($case_study_content_title));
if (!empty($case_study_content_title)):
?>
<li class="<?php echo esc_attr($i === 0) ? 'active' : ''; ?>">
<a href="#" data-target="<?php echo esc_attr($case_study_content_title_id); ?>"><?php echo esc_html($case_study_content_title); ?></a>
</li>
<?php endif;
endforeach; ?>
</ul>
</div>
</aside>
</div>
<div class="col-lg-8 col-xl-9">
<div class="case-study-general-content">
<?php foreach ($case_study_content as $i => $casestudy):
$case_study_content_title = $casestudy['case_study_content_title'] ?? '';
$case_study_content_desc = $casestudy['case_study_content_desc'] ?? '';
$case_study_content_title_id = str_replace(' ', '-', strtolower($case_study_content_title));
if (!empty($case_study_content_title)):
?>
<h2 id="<?php echo esc_attr($case_study_content_title_id); ?>"><?php echo esc_html($case_study_content_title); ?></h2>
<?php endif;
if (!empty($case_study_content_desc)): echo esc_html($case_study_content_desc);
endif; ?>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<!-- !Case Study Content -->
\ No newline at end of file
...@@ -775,7 +775,7 @@ function my_acf_init_block_types() ...@@ -775,7 +775,7 @@ function my_acf_init_block_types()
acf_register_block_type(array( acf_register_block_type(array(
'name' => 'Case Study Banner Block', 'name' => 'Case Study Banner Block',
'title' => __('Case Study Banner Block'), 'title' => __('Case Study Banner Block'),
'description' => __('Case Study - Banner Block for SEO Pages'), 'description' => __('Case Study - Banner Block for Makura Projects'),
'render_template' => 'blocks/case-study/case-study-banner.php', 'render_template' => 'blocks/case-study/case-study-banner.php',
'category' => 'formatting', 'category' => 'formatting',
'icon' => file_get_contents(get_template_directory() . '/assets/img/makura.svg'), 'icon' => file_get_contents(get_template_directory() . '/assets/img/makura.svg'),
...@@ -787,5 +787,21 @@ function my_acf_init_block_types() ...@@ -787,5 +787,21 @@ function my_acf_init_block_types()
], ],
], ],
)); ));
// Case Study - Content Block
acf_register_block_type(array(
'name' => 'Case Study Content Block',
'title' => __('Case Study Content Block'),
'description' => __('Case Study - Content Block for Makura Projects'),
'render_template' => 'blocks/case-study/case-study-content.php',
'category' => 'formatting',
'icon' => file_get_contents(get_template_directory() . '/assets/img/makura.svg'),
'keywords' => array('Case Study - Content Block', 'case study', 'content', 'makura'),
'example' => [
'attributes' => [
'mode' => 'preview',
'data' => [],
],
],
));
} }
} }
\ No newline at end of file
...@@ -8,91 +8,7 @@ get_header(); ...@@ -8,91 +8,7 @@ get_header();
the_content(); the_content();
?> ?>
<section class="case-study-general makura-new">
<div class="container">
<div class="row">
<div class="col-lg-4 col-xl-3">
<aside class="case-study-general-aside toc">
<div class="toc-title d-lg-none">
<h6>Table of Content</h6>
</div>
<div class="category-list">
<ul>
<li class="active">
<a href="#" data-target="background">Background</a>
</li>
<li>
<a href="#" data-target="seo">Background</a>
</li>
</ul>
</div>
</aside>
</div>
<div class="col-lg-8 col-xl-9">
<div class="case-study-general-content">
<h2 id="background">Background</h2>
<p>Lambda Payments specializes in financial technology, enriching the way people and businesses pay
and are paid and improving the safety of their money and other valuable assets. Lambda Payments
provides end-to-end Fintech products and solutions to enterprises, banks, and financial
institutions. Combining a team of battle-hardened industry experts with avant-garde technology,
we provide an all-encompassing suite of solutions fitted for the unique needs of our clients.
Dedicated to the pursuit of excellence, focused on user-centric design, they strive to enable
technology to make lives better for all.</p>
<h2 id="seo">SEO Achievements</h2>
<p>Lambda Payments provides end-to-end Fintech products and solutions to enterprises, banks, and
financial institutions.</p>
<ol>
<li>Improved Keyword Rankings
</li>
<li>Increased Traffic</li>
<li> Enhanced User Engagement</li>
<li> Built Industry Authority</li>
</ol>
<table>
<tbody>
<tr>
<td>Metric</td>
<td>Initial Value (Jan 2024)</td>
<td>Final Value (Jan 2025)</td>
<td>Growth</td>
</tr>
<tr>
<td>Authority Score</td>
<td>Authority Score</td>
<td>Authority Score</td>
<td>Authority Score</td>
</tr>
<tr>
<td>Authority Score</td>
<td>Authority Score</td>
<td>Authority Score</td>
<td>Authority Score</td>
</tr>
</tbody>
</table>
<h2>Performance Metrics Graph</h2>
<p>Combining a team of battle-hardened industry experts with avant-garde technology, we provide an
all-encompassing suite of solutions fitted for the unique needs of our clients. Dedicated to the
pursuit of excellence, focused on user-centric design, they strive to enable technology to make
lives better for all.</p>
<img src="<?php echo get_parent_theme_file_uri()?>/assets/img/blog-banner.png" alt=""
class="img-fluid">
<figure>
<img src="<?php echo get_parent_theme_file_uri()?>/assets/img/blog-banner.png" alt=""
class="img-fluid">
</figure>
<h2>Traffic Growth</h2>
<p>In addition to keyword improvements, organic traffic has steadily grown:</p>
<ul>
<li>Organic Traffic: Traffic grew by 78%, from 1,730 visitors to 3,075 in January 2024</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<?php <?php
get_template_part("/template-parts/home/milestone",null); get_template_part("/template-parts/home/milestone",null);
get_footer(); get_footer();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment