guild-journal/templates/base.html

19 lines
427 B
HTML
Raw Normal View History

2023-06-09 20:19:15 +00:00
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-06-11 18:01:36 +00:00
<link rel="stylesheet" href="{% static 'milligram.min.css' %}">
2023-06-09 20:19:15 +00:00
<title>Guild Journal</title>
</head>
<body>
<main class="container">
{% block content %}
{% endblock %}
</main>
</body>
</html>