Praxis Webseite Update
This commit is contained in:
@@ -58,17 +58,23 @@ if (!check_worker()) {
|
||||
$inhaltid = (int)($_POST["inhaltid"] ?? 0);
|
||||
$inhalt = $_POST["inhalt"] ?? "";
|
||||
$webseitentitel = $_POST["webseitentitel"] ?? "";
|
||||
$beschreibung = $_POST["beschreibung"] ?? "";
|
||||
$url = $_POST["url"] ?? "";
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare("
|
||||
UPDATE webseiteninhalt
|
||||
SET inhalt = :inhalt,
|
||||
webseitentitel = :webseitentitel
|
||||
webseitentitel = :webseitentitel,
|
||||
beschreibung = :beschreibung,
|
||||
url = :url
|
||||
WHERE inhaltid = :inhaltid
|
||||
");
|
||||
$stmt->execute([
|
||||
':inhalt' => $inhalt,
|
||||
':webseitentitel' => $webseitentitel,
|
||||
':beschreibung' => $beschreibung,
|
||||
':url' => $url,
|
||||
':inhaltid' => $inhaltid,
|
||||
]);
|
||||
|
||||
@@ -85,7 +91,7 @@ if (!check_worker()) {
|
||||
|
||||
try {
|
||||
$stmt = $pdo->prepare("
|
||||
SELECT webseitentitel, inhalt
|
||||
SELECT webseitentitel, inhalt, beschreibung, url
|
||||
FROM webseiteninhalt
|
||||
WHERE inhaltid = ?
|
||||
LIMIT 1
|
||||
@@ -98,13 +104,20 @@ if (!check_worker()) {
|
||||
} else {
|
||||
$webseitentitel = $rowconfig["webseitentitel"] ?? "";
|
||||
$inhalt = $rowconfig["inhalt"] ?? "";
|
||||
$beschreibung = $rowconfig["beschreibung"] ?? "";
|
||||
$url = $rowconfig["url"] ?? "";
|
||||
|
||||
echo "<h1>Webseiteninhalt bearbeiten</h1><br>";
|
||||
echo "<h4>Vorlage: " . htmlspecialchars($webseitentitel, ENT_QUOTES, 'UTF-8') . "</h4>";
|
||||
echo "<br><br>";
|
||||
|
||||
echo "<form action='" . htmlspecialchars($_SERVER['PHP_SELF'], ENT_QUOTES, 'UTF-8') . "' method='POST'>";
|
||||
echo "<input name='webseitentitel' type='hidden' value='" . htmlspecialchars($webseitentitel, ENT_QUOTES, 'UTF-8') . "'>";
|
||||
echo "<label>Titel</label><br>";
|
||||
echo "<input name='webseitentitel' type='text' class='form-control' value='" . htmlspecialchars($webseitentitel, ENT_QUOTES, 'UTF-8') . "'><br><br>";
|
||||
echo "<label>Beschreibung</label><br>";
|
||||
echo "<input name='beschreibung' type='text' class='form-control' value='" . htmlspecialchars($beschreibung, ENT_QUOTES, 'UTF-8') . "'><br><br>";
|
||||
echo "<label>URL / Hinweis</label><br>";
|
||||
echo "<input name='url' type='text' class='form-control' value='" . htmlspecialchars($url, ENT_QUOTES, 'UTF-8') . "'><br><br>";
|
||||
echo "<div id='my-editor'></div>";
|
||||
// Inhalt ist HTML -> bewusst NICHT escapen, sonst zerstörst du HTML im Editor
|
||||
echo "<textarea height='200' name='inhalt' id='trumbowyg-demo'>" . $inhalt . "</textarea>";
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 126 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 229 KiB |
@@ -0,0 +1,6 @@
|
||||
<svg width="720" height="720" viewBox="0 0 720 720" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="720" height="720" rx="36" fill="#F3F4F6"/>
|
||||
<circle cx="360" cy="235" r="112" fill="#9CA3AF"/>
|
||||
<path d="M152 608C152 488.706 248.706 392 368 392H352C471.294 392 568 488.706 568 608V624H152V608Z" fill="#9CA3AF"/>
|
||||
<path d="M228 608C228 530.68 290.68 468 368 468H352C429.32 468 492 530.68 492 608V624H228V608Z" fill="#6B7280"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 452 B |
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
if (!function_exists('websiteContentEnsureEntry')) {
|
||||
function websiteContentEnsureEntry(PDO $pdo, array $entry): int
|
||||
{
|
||||
$title = trim((string)($entry['webseitentitel'] ?? ''));
|
||||
if ($title === '') {
|
||||
throw new InvalidArgumentException('webseitentitel is required');
|
||||
}
|
||||
|
||||
$stmt = $pdo->prepare("
|
||||
SELECT inhaltid
|
||||
FROM webseiteninhalt
|
||||
WHERE webseitentitel = :webseitentitel
|
||||
ORDER BY inhaltid DESC
|
||||
LIMIT 1
|
||||
");
|
||||
$stmt->execute(['webseitentitel' => $title]);
|
||||
$existingId = (int)($stmt->fetchColumn() ?: 0);
|
||||
|
||||
if ($existingId > 0) {
|
||||
return $existingId;
|
||||
}
|
||||
|
||||
$insert = $pdo->prepare("
|
||||
INSERT INTO webseiteninhalt (webseitentitel, inhalt, beschreibung, url)
|
||||
VALUES (:webseitentitel, :inhalt, :beschreibung, :url)
|
||||
");
|
||||
$insert->execute([
|
||||
'webseitentitel' => $title,
|
||||
'inhalt' => (string)($entry['inhalt'] ?? ''),
|
||||
'beschreibung' => (string)($entry['beschreibung'] ?? ''),
|
||||
'url' => (string)($entry['url'] ?? ''),
|
||||
]);
|
||||
|
||||
return (int)$pdo->lastInsertId();
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('websiteContentEnsureEntries')) {
|
||||
function websiteContentEnsureEntries(PDO $pdo, array $entries): void
|
||||
{
|
||||
foreach ($entries as $entry) {
|
||||
websiteContentEnsureEntry($pdo, $entry);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!function_exists('websiteContentGetByTitle')) {
|
||||
function websiteContentGetByTitle(PDO $pdo, string $title, string $fallback = ''): array
|
||||
{
|
||||
$stmt = $pdo->prepare("
|
||||
SELECT inhaltid, webseitentitel, inhalt, beschreibung, url
|
||||
FROM webseiteninhalt
|
||||
WHERE webseitentitel = :webseitentitel
|
||||
ORDER BY inhaltid DESC
|
||||
LIMIT 1
|
||||
");
|
||||
$stmt->execute(['webseitentitel' => $title]);
|
||||
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
||||
|
||||
if ($row) {
|
||||
return $row;
|
||||
}
|
||||
|
||||
return [
|
||||
'inhaltid' => 0,
|
||||
'webseitentitel' => $title,
|
||||
'inhalt' => $fallback,
|
||||
'beschreibung' => '',
|
||||
'url' => '',
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,7 @@
|
||||
<li><a href="praxis.php">Die Praxis</a></li>
|
||||
<li><a href="praxis.php#philosophie">Philosophie</a></li>
|
||||
<li><a href="praxis.php#team">Das Team</a></li>
|
||||
<li><a href="pcm.php">PCM</a></li>
|
||||
<li><a href="sprechzeiten.php#sprechzeiten">Sprechzeiten</a></li>
|
||||
|
||||
<li><a href="sprechzeiten.php#anfahrt">Anfahrt</a></li>
|
||||
|
||||
@@ -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>
|
||||
+223
-11
@@ -11,7 +11,7 @@
|
||||
include('header.php');
|
||||
|
||||
?>
|
||||
<title>Praxis Creutzburg - Die Praxis</title>
|
||||
<title>Praxis Creutzburg - Die Praxis</title>
|
||||
|
||||
</head>
|
||||
<body >
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
<?php
|
||||
|
||||
include('menu.php');
|
||||
include('menu.php');
|
||||
include_once("inc/config.inc.php");
|
||||
include_once("inc/functions.inc.php");
|
||||
include_once('inc/functions.impfen.inc.php');
|
||||
@@ -79,19 +79,231 @@
|
||||
</section>
|
||||
|
||||
<section class="box special features" id="team">
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
.team-intro {
|
||||
max-width: 920px;
|
||||
margin: 0 auto 2.2rem auto;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
.team-list {
|
||||
max-width: 1080px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.team-profile {
|
||||
padding: 2rem 0;
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
.team-profile:first-child {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
.team-profile__role {
|
||||
display: block;
|
||||
margin-bottom: 0.55rem;
|
||||
color: #6c5320;
|
||||
font-size: 0.92rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.18em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.team-profile__name {
|
||||
margin: 0 0 0.2rem 0;
|
||||
font-size: 2.35rem;
|
||||
line-height: 1.06;
|
||||
color: #263545;
|
||||
}
|
||||
.team-profile__subtitle {
|
||||
margin: 0 0 1rem 0;
|
||||
font-size: 1.18rem;
|
||||
font-weight: 700;
|
||||
color: #495666;
|
||||
}
|
||||
.team-profile__body {
|
||||
display: grid;
|
||||
grid-template-columns: 240px 1fr;
|
||||
gap: 1.6rem;
|
||||
align-items: center;
|
||||
}
|
||||
.team-profile__media img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
aspect-ratio: 1 / 1;
|
||||
object-fit: cover;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.team-profile__text p:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.team-profile__text p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.team-profile__points {
|
||||
margin: 1rem 0 0;
|
||||
padding-left: 1.1rem;
|
||||
}
|
||||
.team-profile__points li {
|
||||
margin-bottom: 0.35rem;
|
||||
}
|
||||
@media (max-width: 736px) {
|
||||
.team-profile {
|
||||
padding: 1.5rem 0;
|
||||
}
|
||||
.team-profile__body {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.team-profile__name {
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<h2>Praxis-Team</h2>
|
||||
<h3>Arzt</h3>
|
||||
Heiner Creutzburg
|
||||
<span class="image featured"><img src="images/arztbuero.jpg" alt="" title="">
|
||||
|
||||
<div class="team-intro">
|
||||
<p>Unser Team arbeitet eng zusammen und begleitet Sie vom Empfang bis zur Behandlung mit Ruhe, Struktur und einem freundlichen Miteinander. Neben der ärztlichen Versorgung ist gerade die Organisation im Hintergrund ein wichtiger Teil guter Praxisarbeit.</p>
|
||||
<p>Auf dieser Seite stellen wir Ihnen die Menschen vor, die den Praxisalltag prägen und für einen verlässlichen Ablauf sorgen.</p>
|
||||
</div>
|
||||
<div class="team-list">
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/heiner-creutzburg.jpg" alt="Heiner Creutzburg">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Arzt</span>
|
||||
<h3 class="team-profile__name">Heiner Creutzburg</h3>
|
||||
<p class="team-profile__subtitle">Facharzt für Innere Medizin</p>
|
||||
<p>Heiner Creutzburg steht für die hausärztliche und internistische Versorgung in unserer Praxis. Im Mittelpunkt stehen eine sorgfältige medizinische Einschätzung, eine klare Kommunikation und ein ganzheitlicher Blick auf Beschwerden, Verlauf und Therapie.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Langjährige Erfahrung in der hausärztlichen Versorgung</li>
|
||||
<li>Interne Medizin und umfassende Diagnostik</li>
|
||||
<li>Verlässliche Begleitung in akuten und chronischen Fragen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/person-silhouette.svg" alt="Dalia Alayan-Ibrahim">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Medizinische Fachangestellte, Primary Care Management B.Sc.</span>
|
||||
<h3 class="team-profile__name">Dalia Alayan-Ibrahim</h3>
|
||||
<p class="team-profile__subtitle">Praxismanagerin, PCM B.Sc.</p>
|
||||
<p>Dalia Alayan-Ibrahim übernimmt in unserer Praxis die Organisation der Abläufe und die Verantwortung für den Personalbereich. Sie sorgt mit dafür, dass Termine, Kommunikation und interne Abläufe gut ineinandergreifen und Patientinnen und Patienten sich jederzeit gut begleitet fühlen.</p>
|
||||
<p>Mit ihrem abgeschlossenen Studium im Bereich Primary Care Management (Bachelor of Science) bringt sie zusätzlich vertiefte Kompetenzen in Praxisorganisation, koordinierter Versorgung und teamorientiertem Arbeiten mit. Darüber hinaus übernimmt sie alle delegierten Tätigkeiten, führt Patientengespräche und betreut eine eigene Sprechstunde im dafür vorgesehenen Rahmen. Das stärkt die Struktur im Alltag und schafft mehr Raum für eine verlässliche Betreuung.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Praxisorganisation und Koordination der Abläufe</li>
|
||||
<li>Personalverantwortung und strukturierte Teamarbeit</li>
|
||||
<li>Delegierte Tätigkeiten, Patientengespräche und eigene Sprechstunde</li>
|
||||
<li>Zusätzliche Stärke durch das PCM Studium</li>
|
||||
</ul>
|
||||
<p><a href="pcm.php" class="button alt small">Mehr über PCM</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/person-silhouette.svg" alt="Medizinische Fachangestellte">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Medizinische Fachangestellte</span>
|
||||
<h3 class="team-profile__name">Finja Baruth</h3>
|
||||
<p class="team-profile__subtitle">Anmeldung, Assistenz, Labortätigkeiten und Praxisorganisation</p>
|
||||
<p>Finja Baruth unterstützt unser Team in der Patientenaufnahme, in der täglichen Assistenz sowie bei vielen organisatorischen Abläufen im Praxisalltag. So bleibt der Ablauf auch an lebhaften Tagen verlässlich, freundlich und gut strukturiert.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Assistenz und Unterstützung im Behandlungsalltag</li>
|
||||
<li>Organisation und Koordination an der Anmeldung</li>
|
||||
<li>Labortätigkeiten und Vorbereitung diagnostischer Abläufe</li>
|
||||
<li>Typische Standardaufgaben in einer modernen Arztpraxis</li>
|
||||
<li>Verlässliche Begleitung für Patienten und Team</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/person-silhouette.svg" alt="Medizinische Fachangestellte">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Medizinische Fachangestellte</span>
|
||||
<h3 class="team-profile__name">Svenja Vespermann</h3>
|
||||
<p class="team-profile__subtitle">Assistenz, Labortätigkeiten und verlässliche Praxisabläufe</p>
|
||||
<p>Svenja Vespermann sorgt mit dafür, dass Vorbereitungen, organisatorische Aufgaben und die praktische Unterstützung im Alltag sauber ineinandergreifen. Das schafft Ruhe im Tagesgeschäft und hilft, Patientinnen und Patienten gut durch die Praxis zu begleiten.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Unterstützung bei Praxisorganisation und Assistenz</li>
|
||||
<li>Labortätigkeiten und Mitwirkung bei diagnostischen Standardabläufen</li>
|
||||
<li>Sorgfältige Vor- und Nachbereitung im Alltag</li>
|
||||
<li>Typische Aufgaben in Anmeldung, Organisation und Behandlungsablauf</li>
|
||||
<li>Teamarbeit mit Blick auf einen freundlichen Ablauf</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/person-silhouette.svg" alt="Auszubildende zur MFA">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Auszubildende zur Medizinische Fachangestellte</span>
|
||||
<h3 class="team-profile__name">Promise Nnodim</h3>
|
||||
<p class="team-profile__subtitle">Lernen, Mitwachsen und Praxisnähe</p>
|
||||
<p>Unsere Auszubildende zur Medizinischen Fachangestellten lernt die Abläufe in der Praxis Schritt für Schritt kennen und wächst dabei in die vielfältigen Aufgaben einer modernen Hausarztpraxis hinein. Begleitung, Lernen und Praxisnähe stehen dabei im Vordergrund.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Einblick in Anmeldung, Organisation und Assistenz</li>
|
||||
<li>Begleitung durch erfahrene Kolleginnen und Kollegen</li>
|
||||
<li>Frühe Verankerung im Team und in den Praxisabläufen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/person-silhouette.svg" alt="Barbara Creutzburg">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Praxisassistentin</span>
|
||||
<h3 class="team-profile__name">Barbara Creutzburg</h3>
|
||||
<p class="team-profile__subtitle">Unterstützung im Praxisalltag und organisatorische Begleitung</p>
|
||||
<p>Barbara Creutzburg unterstützt die Praxis in organisatorischen und assistierenden Aufgaben und trägt dazu bei, dass Abläufe im Hintergrund zuverlässig vorbereitet und begleitet werden.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Unterstützung bei organisatorischen Praxisaufgaben</li>
|
||||
<li>Assistierende Tätigkeiten im täglichen Ablauf</li>
|
||||
<li>Verlässliche Begleitung im Hintergrund</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<section class="team-profile">
|
||||
<div class="team-profile__body">
|
||||
<div class="team-profile__media">
|
||||
<img src="images/clemenscreutzburg.jpg" alt="Clemens Creutzburg">
|
||||
</div>
|
||||
<div class="team-profile__text">
|
||||
<span class="team-profile__role">Webmaster und EDV-Verantwortlicher</span>
|
||||
<h3 class="team-profile__name">Clemens Creutzburg</h3>
|
||||
<p class="team-profile__subtitle">Technik, digitale Prozesse und Systembetreuung</p>
|
||||
<p>Clemens Creutzburg verantwortet die technische Betreuung der digitalen Systeme und unterstützt die Praxis bei Webseite, EDV-Struktur und technischen Abläufen.</p>
|
||||
<ul class="team-profile__points">
|
||||
<li>Betreuung der Webseite und digitaler Inhalte</li>
|
||||
<li>Verantwortung für EDV, Technik und Systemstruktur</li>
|
||||
<li>Unterstützung bei stabilen digitalen Praxisprozessen</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
<?php
|
||||
|
||||
include_once('footer.php');
|
||||
|
||||
?></body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user