feat: team section with doctors, employees, jobs
Migrates three Grav modular subpages to Zola child pages under content/team/. Doctors page preserves inline `id="Riemann"`, `id="Krey"`, `id="Malyga"` anchors so home-page team preview links (/team#Riemann etc.) resolve correctly. Employees slides YAML converted to plain markdown with img shortcodes. Jobs page carries `draft = true` matching original `published: false`. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
+++
|
||||
title = "Team"
|
||||
template = "section.html"
|
||||
sort_by = "weight"
|
||||
weight = 30
|
||||
+++
|
||||
@@ -0,0 +1,94 @@
|
||||
+++
|
||||
title = "Ärzte"
|
||||
weight = 10
|
||||
|
||||
[extra]
|
||||
anchor = "doctors"
|
||||
+++
|
||||
|
||||
<h1 id="Riemann" class="anchor">Dr. med. Oliver Riemann</h1>
|
||||
{{ img(src="team/Olli.jpg", width=400, alt="Dr. med Oliver Riemann", class="float-right") }}
|
||||
|
||||
<table class="tg">
|
||||
<tr>
|
||||
<td>Montag bis Freitag</th>
|
||||
<td>08:00–12:00</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Montag und Donnerstag</td>
|
||||
<td>15:00–18:00</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p></p>
|
||||
<br>
|
||||
|
||||
#####Qualifikation
|
||||
|
||||
- Facharzt für Allgemeinmedizin
|
||||
- Diabetologe DDG
|
||||
|
||||
#####Tätigkeitsschwerpunkte
|
||||
|
||||
- [Hausärztliche Versorgung](/services#HV)
|
||||
- [Diabetologie](/services#Diabetologie)
|
||||
- [Tauchtauglichkeitsuntersuchung](/services#Vorsorge)
|
||||
|
||||
***
|
||||
|
||||
<h1 id="Krey" class="anchor">Dr. med. Angela Krey</h1>
|
||||
{{ img(src="team/Angela.jpg", width=400, alt="Dr. Angela Krey", class="float-right") }}
|
||||
|
||||
<table class="tg">
|
||||
<tr>
|
||||
<td>Montag bis Freitag</th>
|
||||
<td>08:00–12:00</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Montag und Dienstag</td>
|
||||
<td>15:00–18:00</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p></p>
|
||||
<br>
|
||||
|
||||
#####Qualifikation
|
||||
|
||||
- Fachärztin für Innere Medizin
|
||||
- Kardiologin
|
||||
- Intensivmedizinerin
|
||||
- Hypertensiologin DHL
|
||||
|
||||
#####Tätigkeitsschwerpunkte
|
||||
|
||||
- [Hausärztliche Versorgung](/services#HV)
|
||||
- [Kardiologie](/services/#Kardio)
|
||||
- [Hypertensiologie (Bluthochdruckerkrankungen)](/services/#Kardio)
|
||||
|
||||
***
|
||||
|
||||
<h1 id="Malyga" class="anchor">Christian Malyga</h1>
|
||||
{{ img(src="team/Christian.jpg", width=400, alt="Christian Malyga", class="float-right") }}
|
||||
|
||||
<table class="tg">
|
||||
<tr>
|
||||
<td>Montag bis Freitag</th>
|
||||
<td>08:00–12:00</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Montag, Dienstag und Donnerstag</td>
|
||||
<td>15:00–18:00</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p></p>
|
||||
<br>
|
||||
|
||||
#####Qualifikation
|
||||
|
||||
- Facharzt für Innere Medizin
|
||||
|
||||
#####Tätigkeitsschwerpunkt
|
||||
|
||||
- [Hausärztliche Versorgung](/services#HV)
|
||||
|
||||
#####Interessenschwerpunkt
|
||||
- Gastroenterologie
|
||||
@@ -0,0 +1,42 @@
|
||||
+++
|
||||
title = "Unser Praxis-Team"
|
||||
weight = 20
|
||||
|
||||
[extra]
|
||||
anchor = "employees"
|
||||
+++
|
||||
|
||||
{{ img(src="team/Berscheidt.jpg", width=200, alt="Frau Berscheidt", class="float-right") }}
|
||||
|
||||
**Frau Berscheidt**
|
||||
Medizinische Fachangestellte, Diabetes-Assistentin
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
{{ img(src="team/Bolz.jpg", width=200, alt="Frau Bolz", class="float-right") }}
|
||||
|
||||
**Frau Bolz**
|
||||
Medizinische Fachangestellte
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
{{ img(src="team/Frohne.jpg", width=200, alt="Frau Frohne", class="float-right") }}
|
||||
|
||||
**Frau Frohne**
|
||||
Medizinische Fachangestellte
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
{{ img(src="team/Merhof.jpg", width=200, alt="Frau Merhof", class="float-right") }}
|
||||
|
||||
**Frau Merhof**
|
||||
Medizinische Fachangestellte
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
{{ img(src="team/Rodrigues.jpg", width=200, alt="Frau Rodrigues", class="float-right") }}
|
||||
|
||||
**Frau Rodrigues**
|
||||
Medizinische Fachangestellte
|
||||
|
||||
<div class="clearfix"></div>
|
||||
@@ -0,0 +1,13 @@
|
||||
+++
|
||||
title = "Wir stellen ein!"
|
||||
weight = 30
|
||||
draft = true
|
||||
|
||||
[extra]
|
||||
anchor = "jobs"
|
||||
+++
|
||||
|
||||
## Medizinische Fachangestellte
|
||||
Wir suchen zur Unterstützung unseres Teams schnellstmöglich eine **MFA mit Berufserfahrung** in Voll-, oder Teilzeit. Neben anspruchsvollen Aufgaben innerhalb des breiten medizinischen Spektrums unserer Gemeinschaftspraxis, erwartet Sie ein freundliches Umfeld und eine moderne Austattung.
|
||||
|
||||
Bewerbungen bitte schriftlich per Post oder Mail.
|
||||
Reference in New Issue
Block a user