Fix duplicate body tag in HTML

This commit is contained in:
2024-07-08 21:35:42 +02:00
parent 11d9d1022e
commit 585b595ab0
3 changed files with 57 additions and 56 deletions

View File

@ -1,22 +1,16 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<body data-bs-spy="scroll"
data-bs-target=".toc"
data-bs-offset="-200"
tabindex="0">
<div class="container mt-4">
<div class="row">
<div class="col-lg-3">{% include "partials/toc.html" %}</div>
<div class="col-lg-9">
{% include "partials/info_box.html" %}
{% include "partials/news.html" %}
{% for game in games %}
{% include "partials/game_card.html" %}
{% endfor %}
</div>
<div class="container mt-4">
<div class="row">
<div class="col-lg-3">{% include "partials/toc.html" %}</div>
<div class="col-lg-9">
{% include "partials/info_box.html" %}
{% include "partials/news.html" %}
{% for game in games %}
{% include "partials/game_card.html" %}
{% endfor %}
</div>
</div>
<script src="{% static 'js/index.js' %}"></script>
</body>
</div>
{% endblock content %}