{% extends "base.html" %} {% block title %}{{ app_name }} — Pulse: {{ post.title[:50] if post else 'Post' }}{% endblock %} {% block content %}
← Back to Pulse
{% if post %} {% if post.hero_image_path %}
Hero image for {{ post.title }}
{% endif %} {% if post.generated_video_path %}

Generated Video {{ post.generated_video_method or 'unknown' }} {% if post.generated_video_duration %} {{ '%.1f'|format(post.generated_video_duration) }}s {% endif %}

{% if post.generated_video_method == 'animated_svg' %} Generated video (SVG) {% else %} {% endif %}
{% endif %}

{{ post.title or 'Untitled' }}

{{ post.status }}  |  {{ post.word_count or 0 }} words  |  WriteGuard: {{ 'PASSED' if post.writeguard_passed else 'NEEDS REVIEW' }} {% if post.published_at %} |  Published: {{ post.published_at[:10] }}{% endif %}
{% if post.status in ('draft', 'in_review') %} {% elif post.status == 'approved' %} {% endif %} {% if post.status == 'published' %} {% endif %}
{% set _wg_overall = post.readability_score or 0 %} {% set _wg_badge = 'green' if _wg_overall >= 80 else ('yellow' if _wg_overall >= 60 else 'red') %} {% set _wg_border = '#22c55e' if _wg_overall >= 80 else ('#f59e0b' if _wg_overall >= 60 else '#ef4444') %}

WriteGuard Score

{% if _wg_overall %} {{ _wg_overall|round(0)|int }} {{ 'GREEN' if _wg_badge == 'green' else ('YELLOW' if _wg_badge == 'yellow' else 'RED') }} {% else %} Not yet scored {% endif %}
Correctness
grammar · spelling
{{ (post.grammar_score|round(0)|int) if post.grammar_score else '—' }}
Clarity
readability · structure
run re-check
Delivery
tone · passive · hedging
{{ (post.tone_score|round(0)|int) if post.tone_score else '—' }}
Originality
plagiarism · AI detection
{{ (post.plagiarism_score|round(0)|int) if post.plagiarism_score else '—' }}
Engagement
variety · vocab · clichés
{{ (post.ai_detection_score|round(0)|int) if post.ai_detection_score else '—' }}

Section-Level Analysis

Click "Analyze Sections" to score each markdown section independently.

SEO Score

Score
{{ '%.0f'|format(post.seo_score) if post.seo_score else '—' }}
SEO Title
{{ post.seo_title or '—' }}
Meta Description
{{ (post.seo_description or '—')[:80] }}{% if (post.seo_description or '')|length > 80 %}...{% endif %}
Keywords
{{ post.seo_keywords or '—' }}
{% if post.tldr %}

TL;DR

{{ post.tldr }}

{% endif %}
SEO Title
{{ post.seo_title or '—' }}
SEO Description
{{ (post.seo_description or '—')[:100] }}
Keywords
{{ (post.seo_keywords or '—')[:80] }}
Topic
{{ post.topic or '—' }}

ICDEV™ Capabilities Referenced

No capabilities matched yet.
{% if post.review_notes %}

Review Notes

{{ post.review_notes }}

{% endif %}

Content

{{ post.body_html|safe if post.body_html else (post.body_markdown or 'No content yet.')|e }}
{% else %}
Post not found.
{% endif %} {% endblock %}