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.
 
 
 

29 lines
883 B

{% 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 %}