{% extends "base.html" %} {% block title %}Strategie{% endblock %} {% block content %}

Strategie

Strukturierte Profil-Analyse basierend auf deinen LinkedIn-Posts.

{% if analysis_created_at %}
Letzte Analyse: {{ analysis_created_at.strftime('%d.%m.%Y %H:%M') }}
{% endif %}
{% if success %}
Profil-Analyse erfolgreich gespeichert!
{% endif %} {% if error %}
{{ error }}
{% endif %} {% if not profile_analysis %}

Noch keine Profil-Analyse vorhanden.

Bitte wende dich an den Administrator, um eine Analyse zu starten.

{% endif %}

Schreibstil

Sprachlicher Fingerabdruck

{% for phrase in profile_analysis.linguistic_fingerprint.signature_phrases or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.linguistic_fingerprint or not profile_analysis.linguistic_fingerprint.signature_phrases %}
{% endif %}
{% for phrase in profile_analysis.linguistic_fingerprint.narrative_anchors or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.linguistic_fingerprint or not profile_analysis.linguistic_fingerprint.narrative_anchors %}
{% endif %}

Phrasen-Bibliothek

{% for phrase in profile_analysis.phrase_library.hook_phrases or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.hook_phrases %}
{% endif %}
{% for phrase in profile_analysis.phrase_library.transition_phrases or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.transition_phrases %}
{% endif %}
{% for phrase in profile_analysis.phrase_library.emotional_expressions or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.emotional_expressions %}
{% endif %}
{% for phrase in profile_analysis.phrase_library.cta_phrases or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.cta_phrases %}
{% endif %}
{% for phrase in profile_analysis.phrase_library.filler_expressions or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.filler_expressions %}
{% endif %}
{% for phrase in profile_analysis.phrase_library.ending_phrases or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.phrase_library or not profile_analysis.phrase_library.ending_phrases %}
{% endif %}

Ton-Analyse

{% for phrase in profile_analysis.tone_analysis.secondary_tones or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.tone_analysis or not profile_analysis.tone_analysis.secondary_tones %}
{% endif %}

Zielgruppen-Insights

{% for phrase in profile_analysis.audience_insights.pain_points_addressed or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.audience_insights or not profile_analysis.audience_insights.pain_points_addressed %}
{% endif %}

Topic Patterns

{% for phrase in profile_analysis.topic_patterns.main_topics or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.topic_patterns or not profile_analysis.topic_patterns.main_topics %}
{% endif %}
{% for phrase in profile_analysis.topic_patterns.recurring_themes or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.topic_patterns or not profile_analysis.topic_patterns.recurring_themes %}
{% endif %}
{% for phrase in profile_analysis.topic_patterns.content_formats or [] %}
{% endfor %} {% if not profile_analysis or not profile_analysis.topic_patterns or not profile_analysis.topic_patterns.content_formats %}
{% endif %}
Zusatzdaten Optional
Erweiterte Felder als strukturierte Listen. Werte lassen sich hinzufügen oder entfernen.
{% endblock %}