spad_for_vision / templates /article_not_found.html
0001AMA's picture
SPAD for Vision: app and docs
e5f2dfe
Raw
History Blame Contribute Delete
575 Bytes
{% 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 %}