Merge pull request #37 from ipdb/feature/imprintchanges

Name & Imprint changes
This commit is contained in:
Matthias Kretschmann 2017-11-07 14:26:41 +01:00 committed by GitHub
commit d0765d6273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,5 @@
company: "Interplanetary Origins e.V."
company: "Interplanetary Database Foundation e.V."
registration: "Registration VR 36146 B"
address:
street: "Wichertstraße 14a"
zip: "10439"

View File

@ -2,6 +2,15 @@
<div class="company">
<h4 class="company__name">{{ contact.company }}</h4>
{% if include.imprint %}
<p>{{ contact.registration}}</p>
<h5>Represented by</h5>
<p>
{% for representative in site.data.board | limit: 3 %}
{{ representative.position }}: {{ representative.name }}<br />
{% endfor %}
</p>
{% endif %}
<p>
<a href="mailto:{{ contact.email }}">{{ contact.email }}</a>
</p>

View File

@ -6,4 +6,4 @@ title: Imprint
narrow: true
---
{% include contact.html %}
{% include contact.html imprint="true" %}