Avi

{{ tweet.display_name }} {% if tweet.author_is_verified %} [verified] {% endif %} @{{ tweet.handle }} {{ tweet.created_at }}

{{ tweet.text | replace('<', '<') | replace('\n', '
') | safe }}

{% if tweet.quoted_tweet %}
{% with tweet = tweet.quoted_tweet %} {% include "partial/timeline-tweet.html" %} {% endwith %}
{% endif %} {% if tweet.photos %}

{% endif %} {% if tweet.videos %}

VIDEOS

{% endif %} {% if tweet.card %}

{{ tweet.card.display_url }}

{{ tweet.card.title }}

{{ tweet.card.content }}

{% endif %} {% if tweet.public_metrics %}

replies: {{ tweet.public_metrics.reply_count }}, quotes: {{ tweet.public_metrics.quote_count }}, rt: {{ tweet.public_metrics.retweet_count }}, likes: {{ tweet.public_metrics.like_count }}

{% endif %} {% if tweet.non_public_metrics %}

impressions: {{ tweet.non_public_metrics.impression_count }}, clicks: {{ tweet.non_public_metrics.user_profile_clicks }}, link clicks: {{ tweet.non_public_metrics.url_link_clicks | default('n/a') }}, profile clicks: {{ tweet.non_public_metrics.user_profile_clicks | default('n/a') }}

{% endif %}