mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-07 06:50:09 +00:00
27 lines
865 B
HTML
27 lines
865 B
HTML
<!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="#" />
|
|
|
|
<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
|
|
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> |