.github
combineImg
gifConvert
static
templates
base.html
default.html
image.html
index.html
rawvideo.html
text.html
txt.html
video.html
twExtract
.coveragerc
.gitignore
Dockerfile
LICENSE.txt
api.md
cache.py
config.json
configHandler.py
docker-compose.yml
docker.md
hosting.md
msgs.py
package-lock.json
package.json
pytest.ini
readme.md
requirements.txt
run_tests.sh
serverless.yml
test_vx.py
testgen.py
twitfix.ini
twitfix.py
twitfix.service
twitfix_proxy.conf
vxlogging.py
wsgi.py
25 lines
1.7 KiB
HTML
25 lines
1.7 KiB
HTML
{% extends 'base.html' %} {% block head %}
|
|
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type' />
|
|
<meta content="{{ color }}" name="theme-color" />
|
|
<meta property="og:site_name" content="{{ appname }}">
|
|
|
|
<meta name="twitter:card" content="player" />
|
|
<meta name="twitter:title" content="{{ user }} (@{{ screenName }}) {% if verified %}☑️{% else %}{% endif %}" />
|
|
<meta name="twitter:image" content="{{ pic }}" />
|
|
<meta name="twitter:player:width" content="{{ videoSize['width'] }}" />
|
|
<meta name="twitter:player:height" content="{{ videoSize['height'] }}" />
|
|
<meta name="twitter:player:stream" content="{{ vidurl }}" />
|
|
<meta name="twitter:player:stream:content_type" content="video/mp4" />
|
|
|
|
<meta property="og:url" content="{{ vidlink }}" />
|
|
<meta property="og:video" content="{{ vidurl }}" />
|
|
<meta property="og:video:secure_url" content="{{ vidurl }}" />
|
|
<meta property="og:video:type" content="video/mp4" />
|
|
<meta property="og:video:width" content="{{ videoSize['width'] }}" />
|
|
<meta property="og:video:height" content="{{ videoSize['height'] }}" />
|
|
<meta name="twitter:title" content="{{ user }} (@{{ screenName }}) {% if verified %}☑️{% else %}{% endif %}" />
|
|
<meta property="og:image" content="{{ pic }}" />
|
|
<meta property="og:description" content="{{ desc }}" />
|
|
|
|
<link rel="alternate" href="{{ url }}/oembed.json?desc={{ urlUser }}&user={{ urlDesc }}&link={{ urlUserLink }}&ttype=video&provider={{ appname }}" type="application/json+oembed" title="{{ user }}">
|
|
<meta http-equiv="refresh" content="0; url = {{ tweetLink }}" /> {% endblock %} {% block body %} Redirecting you to the tweet in a moment. <a href="{{ tweetLink }}">Or click here.</a> {% endblock %} |