19 lines
No EOL
604 B
Django/Jinja
19 lines
No EOL
604 B
Django/Jinja
<!DOCTYPE html>
|
|
<html data-theme="light">
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>
|
|
Boardgame Site
|
|
</title>
|
|
<script src="{{ url_for('static', filename='main.js') }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
</head>
|
|
|
|
{% block body %}
|
|
|
|
{% endblock body %}
|
|
|
|
</html>
|
|
|