Files
praxis-creutzburg-web/pcm.php
T

37 lines
1.3 KiB
PHP

<!DOCTYPE HTML>
<html>
<head>
<?php include('header.php'); ?>
<title>Praxis Creutzburg - PCM</title>
</head>
<body>
<header id="header" class="../skel-layers-fixed">
<?php
include('menu.php');
include_once("inc/config.inc.php");
include_once("inc/functions.inc.php");
include_once('inc/functions.impfen.inc.php');
include_once('inc/website_content.inc.php');
$pcmContent = websiteContentGetByTitle($pdo, 'PCM - Seiteninhalt');
?>
</header>
<section id="main" class="container">
<?php echo showHeaderpraxis(); ?>
<section class="box special features">
<span class="image featured"><img src="images/praxis1.jpg" alt="Praxis Creutzburg"></span>
<h2>PCM - die Qualifikation im Überblick</h2>
<?php if (trim((string)($pcmContent['inhalt'] ?? '')) !== ''): ?>
<?php echo $pcmContent['inhalt']; ?>
<?php else: ?>
<p>Die Inhalte zur Qualifikation PCM werden derzeit vorbereitet.</p>
<?php endif; ?>
<p><a href="praxis.php#team" class="button alt">Zurück zum Team</a></p>
</section>
</section>
<?php include_once('footer.php'); ?>
</body>
</html>