src/hdalab/templates/404.html
author ymh <ymh.work@gmail.com>
Fri, 19 Jul 2024 09:38:03 +0200
changeset 704 b5835dca2624
parent 546 0ca66b267d15
permissions -rw-r--r--
Adapt renkan preview to uses chrome headless/puppeteer

{% extends "base.html" %}
{% load i18n %}
{% load static %}


{% block title %}{{block.super}} &gt; {% trans 'Page not found' %}{% endblock %}

{% block css_import %}
{{block.super}}
        <link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/index.css' %}" />
{% endblock %}

{% block main_content %}
    <div class="all-title">
        <h1>{% trans 'Page not found' %}</h1>
    </div>
    <div class="description">
        <p>{% trans 'Sorry, but the requested page could not be found.' %}</p>
    </div>
{% endblock %}