{% extends "base.html" %} {% block title %}{{ blog.name }} - Blog Toolkit{% endblock %} {% block content %}
{{ blog.url }} {% if blog.author_name %} | Author: {{ blog.author_name }} {% endif %}
Date Range: {{ analysis.temporal.date_range_days }} days
Average Gap: {{ "%.1f"|format(analysis.temporal.average_gap_days) }} days
First Post: {{ analysis.temporal.first_post[:10] if analysis.temporal.first_post else 'N/A' }}
Last Post: {{ analysis.temporal.last_post[:10] if analysis.temporal.last_post else 'N/A' }}
Total Words: {{ "{:,}".format(analysis.content.word_count.total) }}
Average Words: {{ "%.0f"|format(analysis.content.word_count.average) }}
Avg Reading Time: {{ "%.1f"|format(analysis.content.reading_time.average_minutes) }} minutes
Overall Sentiment: {{ analysis.sentiment.overall_sentiment.upper() }}
Compound Score: {{ "%.3f"|format(analysis.sentiment.average_compound) }}
Distribution: Positive: {{ analysis.sentiment.sentiment_distribution.positive }}, Neutral: {{ analysis.sentiment.sentiment_distribution.neutral }}, Negative: {{ analysis.sentiment.sentiment_distribution.negative }}
| Title | Published | Words | Reading Time | Actions |
|---|---|---|---|---|
| {{ post.title }} | {{ post.published_date.strftime('%Y-%m-%d') if post.published_date else 'N/A' }} | {{ post.word_count or 'N/A' }} | {{ post.reading_time or 'N/A' }} min | View |