You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
883 B

  1. {% extends "bootstrap/base.html" %}
  2. {% block title %}tia.paste{% endblock %}
  3. {% block styles %}
  4. {{super()}}
  5. <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
  6. {% endblock %}
  7. {% block navbar %}
  8. <nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
  9. <div class="navbar-brand">tia.paste</div>
  10. </nav>
  11. {% endblock %}
  12. {% block content %}
  13. <div class="container" style="margin-top: 15px; padding-bottom: 15px;">
  14. <div class="row justify-content-center">
  15. <div class="col-lg-12">
  16. <h1 style="font-size: 96px; font-weight: bold; text-align: center;">404</h1>
  17. <p style="text-align: center;">This page doesn't exist! How did you get here?</p>
  18. </div>
  19. </div>
  20. </div>
  21. {% endblock %}
  22. {% block scripts %}
  23. {{ super() }}
  24. <script src="{{url_for('.static', filename='editor.bundle.js')}}"></script>
  25. {% endblock %}