Fix Missing JS Reference

This commit is contained in:
Ben C 2022-03-02 05:25:45 -08:00 committed by GitHub
parent 64ac705324
commit 46c0f4f70c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -8,6 +8,7 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
{% block resources %} {% endblock %}
</head>
<body>
<header>

View File

@ -1,6 +1,10 @@
{% extends "base.jinja2" %}
{% from 'content.html' import content with context %}
{% block resources %}
<script src="/schemas/schema_doc.min.js"></script>
{% endblock %}
{% block content %}
<div class="row">
<div class="col text-center">
@ -12,4 +16,4 @@
{{ content(schema) }}
</div>
</div>
{% endblock %}
{% endblock %}