* feat: Switch to SVG logo; use it (and new bitmaps) in more places * Run images through image_optim * Copy icons from base template * Tint icons red when in dev mode
16 lines
449 B
HTML
16 lines
449 B
HTML
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block title %}404 Not Found{% endblock %}
|
|
{% block content %}
|
|
<img class="col-2 mb-5"
|
|
src="{% static 'ietf/images/ietf-logo.svg' %}"
|
|
alt="IETF">
|
|
<div class="alert alert-warning my-3">
|
|
<h2>{{ error }}</h2>
|
|
<hr>
|
|
<p class="mb-0">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
{% endblock %} |