2022-02-20 23:15:09 +01:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
<!--
|
|
|
|
{{ color }} - Custom Color Code set in the TwitFix Config
|
|
|
|
{{ appname }} - Custom Appname set in the TwitFix Config
|
|
|
|
{{ user }} - Username of the Source Tweet
|
|
|
|
{{ pic }} - Thumbnail Image for a given video
|
|
|
|
{{ vidlink }} - Direct link back to the source tweet
|
|
|
|
{{ vidurl }} - Direct MP4 link to the video contained in the tweet
|
|
|
|
{{ desc }} - Tweet Text
|
|
|
|
{{ url }} - Base URL of the site hosting TwitFix
|
|
|
|
{{ urlDesc }} - HTTP Encoded Tweet Text
|
|
|
|
{{ urlUser }} - HTTP Encoded Username
|
|
|
|
{{ urlLink }} - HTTP Encoded source link
|
|
|
|
{{ pfp }} - URL of the posters PFP
|
|
|
|
-->
|
|
|
|
{% block head %}
|
|
|
|
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
|
2022-05-03 16:37:15 +02:00
|
|
|
<meta content="{{ color }}" name="theme-color" />
|
2022-02-20 23:15:09 +01:00
|
|
|
<meta property="og:site_name" content="{{ appname }}"/>
|
|
|
|
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
<meta name="twitter:title" content="{{ user }} (@{{ screenName }})" />
|
|
|
|
<meta name="twitter:image" content="{{ pic }}" />
|
2022-03-07 13:55:33 +01:00
|
|
|
<meta name="twitter:image" content="{{ pic }}" />
|
2022-02-20 23:15:09 +01:00
|
|
|
<meta name="twitter:creator" content="@{{ user }}" />
|
|
|
|
|
|
|
|
<meta property="og:description" content="{{ desc }}" />
|
|
|
|
|
2022-05-13 22:43:07 +02:00
|
|
|
<!--<link rel="alternate" href="{{ url }}/oembed.json?desc={{ urlUser }}&user=Twitter&link={{ urlLink }}&ttype=photo" type="application/json+oembed" title="{{ user }}">-->
|
2022-02-20 23:15:09 +01:00
|
|
|
<meta http-equiv = "refresh" content = "0; url = {{ vidlink }}" />
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
Redirecting you to the tweet in a moment. <a href="{{ vidlink }}">Or click here.</a>
|
|
|
|
{% endblock %}
|