Added more config options for color, name, and repo, made clicking on the bare url directly redirect to the repo based on useragent, fixed one config that was being created with the wrong name, finally added a url config so oembed works on other servers without digging around in the html
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block head %}
|
||||
<title>TwitFix</title>
|
||||
<meta content="TwitFix" property="og:title" />
|
||||
<title>{{ appname }}</title>
|
||||
<meta content="{{ appname }}" property="og:title" />
|
||||
<meta content="{{ message }}" property="og:description" />
|
||||
<meta content="https://github.com/robinuniverse/TwitFix" property="og:url" />
|
||||
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
|
||||
<meta http-equiv = "refresh" content = "0; url = https://github.com/robinuniverse/TwitFix" />
|
||||
<meta content="{{ repo }}" property="og:url" />
|
||||
<meta content="{{ color }}" data-react-helmet="true" 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="https://github.com/robinuniverse/TwitFix">Or click here.</a>
|
||||
You will be redirected to this projects github page in a moment. <a href="{{ repo }}">Or click here.</a>
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user