PHP Classes

File: aksara/Modules/Peoples/Views/index.php

Recommend this page to a friend!
  Packages of Aby Dahana   Aksara   aksara/Modules/Peoples/Views/index.php   Download  
File: aksara/Modules/Peoples/Views/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: style(Modules): modernize and refine Auth, Peoples, and Testimonials views
Date: 6 days ago
Size: 2,923 bytes
 

Contents

Class file image Download
<?php
/**
 * @var mixed $results
 * @var mixed $meta
 * @var mixed $pagination
 */

if ($results): ?>
<section class="section-padding">
    <div class="container position-relative text-center text-md-start fade-in">
        <h1 class="display-4 fw-bold text-dark">
            <?= $meta->title; ?>
</h1>
        <p class="fs-5 text-muted mb-0">
            <?= truncate($meta->description, 256); ?>
</p>
    </div>
</section>
<?php endif; ?>

<section class="section-padding">
    <div class="container">
        <?php if ($results): ?>
<div class="row">
                <?php foreach ($results as $key => $val): ?>
<div class="col-6 col-md-4 col-lg-3">
                        <div class="mb-4 text-center">
                            <a href="<?= go_to($val->people_slug); ?>" class="--xhr">
                                <img src="<?= get_image('peoples', $val->photo, 'thumb'); ?>" class="img-fluid rounded-circle" alt="<?= $val->first_name . ' ' . $val->last_name; ?>" />
                            </a>
                            <h3 class="text-truncate">
                                <a href="<?= go_to($val->people_slug); ?>" class="--xhr">
                                    <?= truncate($val->first_name, 22) . ' ' . truncate($val->last_name, 22); ?>
</a>
                            </h3>
                            <h6 class="text-truncate">
                                <a href="<?= go_to($val->people_slug); ?>" class="text-muted --xhr">
                                    <?= truncate($val->position, 22); ?>
</a>
                            </h6>
                        </div>
                    </div>
                <?php endforeach; ?>
</div>

            <?= pagination($pagination); ?>
<?php else: ?>
<div class="row">
                <div class="col-lg-8 offset-lg-2">
                    <div class="py-5">
                        <div class="text-center">
                            <img src="<?= base_url('assets/yao-ming.png'); ?>" width="128" alt="404" />
                        </div>
                        <h2 class="text-center">
                            <?= phrase('No people is found!'); ?>
</h2>
                        <p class="fs-5 text-center">
                            <?= phrase('No people is available at the moment.'); ?>
</p>
                        <p class="text-center">
                            <a href="<?= base_url(); ?>" class="btn btn-outline-dark rounded-pill px-5 --xhr">
                                <i class="mdi mdi-arrow-left"></i> <?= phrase('Back to Home'); ?>
</a>
                        </p>
                    </div>
                </div>
            </div>
        <?php endif; ?>
</div>
</section>