mirror of
https://github.com/tjsga/study-bank.git
synced 2025-05-23 01:59:50 -04:00
27 lines
942 B
HTML
27 lines
942 B
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>TJHSST</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
|
|
<link rel="stylesheet" href="{% static 'style.css' %}">
|
|
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
|
|
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body class="w-full" style="font-family: 'Open Sans';">
|
|
{% block root %}
|
|
<div class="md:w-3/4 w-full mx-auto px-4 py-8" id="root">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html> |