{% extends 'base.html.twig' %} {% set fullName = ((e.title ? e.title ~ ' ' : '') ~ e.firstName ~ ' ' ~ e.lastName)|trim %} {% set reseller = e.company.reseller %} {# White-Label-Branding (Firma → Reseller → Standard), aus dem BrandingService #} {% set primary = branding.primaryColor %} {% set primaryDark = branding.primaryColorDark %} {% set logo = branding.logoUrl %} {% macro addressBlock(a, label) %} {% set s = a.street|default('') %} {% set l2 = a.addressLine2|default('') %} {% set zip = a.zip|default('') %} {% set city = a.city|default('') %} {% set st = a.state|default('') %} {% set co = a.country|default('') %}
{% if label %}{{ label }}{% endif %} {% if s %}{{ s }} {{ a.houseNumber|default('') }}
{% endif %} {% if l2 %}{{ l2 }}
{% endif %} {% if zip or city %}{{ zip }} {{ city }}
{% endif %} {% if st %}{{ st }}
{% endif %} {% if co %}{{ co }}{% endif %}
{% endmacro %} {% block title %}{{ fullName }} – {{ e.company.name }}{% endblock %} {% block meta %} {% endblock %} {% block stylesheets %} {% if primary %} {% endif %} {% endblock %} {% block body %}
{% if logo %}{% endif %}
{% if e.photoPath %} {{ fullName }} {% else %}
{{ (e.firstName|first ~ e.lastName|first)|upper }}
{% endif %}

{{ fullName }}

{% if e.position or e.department %}
{{ e.position }}{% if e.position and e.department %} · {% endif %}{{ e.department }}
{% endif %}
{{ e.company.name }}
⬇ Kontakt speichern (vCard)
{% if e.phone %}Anrufen{% endif %} {% if e.mobile %}Mobil{% endif %} {% if e.email %}E-Mail{% endif %} {% if e.website %}Web{% endif %}
{% if e.bio %}
Über mich

{{ e.bio }}

{% endif %} {% set hasContact = e.phone or e.mobile or e.phoneCentral or e.fax or e.email or e.emailPrivate or e.website %} {% if hasContact %}
Kontakt
{% if e.phone %}Telefon{{ e.phone }}{% endif %} {% if e.mobile %}Mobil{{ e.mobile }}{% endif %} {% if e.phoneCentral %}Zentrale{{ e.phoneCentral }}{% endif %} {% if e.fax %}
Fax{{ e.fax }}
{% endif %} {% if e.email %}E-Mail{{ e.email }}{% endif %} {% if e.emailPrivate %}E-Mail privat{{ e.emailPrivate }}{% endif %} {% if e.website %}Website{{ e.website }}{% endif %}
{% endif %} {% set ab = e.addressBusiness %} {% set ap = e.addressPrivate %} {% if ab or ap %}
Adresse
{% if ab %} {{ _self.addressBlock(ab, ap ? 'Geschäftlich' : null) }} {% endif %} {% if ap %} {{ _self.addressBlock(ap, 'Privat') }} {% endif %}
{% endif %} {% if e.contactLinks|length %}
Links
{% endif %}
Profil teilen
QR-Code zum Profil

QR-Code scannen, um dieses Profil zu öffnen

{% if walletEnabled %}
Zur Wallet hinzufügen
QR-Code: Karte zu Apple/Google Wallet hinzufügen

Scannen, um die Karte in Apple / Google Wallet zu speichern

{% endif %}
bereitgestellt über
{% endblock %}