Fix template

This commit is contained in:
Reckless_Satoshi 2022-01-31 07:05:52 -08:00
parent 32712fbe65
commit 82cbae1707
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -1,9 +1,27 @@
<html><head>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="onion-location" content="{{ ONION_LOCATION }}" />
{% comment %} TODO Add a proper fav icon {% endcomment %}
<link rel="shortcut icon" href="#" /><title></title>
<link rel="shortcut icon" href="#" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>RoboSats - Simple and Private Bitcoin Exchange</title>
{% load static %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script><link
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/><link rel="stylesheet" type="text/css" href="{% static "css/index.css" %}"
/></head><body><div id="main"><div id="app"></div></div><script src="{% static "frontend/main.js" %}"></script></body></html>
/>
<link rel="stylesheet" type="text/css" href="{% static "css/index.css" %}"
/>
</head>
<body>
<div id="main">
<div id="app"></div>
</div>
<script src="{% static "frontend/main.js" %}"></script>
</body>
</html>