D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
epaji.com
/
public_html
/
hindiusa
/
views
/
teachers
/
Filename :
teacher-details.php
back
Copy
<?php use yii\helpers\Html; ?> <div class="main-wrapper teachers-details"> <!-- ==================================== ——— BREADCRUMB ===================================== --> <section class="breadcrumb-bg" style="background-image: url(/uploads/page-title-bg-img.jpg); "> <div class="container"> <div class="breadcrumb-holder"> <div> <h2 class="breadcrumb-title-school"><?= $school->name; ?></h2> <h1 class="breadcrumb-title"><?= $teacher->name; ?></h1> </div> </div> </div> </section> <!-- ==================================== ——— TEACHERS DETAILS ===================================== --> <section class="py-7 py-md-10"> <div class="container"> <div class="row"> <div class="col-sm-4 col-xs-12"> <div class="image mb-5 mb-md-0"> <?php if ($teacher->photo_image != '') { ?> <?php echo Html::img(Yii::$app->request->baseUrl.'/'.$teacher->photo_image, ['class' => 'w-100 rounded','alt' => $teacher->name]); ?> <?php } else { ?> <?php echo Html::img('/uploads/user.jpg', ['class' => 'w-100 rounded','alt' => $teacher->name]); ?> <?php } ?> </div> </div> <div class="col-sm-8 col-xs-12"> <h2 class="text-danger font-weight-bold text-capitalize pl-0 mb-5">about <?= $teacher->name; ?></h2> <p class="text-muted mb-5"><?= $teacher->description; ?></p> <div class=""> <?php if($teacher->facebook != '') { ?> <a class="icon-rounded-circle-small bg-warning mr-2" href="<?= $teacher->facebook; ?>" target="_blank"> <i class="fa fa-facebook text-white" aria-hidden="true"></i> </a> <?php } if($teacher->twitter != '') { ?> <a class="icon-rounded-circle-small bg-success mr-2" href="<?= $teacher->twitter; ?>" target="_blank"> <i class="fa fa-twitter text-white" aria-hidden="true"></i> </a> <?php } if($teacher->linkdin != '') { ?> <a class="icon-rounded-circle-small bg-danger mr-2" href="<?= $teacher->linkdin; ?>" target="_blank"> <i class="fa fa-linkedin text-white" aria-hidden="true"></i> </a> <?php } if($teacher->youtube != '') { ?> <a class="icon-rounded-circle-small bg-info mr-2" href="<?= $teacher->youtube; ?>" target="_blank"> <i class="fa fa-youtube text-white" aria-hidden="true"></i> </a> <?php } ?> </div> <h2 class="text-danger font-weight-medium mb-3 ">Teachers Information</h2> <div class="text-white rounded bg-warning text-uppercase font-weight-medium px-6 py-3 mb-3">designation</div> <div class="text-muted text-capitalize font-weight-medium ml-4 mb-5 font-size-20"><?= $teacher->designation; ?></div> </div> </div> </div> </section> </div> <!-- element wrapper ends -->