You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

152 lines
3.5 KiB

---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="post-title">
{{ page.heading }}
<!--
{% if site.title == "blank" %}<span class="font-weight-bold">{{ site.first_name }}</span> {{ site.middle_name }} {{ site.last_name }}{% else %}{{ site.title }}{% endif %}
-->
</h1>
<p class="desc">
{{ page.description }}
<hr>
</p>
</header>
<article>
{% for profile in page.profiles %}
<h2>{{ profile.name }}</h2>
<div class="profile float-{% if profile.align == 'left' %}left{% else %}right{% endif %}">
{% if profile.image %}
<img class="img-fluid z-depth-1 rounded" src="{{ profile.image | prepend: '/assets/img/' | relative_url }}">
{% endif %}
<!--
{% if page.profile.address %}
<div class="address">
{{ page.profile.address }}
<p></p>
</div>
{% endif %}
-->
</div>
<br>
{% if profile.birthday %}
<h4>Geburtstag</h4>
<div>
{{ profile.birthday }}
<p></p>
</div>
{% endif %}
{% if profile.birthyear %}
<h4>Geburtsjahr</h4>
<div>
{{ profile.birthyear }}
<p></p>
</div>
{% endif %}
{% if profile.founded %}
<h4>Gründung</h4>
<div>
{{ profile.founded }}
<p></p>
</div>
{% endif %}
{% if profile.birthplace %}
<h4>Geburtsort</h4>
<div>
{{ profile.birthplace }}
<p></p>
</div>
{% endif %}
{% if profile.foundingplace %}
<h4>Gründungsort</h4>
<div>
{{ profile.foundingplace }}
<p></p>
</div>
{% endif %}
{% if profile.education %}
<h4>Ausbildung</h4>
<div>
{% for item in profile.education %}
<ul style="padding-left: 1">
<li>{{ item }}</li>
</ul>
{% endfor %}
</div>
{% endif %}
{% if profile.team %}
<h4>Verein</h4>
<div>
{{ profile.team }}
<p></p>
</div>
{% endif %}
{% if profile.job %}
<h4>Beruf</h4>
<div>
{{ profile.job }}
<p></p>
</div>
{% endif %}
{% if profile.family %}
<h4>Familie</h4>
<div>
{{ profile.family }}
<p></p>
</div>
{% endif %}
{% if profile.deathday %}
<h4>Todestag</h4>
<div>
{{ profile.deathday }}
<p></p>
</div>
{% endif %}
{% if profile.deathyear %}
<h4>Todesjahr</h4>
<div>
{{ profile.deathyear }}
<p></p>
</div>
{% endif %}
<div class="clearfix">
<h4>Sonstiges</h4>
{{ profile.content }}
<p></p>
<hr>
</div>
{% endfor %}
{% if page.news %}
{% include news.html %}
{% endif %}
{% if page.selected_papers %}
{% include selected_papers.html %}
{% endif %}
{% if page.social %}
<div class="social">
<div class="contact-icons">
{% include social.html %}
</div>
<div class="contact-note">{{ site.contact_note }}</div>
</div>
{% endif %}
</article>
</div>