15 lines
351 B
HTML
15 lines
351 B
HTML
|
{% load static %}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<p>Sorry, <a href="{% url 'index' %}">this part of domain</a> is not reachable by IPv4. Please upgrade to IPv6 and try to reach {{ domain }} again.</p>
|
||
|
|
||
|
<img src="{% static 'img/ipv6.jpg' %}" alt="">
|
||
|
|
||
|
</body>
|
||
|
</html>
|