|
|
- {% extends "bootstrap/base.html" %}
- {% block title %}tia.paste{% endblock %}
-
- {% block styles %}
- {{super()}}
- <link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
- {% endblock %}
-
- {% block navbar %}
- <nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
- <div class="navbar-brand">tia.paste</div>
- </nav>
- {% endblock %}
-
- {% block content %}
- <div class="container" style="margin-top: 15px; padding-bottom: 15px;">
- <div class="row justify-content-center">
- <div class="col-lg-12">
- <h1 style="font-size: 96px; font-weight: bold; text-align: center;">404</h1>
- <p style="text-align: center;">This page doesn't exist! How did you get here?</p>
- </div>
- </div>
- </div>
- {% endblock %}
-
- {% block scripts %}
- {{ super() }}
- <script src="{{url_for('.static', filename='editor.bundle.js')}}"></script>
- {% endblock %}
|