File size: 2,402 Bytes
727a40a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | {% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="Devnoms" />
<meta name="description" content="A powerful chat application for seamless communication." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Devnoms" />
<meta name="description" content="A powerful chat application for seamless communication." />
<meta property="og:image" content="https://filesstatic.netlify.app/Chatapp/img/logo_750x750.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Devnoms" />
<meta property="twitter:image" content="https://filesstatic.netlify.app/Chatapp/img/logo_750x750.png" />
<meta name="description" content="A powerful chat application for seamless communication." />
<link rel="apple-touch-icon" sizes="180x180" href="https://pdf813.netlify.app/chat/favicon_io/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="https://pdf813.netlify.app/chat/favicon_io/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="https://pdf813.netlify.app/chat/favicon_io/favicon-16x16.png" />
<link rel="manifest" href="{% static 'chat/favicon_io/site.webmanifest' %}" />
<link rel="stylesheet" href="{% static 'chat/css/color.css' %}" />
<link rel="stylesheet" href="{% static 'chat/css/base.css' %}" />
<script src="{% static 'chat/js/base.js' %}" defer></script>
<title>
{% block title %}
Test | Devnoms
{% endblock %}
</title>
{% block style %}
{% endblock %}
</head>
<body>
{% block content %}
<a href="{% url 'test_chat' %}">test_chat</a>
<br /> <br />
<a href="{% url 'test_home' %}">test_home</a>
<br /> <br />
<a href="{% url 'test_login' %}">test_login</a>
<br /> <br />
<a href="{% url 'test_signup' %}">test_signup</a>
<br /> <br />
<a href="{% url 'test_search' %}">test_search</a>
<br /> <br />
<a href="{% url 'test_profile' %}">test_profile</a>
<br /> <br />
<a href="{% url 'test_settings' %}">test_settings</a>
<br /> <br />
{% endblock %}
</body>
</html>
|