{% extends "base.html" %} {% set active_page = "blog" %} {% block title %}{{ draft.title }} — Blog Drafts{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ draft.title }}

{% if draft.subtitle %}

{{ draft.subtitle }}

{% endif %}
{{ draft.status | upper }}
{% if draft.style %}

Style

{{ draft.style }}

{% endif %} {% if draft.topic %}

Topic

{{ draft.topic[:80] }}

{% endif %} {% if draft.model_used %}

Model

{{ draft.model_used }}

{% endif %}

Cost

{% if draft.cost_usd %}${{ "%.4f" | format(draft.cost_usd) }}{% else %}N/A{% endif %} {% if draft.input_tokens %} ({{ "{:,}".format(draft.input_tokens) }} in / {{ "{:,}".format(draft.output_tokens) }} out) {% endif %}

{% if draft.tags %}
{% for tag in draft.tags %} #{{ tag }} {% endfor %}
{% endif %}
Created: {{ draft.created_at[:10] if draft.created_at else 'N/A' }} · Updated: {{ draft.updated_at[:10] if draft.updated_at else 'N/A' }}
Edit Export .md

Content

{% endblock %} {% block extra_scripts %} {% endblock %}