Praxis Webseite Update
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
<!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>
|
||||
<style>
|
||||
.pcm-intro {
|
||||
max-width: 860px;
|
||||
margin: 0 auto 1.8rem auto;
|
||||
text-align: center;
|
||||
}
|
||||
.pcm-intro .pcm-kicker {
|
||||
display: inline-flex;
|
||||
padding: 0.4rem 0.9rem;
|
||||
margin-bottom: 0.9rem;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(135deg, rgba(233, 241, 255, 0.95), rgba(245, 248, 252, 0.95));
|
||||
color: #29415f;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.08em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.pcm-intro h2 {
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
.pcm-intro p {
|
||||
font-size: 1.08rem;
|
||||
line-height: 1.8;
|
||||
color: #54626f;
|
||||
}
|
||||
.pcm-content {
|
||||
max-width: 880px;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
}
|
||||
.pcm-content h3 {
|
||||
margin-top: 1.8rem;
|
||||
color: #30404f;
|
||||
}
|
||||
.pcm-content ul {
|
||||
margin: 0.8rem 0 0;
|
||||
padding-left: 1.15rem;
|
||||
line-height: 1.8;
|
||||
color: #4e5860;
|
||||
}
|
||||
.pcm-callout {
|
||||
margin: 1.3rem 0;
|
||||
padding: 1rem 1.15rem;
|
||||
border-left: 4px solid #6b8bb4;
|
||||
background: #f7f9fc;
|
||||
border-radius: 16px;
|
||||
color: #44505d;
|
||||
}
|
||||
.pcm-content p {
|
||||
line-height: 1.8;
|
||||
color: #4e5860;
|
||||
}
|
||||
</style>
|
||||
<div class="pcm-intro">
|
||||
<span class="pcm-kicker">Primary Care Management</span>
|
||||
<h2>PCM - die Qualifikation im Überblick</h2>
|
||||
<p>PCM stärkt Medizinische Fachangestellte in medizinischen, organisatorischen und kommunikativen Aufgaben rund um die hausärztliche Versorgung. Die ausführliche Einordnung dazu steht im folgenden Inhalt.</p>
|
||||
</div>
|
||||
<div class="pcm-content">
|
||||
<?php if (trim((string)($pcmContent['inhalt'] ?? '')) !== ''): ?>
|
||||
<?php echo $pcmContent['inhalt']; ?>
|
||||
<?php else: ?>
|
||||
<p>Die Inhalte zur Qualifikation PCM werden derzeit vorbereitet.</p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<p><a href="praxis.php#team" class="button alt">Zurück zum Team</a></p>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<?php include_once('footer.php'); ?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user