|
@@ -65,11 +65,11 @@ get_header(); ?>
|
|
|
<h4>Welcome to </h4>
|
|
|
<h1>Department of <br>
|
|
|
Computer Science & Engineering</h1>
|
|
|
- <h3>
|
|
|
- United International University
|
|
|
+ United International University
|
|
|
</h3>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
@@ -152,7 +152,7 @@ get_header(); ?>
|
|
|
<p>
|
|
|
The Department of Computer Science and Engineering faculty members are an impressive group, bearing the academic tradition of higher excellence. World renowned, they are engaged in ground-breaking research. Further, they are so attuned to what’s happening in business that they are shaping its future.
|
|
|
</p>
|
|
|
- <a href="https://uiu.revinr.work/cse/faculty/">
|
|
|
+ <a href="/faculty/">
|
|
|
<button class="primary-c">
|
|
|
View complete faculty list
|
|
|
</button>
|
|
@@ -175,108 +175,46 @@ get_header(); ?>
|
|
|
|
|
|
<div class="profile-carousel">
|
|
|
|
|
|
- <div class="car-item">
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/saim.jpg" alt="">
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Islam, Salekul<span class="degree">, Ph.D.</span></h2>
|
|
|
- <h3><span class="degree">Professor & Head of the Dept.</span></h3>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="car-item">
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/mamun.jpg" alt="">
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Mamun, Khondaker Abdullah Al<span class="degree">, Ph.D.</span></h2>
|
|
|
- <h3><span class="degree">Professor & Director - AIMS Lab</span></h3>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="car-item">
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/swakkhar.jpg" alt="">
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Shatabda, Swakkhar<span class="degree">, Ph.D</span></h2>
|
|
|
- <h3><span class="degree">Professor & Director - IQAC</span></h3>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="car-item">
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/ShahriarRahman.jpg" alt="">
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Rahman, Mohammad Shahriar<span class="degree">, Ph.D</span></h2>
|
|
|
- <h3><span class="degree">Professor & Director - CITS</span></h3>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="car-item">
|
|
|
-
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/mofizur.jpg" alt="">
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Rahman, Chowdhury Mofizur<span class="degree">, Ph.D</span></h2>
|
|
|
- <h3><span class="degree">Professor & Advisor to Board of Trustees</span></h3>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- <div class="car-item">
|
|
|
+ <?php
|
|
|
+ $args = array(
|
|
|
+ 'post_type' => 'faculty',
|
|
|
+ 'posts_per_page' => 10,
|
|
|
+ //'post__not_in' => array(get_the_ID()),
|
|
|
+ 'orderby' => 'date',
|
|
|
+ 'order' => 'DESC',
|
|
|
+ );
|
|
|
+
|
|
|
+ $query = new WP_Query($args);
|
|
|
+
|
|
|
+ if ($query->have_posts()) :
|
|
|
+ while ($query->have_posts()) :
|
|
|
+ $query->the_post(); ?>
|
|
|
+ <div class="car-item">
|
|
|
+
|
|
|
+ <div class="car-item-holder">
|
|
|
+ <div class="car-img-holder">
|
|
|
+ <img src="<?php the_field('profile_photo') ?>" alt="">
|
|
|
+ </div>
|
|
|
+ <a class="faculty-name" href="<?php echo get_the_permalink(); ?>">
|
|
|
+ <div class="faculty-details">
|
|
|
|
|
|
- <div class="car-item-holder">
|
|
|
- <div class="car-img-holder">
|
|
|
- <img src="<?php echo (get_template_directory_uri()) ?>/img/nurul-huda.png" alt="">
|
|
|
- </div>
|
|
|
+ <h2><?php echo get_the_title(); ?><span class="degree">, Ph.D.</span></h2>
|
|
|
+ <h3><span class="degree">Department of Computer Science and Engineering</span></h3>
|
|
|
|
|
|
- <div class="faculty-details">
|
|
|
- <h2>Huda, Mohammad Nurul<span class="degree">, Ph.D</span></h2>
|
|
|
- <h3><span class="degree">Professor & Director - MSCSE</span></h3>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
|
|
|
</div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
+ <?php
|
|
|
+ endwhile;
|
|
|
+ else :
|
|
|
+ echo '<div class="no-post-found">No faculty profile has found! </div>';
|
|
|
+ endif; ?>
|
|
|
|
|
|
</div>
|
|
|
-
|
|
|
</section>
|
|
|
|
|
|
-
|
|
|
<section id="Success-section" class="container-fluid white-bg">
|
|
|
<div class="container">
|
|
|
<h1>Success Stories</h1>
|