|
@@ -95,26 +95,28 @@ get_header(); ?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="profile-header-text">
|
|
<div class="profile-header-text">
|
|
- <!-- <h3 class="sub-title">Faculty Profile</h3> -->
|
|
|
|
|
|
+ <!-- <h3 class="sub-title">Faculty profile</h3> -->
|
|
<h1 class="profile-name">
|
|
<h1 class="profile-name">
|
|
- <?php echo get_the_title(); ?>
|
|
|
|
|
|
+ <?php echo $employeeInfo[0]['Title'];
|
|
|
|
+ echo " " . $employeeInfo[0]['FullName'];
|
|
|
|
+ ?>
|
|
</h1>
|
|
</h1>
|
|
-
|
|
|
|
<h2 class="profile-des">
|
|
<h2 class="profile-des">
|
|
- <?php the_field('designation'); ?>
|
|
|
|
|
|
+ <?php echo $employeeInfo[0]['Designation'];
|
|
|
|
+ echo ", " . $employeeInfo[0]['Office'];
|
|
|
|
+ ?>
|
|
</h2>
|
|
</h2>
|
|
|
|
+ <span class="contact-dets"><?php echo "ROOM: " . $employeeInfo[0]['Room']; ?></span>
|
|
|
|
+ <span class="contact-dets"><?php echo "PABX: " . $employeeInfo[0]['PABX']; ?></span>
|
|
|
|
+ <br />
|
|
|
|
|
|
- <?php if (have_rows('contact_details')) : ?>
|
|
|
|
|
|
+ <span class="contact-dets"><?php echo $employeeInfo[0]['Phone']; ?></span>
|
|
|
|
+ <span class="contact-dets"><?php echo $employeeInfo[0]['Email']; ?></span>
|
|
|
|
|
|
|
|
+ <?php if (have_rows('contact_details')) : ?>
|
|
<?php while (have_rows('contact_details')) : the_row(); ?>
|
|
<?php while (have_rows('contact_details')) : the_row(); ?>
|
|
-
|
|
|
|
<span class="contact-dets"><?php the_sub_field('contact_info'); ?></span>
|
|
<span class="contact-dets"><?php the_sub_field('contact_info'); ?></span>
|
|
- <?php
|
|
|
|
- // $sub_field_3 = get_sub_field('sub_field_3');
|
|
|
|
- // do something with $sub_field_3
|
|
|
|
- ?>
|
|
|
|
<?php endwhile; ?>
|
|
<?php endwhile; ?>
|
|
-
|
|
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -157,12 +159,83 @@ get_header(); ?>
|
|
<div class="bio desc-block">
|
|
<div class="bio desc-block">
|
|
<h2 class="m-text">Publication</h2>
|
|
<h2 class="m-text">Publication</h2>
|
|
<p class="m-text">
|
|
<p class="m-text">
|
|
- <?php
|
|
|
|
- echo '<pre>';
|
|
|
|
- print_r($employeeInfo);
|
|
|
|
- print_r($employeeJournal);
|
|
|
|
- print_r($employeeConference);
|
|
|
|
- ?>
|
|
|
|
|
|
+ <h3 class="paper-type">Journal Papers</h3>
|
|
|
|
+
|
|
|
|
+ <?php
|
|
|
|
+ foreach ($employeeJournal as $item) {
|
|
|
|
+ // Access individual elements of each response
|
|
|
|
+ echo "<div class='paper-details'>";
|
|
|
|
+ echo "<span class='paper-year'>{$item['Year']}</span>";
|
|
|
|
+
|
|
|
|
+ // Iterate over the JournalList array within each item
|
|
|
|
+ foreach ($item['JournalList'] as $journal) {
|
|
|
|
+ // Access individual elements of each journal
|
|
|
|
+ echo "<a href='{$journal['JournalLink']}'>";
|
|
|
|
+ echo "<h2 class='paper-title'>{$journal['PaperTitle']}</h2>";
|
|
|
|
+ echo "</a>";
|
|
|
|
+ echo "<p class='paper-tags'>";
|
|
|
|
+ $journalKeyword = explode(',', $journal['Keyword']);
|
|
|
|
+ foreach ($journalKeyword as $keyword) {
|
|
|
|
+ if ($keyword) {
|
|
|
|
+ echo "<span class='tag'>{$keyword}</span>";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ echo "</p>";
|
|
|
|
+ echo "<p class='paper-event'>Publication: {$journal['JournalTitle']}</p>";
|
|
|
|
+ echo "<p class='paper-contributors'>";
|
|
|
|
+ echo "Author List: ";
|
|
|
|
+ // Iterate over the Author array within each journal
|
|
|
|
+ foreach ($journal['Author'] as $author) {
|
|
|
|
+ // Access individual elements of each author
|
|
|
|
+ $authorName = $author['AuthorName'];
|
|
|
|
+ // Process or output the values as needed
|
|
|
|
+ echo " $authorName,";
|
|
|
|
+ }
|
|
|
|
+ echo "</p>";
|
|
|
|
+ }
|
|
|
|
+ echo "</div>";
|
|
|
|
+ }
|
|
|
|
+ ?>
|
|
|
|
+
|
|
|
|
+ <h3 class="paper-type">Conference Papers</h3>
|
|
|
|
+
|
|
|
|
+ <?php
|
|
|
|
+ foreach ($employeeConference as $item) {
|
|
|
|
+ // Access individual elements of each response
|
|
|
|
+ $item_count = "single";
|
|
|
|
+ if (count($item['ConferenceList']) > 1) {
|
|
|
|
+ $item_count = "multiple";
|
|
|
|
+ }
|
|
|
|
+ echo "<div class='paper-details {$item_count}'>";
|
|
|
|
+ echo "<span class='paper-year'>{$item['Year']}</span>";
|
|
|
|
+
|
|
|
|
+ // Iterate over the JournalList array within each item
|
|
|
|
+ foreach ($item['ConferenceList'] as $conference) {
|
|
|
|
+ // Access individual elements of each journal
|
|
|
|
+ echo "<a href='{$conference['Link']}'>";
|
|
|
|
+ echo "<h2 class='paper-title'>{$conference['PaperTitle']}</h2>";
|
|
|
|
+ echo "</a>";
|
|
|
|
+ echo "<p class='paper-tags'>";
|
|
|
|
+ $conferenceKeyword = explode(',', $conference['Keyword']);
|
|
|
|
+ foreach ($conferenceKeyword as $keyword) {
|
|
|
|
+ if ($keyword) {
|
|
|
|
+ echo "<span class='tag'>{$keyword}</span>";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ echo "</p>";
|
|
|
|
+ echo "<p class='paper-event'>Conference: {$conference['ConferenceName']}</p>";
|
|
|
|
+ echo "<p class='paper-contributors'>";
|
|
|
|
+ echo "Author List: ";
|
|
|
|
+ // Iterate over the Author array within each journal
|
|
|
|
+ foreach ($conference['Author'] as $author) {
|
|
|
|
+ // Process or output the values as needed
|
|
|
|
+ echo " {$author['AuthorName']},";
|
|
|
|
+ }
|
|
|
|
+ echo "</p>";
|
|
|
|
+ }
|
|
|
|
+ echo "</div>";
|
|
|
|
+ }
|
|
|
|
+ ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -215,7 +288,7 @@ get_header(); ?>
|
|
max-width: 1200px;
|
|
max-width: 1200px;
|
|
font-size: 18px;
|
|
font-size: 18px;
|
|
color: #ffc3c3;
|
|
color: #ffc3c3;
|
|
- margin: 50px 15px !important;
|
|
|
|
|
|
+ /* margin: 50px 15px !important; */
|
|
}
|
|
}
|
|
|
|
|
|
.desc-block ul>li {
|
|
.desc-block ul>li {
|
|
@@ -591,5 +664,76 @@ get_header(); ?>
|
|
right: 45px;
|
|
right: 45px;
|
|
font-size: 60px;
|
|
font-size: 60px;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /* added by rousnay */
|
|
|
|
+ .profile-header-text h2 {
|
|
|
|
+ margin: 5px 0px 10px !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .profile-header-text .contact-dets {
|
|
|
|
+ margin-top: 0px !important;
|
|
|
|
+ margin-right: 10px !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ h3.paper-type {
|
|
|
|
+ margin: 40px 0 0;
|
|
|
|
+ text-decoration: underline;
|
|
|
|
+ color: antiquewhite;
|
|
|
|
+ font-family: "DM Serif Text", serif;
|
|
|
|
+ letter-spacing: 1px;
|
|
|
|
+ font-size: 1.4em;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details {
|
|
|
|
+ padding: 30px 0px;
|
|
|
|
+ border-bottom: 1px solid rgba(51, 51, 51, 0.1764705882);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details .paper-year {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ display: block;
|
|
|
|
+ color: antiquewhite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details a {
|
|
|
|
+ text-decoration: none;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details p {
|
|
|
|
+ line-height: 1.8em !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details .paper-title {
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ margin: 10px 0px;
|
|
|
|
+ font-family: "Open Sans", sans-serif;
|
|
|
|
+ line-height: 1.7em;
|
|
|
|
+ letter-spacing: 0.5px;
|
|
|
|
+ color: antiquewhite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details .paper-tags {
|
|
|
|
+ margin: 20px 0px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details .paper-tags .tag {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ border: 1px solid rgba(17, 124, 247, 0.431372549);
|
|
|
|
+ padding: 3px 8px;
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details p {
|
|
|
|
+ margin: 5px;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details .paper-contributors {
|
|
|
|
+ /* color: #222222; */
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .paper-details.multiple .paper-contributors {
|
|
|
|
+ margin-bottom: 45px;
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|
|
<?php get_footer(); ?>
|
|
<?php get_footer(); ?>
|