public_template.html 977 B

123456789101112131415161718192021222324252627282930313233
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <!-- Required meta tags -->
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <!-- Import the Bootstrap stylesheet -->
  8. <link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css') }}">
  9. <!-- Import our custom stylesheet -->
  10. <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
  11. <title>{% block title %}{% endblock %}</title>
  12. </head>
  13. <body>
  14. <main>
  15. {% block main %}{% endblock %}
  16. </main>
  17. <!-- Import jquery 3.3.1 slim min -->
  18. <script src="{{ url_for('static', filename='js/jquery.slim.min.js') }}"></script>
  19. <!-- Import Bootstrap bundle -->
  20. <script src="{{ url_for('static', filename='js/bootstrap.bundle.min.js') }}"></script>
  21. <!-- Import our custom JavaScript -->
  22. <script src="{{ url_for('static', filename='js/app.js') }}"></script>
  23. {% block script %}{% endblock %}
  24. </body>
  25. </html>