BossBey File Manager
PHP:
8.1.34
OS:
Linux
User:
ebookghostwritin
Root
/
home
/
ebookghostwritin
/
public_html
/
beta
/
includes
/
components
/
pages
/
home
📤 Upload
📝 New File
📁 New Folder
Close
Editing: services.php
<section class="home_services"> <div class="container"> <div class="head_area" > <h2>All Under One Umbrella</h2> <p>eBook Ghostwriting always had one mission, which is to provide ease to authors by giving them everything they need</p> </div> <div class="row d-flex justify-content-center" > <?php $services = file_get_contents('assets/json/home-sevices.json'); $data = json_decode($services, true); foreach ($data as $key => $service) { ?> <div class="col-12 col-sm-6 col-md-6 col-lg-3 col-xl-3 col-xxl-3"> <div class="crd" id="services-<?php echo htmlspecialchars($key); ?>"> <span><?php echo htmlspecialchars($service['id']); ?></span> <h3><?php echo htmlspecialchars($service['title']); ?></h3> <p><?php echo htmlspecialchars($service['description']); ?></p> <a href="<?php echo htmlspecialchars($service['url']); ?>"><i class="fa-light fa-arrow-right-long"></i></a> </div> </div> <?php } ?> </div> </div> </section>
Save
Cancel