base.html 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html>
  3. <head>
  4. {% block head %}
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>{% block title %}{% endblock %} :: Lakesuperior</title>
  9. <link href="{{url_for('ldp.static', filename='assets/css/bootstrap.min.css')}}" rel="stylesheet">
  10. <link href="{{url_for('ldp.static', filename='assets/css/bootstrap-theme.min.css')}}" rel="stylesheet">
  11. {% block extra_js %}{% endblock %}
  12. {% endblock %}
  13. </head>
  14. <body>
  15. {% include 'navbar.html' %}
  16. <div class="container">
  17. {% block breadcrumbs %}{% endblock %}
  18. <h1>{{ self.title() }}</h1>
  19. {% block content %}{% endblock %}
  20. </div>
  21. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  22. <script src="{{url_for('ldp.static', filename='assets/js/jquery-3.2.1.min.js')}}"></script>
  23. <!-- Include all compiled plugins (below), or include individual files as needed -->
  24. <script src="{{url_for('ldp.static', filename='assets/js/bootstrap.bundle.min.js')}}"></script>
  25. {% block tail_js %}{% endblock %}
  26. </body>
  27. </html>