15 lines
		
	
	
		
			529 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			529 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 %}
 |