Server IP : 89.26.249.46  /  Your IP : 216.73.216.42
Web Server : Apache
System : Linux a.cp.cloudlink.pt 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User : eticalga ( 1129)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home/eticalga/www/files/themes/kobuxeticalgarve/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/eticalga/www/files/themes/kobuxeticalgarve/single-projects.php
<?php

/**
 * The Template for displaying all single projects.
 *
 * @package kobuxeticalgarve
 */

get_header(); ?>
<article id="content">
	<?php while (have_posts()) : the_post(); ?>
		<div class="page-top-section">
			<?php include(locate_template('partials/page-top-project.php')); ?>
			<?php
				$project_type = get_field('project_type');
				$project_highlight = get_field('highlight');
				include(locate_template('partials/project-highlight.php'));
			?>
		</div>

		<div class="site-content">
			<?php the_content(); ?>

			<?php
				if (get_field('show_related_course') && ($related_courses = get_field('related_course'))) {
					foreach ($related_courses as $related_courses) {
						$course_id = $related_courses;
			?>
				<ul class="articles-list courses-cards-wrapper courses-cards-wrapper-cta">
					<?php include(locate_template('partials/course-card.php')); ?>
				</ul>
			<?php
					}
				}
			?>
		</div>
	<?php endwhile; ?>
</article>
<?php get_footer(); ?>