Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
makura-2025
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Raj Shah
makura-2025
Commits
4c72fe35
Commit
4c72fe35
authored
Jan 02, 2025
by
rajshah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
done for icon box
parent
80543b07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
29 deletions
+46
-29
icon-box.php
blocks/seo/icon-box.php
+46
-29
No files found.
blocks/seo/icon-box.php
View file @
4c72fe35
<section
class=
"SERVICE-LISTING pt-80"
>
<div
class=
"container"
>
<div
class=
"top-title section-title"
>
<h2>
Services we provide in Content Marketing
</h2>
<p>
Our swift-paced team is capable of handling design projects on anywhere and anytime. We’re ready to deliver
your best product wherever you are!
</p>
</div>
<!-- Seo - Icon Box Section -->
<?php
$ibs
=
get_field
(
'ibs'
)
?:
[];
if
(
isset
(
$ibs
)
&&
is_array
(
$ibs
)
&&
!
empty
(
$ibs
))
:
$enable_ibs
=
$ibs
[
'enable_ibs'
]
?:
false
;
if
(
$enable_ibs
)
:
$ibs_title
=
$ibs
[
'ibs_title'
]
?:
''
;
$ibs_desc
=
$ibs
[
'ibs_desc'
]
?:
''
;
$ibs_items
=
$ibs
[
'ibs_items'
]
?:
[];
if
(
isset
(
$ibs_items
)
&&
is_array
(
$ibs_items
)
&&
!
empty
(
$ibs_items
))
:
?>
<section
class=
"SERVICE-LISTING pt-80"
>
<div
class=
"container"
>
<div
class=
"top-title section-title"
>
<?php
if
(
!
empty
(
$ibs_title
))
:
?>
<h1>
<?php
echo
$ibs_title
;
?>
</h1>
<?php
endif
;
echo
$ibs_desc
?:
''
;
?>
</div>
<div
class=
"row"
>
<?php
$services
=
array_fill
(
0
,
4
,
[]);
foreach
(
$services
as
$service
)
{
?>
<div
class=
"col-md-6 col-xl-3"
>
<div
class=
"service-item"
>
<div
class=
"si-icon"
>
<img
src=
"
<?php
echo
get_parent_theme_file_uri
()
?>
/assets/img/service-detail-01.svg"
alt=
""
>
</div>
<div
class=
"si-content"
>
<strong>
Strategy Development
</strong>
<p>
We design a custom content strategy that aligns with your business objectives, target audience, and
industry trends.
</p>
</div>
<div
class=
"row"
>
<?php
foreach
(
$ibs_items
as
$ibsi
)
{
$ibsi_icon
=
$ibsi
[
'ibsi_icon'
]
?:
''
;
$ibsi_title
=
$ibsi
[
'ibsi_title'
]
?:
''
;
$ibsi_desc
=
$ibsi
[
'ibsi_desc'
]
?:
''
;
?>
<div
class=
"col-md-6 col-xl-3"
>
<div
class=
"service-item"
>
<?php
if
(
!
empty
(
$ibsi_icon
))
:
?>
<div
class=
"si-icon"
>
<img
src=
"
<?php
echo
esc_url
(
$ibsi_icon
);
?>
"
alt=
"
<?php
echo
esc_attr
(
$ibsi_title
);
?>
"
>
</div>
<?php
endif
;
?>
<div
class=
"si-content"
>
<?php
if
(
!
empty
(
$ibsi_title
))
:
?>
<strong>
<?php
echo
$ibsi_title
;
?>
</strong>
<?php
endif
;
echo
$ibsi_desc
?:
''
;
?>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
<?php
}
?>
</div>
</div>
</section>
\ No newline at end of file
</section>
<?php
endif
;
endif
;
endif
;
?>
<!-- !Seo - Icon Box Section -->
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment