Spaces:
Running
Running
File size: 575 Bytes
e5f2dfe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {% extends "base.html" %}
{% block title %}Article Not Found - MV+{% endblock %}
{% block content %}
<div class="container" style="max-width: 900px; margin: 40px auto; padding: 20px; text-align: center;">
<h1 style="color: #00CED1; margin-bottom: 20px;">Article Not Found</h1>
<p style="color: #e0e0e0; font-size: 1.1em; margin-bottom: 30px;">
The article "{{ article_name }}" could not be found.
</p>
<a href="/articles" style="color: #00CED1; text-decoration: none; font-size: 1.1em;">
← Back to Articles
</a>
</div>
{% endblock %}
|