mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-20 19:40:16 -04:00
23 lines
639 B
HTML
23 lines
639 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>SpaceOut</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"
|
|
/>
|
|
{% block head %}{% endblock head %}
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
<div id="app">
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
</div>
|
|
{% block js %}{% endblock js %}
|
|
</body>
|
|
</html> |