{% extends 'base.html.twig' %} {% set fullName = (e.firstName ~ ' ' ~ e.lastName)|trim %} {% set reseller = e.company.reseller %} {# Firmenspezifisches Branding – defensiv validiert #} {% set b = e.company.brandingConfig %} {% set primary = (b.primaryColor is defined and b.primaryColor matches '/^#[0-9a-fA-F]{6}$/') ? b.primaryColor : null %} {% set primaryDark = (b.primaryDark is defined and b.primaryDark matches '/^#[0-9a-fA-F]{6}$/') ? b.primaryDark : primary %} {% set logo = (b.logoUrl is defined and (b.logoUrl starts with 'https://' or b.logoUrl starts with '/')) ? b.logoUrl : null %} {% 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.bio %}
Über mich

{{ e.bio }}

{% 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 %}