|
| 1 | +{% extends "base.html" %} |
| 2 | + |
| 3 | +{% block title %}Page Not Found - {% endblock %} |
| 4 | + |
| 5 | +{% block navbar %} |
| 6 | +<ul class="nav navbar-nav"> |
| 7 | + {% if request.user.is_authenticated %} |
| 8 | + {% include "authenticated_menu_snippet.html" %} |
| 9 | + {% else %} |
| 10 | + {% include "menu_snippet.html" %} |
| 11 | + {% endif %} |
| 12 | +</ul> |
| 13 | +{% endblock %} |
| 14 | + |
| 15 | +{% block content %} |
| 16 | +<div class="row justify-content-center"> |
| 17 | + <div class="col-md-8 col-lg-6 py-5"> |
| 18 | + <div class="text-center mb-4"> |
| 19 | + <i class="fas fa-map-marked-alt" style="font-size: 5rem; color: #158F9B;"></i> |
| 20 | + </div> |
| 21 | + |
| 22 | + <h1 class="text-center mb-4">Page Not Found</h1> |
| 23 | + |
| 24 | + <div class="alert alert-warning"> |
| 25 | + <p class="mb-3"> |
| 26 | + <strong>Oops!</strong> The page you're looking for doesn't exist or has been moved. |
| 27 | + </p> |
| 28 | + <p class="mb-0"> |
| 29 | + This could happen if: |
| 30 | + </p> |
| 31 | + <ul class="mb-0"> |
| 32 | + <li>The URL was mistyped</li> |
| 33 | + <li>The publication or resource has been removed</li> |
| 34 | + <li>The link you followed is outdated</li> |
| 35 | + </ul> |
| 36 | + </div> |
| 37 | + |
| 38 | + <div class="card mt-4"> |
| 39 | + <div class="card-body"> |
| 40 | + <h5 class="card-title"><i class="fas fa-compass"></i> Where would you like to go?</h5> |
| 41 | + <div class="list-group list-group-flush"> |
| 42 | + <a href="/" class="list-group-item list-group-item-action"> |
| 43 | + <i class="fas fa-home"></i> Home - View the map |
| 44 | + </a> |
| 45 | + <a href="/works/" class="list-group-item list-group-item-action"> |
| 46 | + <i class="fas fa-list"></i> Browse all works |
| 47 | + </a> |
| 48 | + <a href="/contribute/" class="list-group-item list-group-item-action"> |
| 49 | + <i class="fas fa-hands-helping"></i> Contribute metadata |
| 50 | + </a> |
| 51 | + <a href="/about/" class="list-group-item list-group-item-action"> |
| 52 | + <i class="fas fa-info-circle"></i> About OPTIMAP |
| 53 | + </a> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + |
| 58 | + <div class="alert alert-info mt-4"> |
| 59 | + <h6 class="mb-2"><i class="fas fa-question-circle"></i> Need help?</h6> |
| 60 | + <p class="mb-2"> |
| 61 | + If you think this is an error or need assistance, please visit: |
| 62 | + </p> |
| 63 | + <ul class="mb-0"> |
| 64 | + <li><a href="/about/" class="alert-link">About page</a> - Contact information and support</li> |
| 65 | + <li><a href="/accessibility/" class="alert-link">Accessibility page</a> - Accessibility features and help</li> |
| 66 | + </ul> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | +</div> |
| 70 | +{% endblock %} |
0 commit comments