BetterTwitFix/templates/default.html
adryd 7bbcd75600
Fix tweet text content appearing in telegram
- Fix video quality sorting
 - Fix screenName being empty
 - Fix img accessed before declaration
 - Hopefully tweet text content shows now in telegram
 - Add flask_cors dependency
 - Remove unnecesary react-helmet garbage
2022-05-03 11:13:34 -04:00

15 lines
528 B
HTML

{% extends 'base.html' %}
{% block head %}
<title>{{ appname }}</title>
<meta content="{{ appname }}" property="og:title" />
<meta content="{{ message }}" property="og:description" />
<meta content="{{ repo }}" property="og:url" />
<meta content="{{ color }}" name="theme-color" />
<meta http-equiv = "refresh" content = "0; url = {{ repo }}" />
{% endblock %}
{% block body %}
You will be redirected to this projects github page in a moment. <a href="{{ repo }}">Or click here.</a>
{% endblock %}