forked from ComputerTech/bastebin
17 lines
493 B
HTML
17 lines
493 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Expired - {{ cfg.site.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="error-page">
|
|
<div class="error-content">
|
|
<div class="error-icon">⏰</div>
|
|
<h1>410 - Paste Expired</h1>
|
|
<p>This paste has expired and is no longer available.</p>
|
|
|
|
<div class="error-actions">
|
|
<a href="{{ url_for('index') }}" class="btn btn-primary">Create New Paste</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |