
* new style with picocss * djlint * rate distribution * collection item drag to order * discover available for guest * search combine movie tv
29 lines
864 B
HTML
29 lines
864 B
HTML
{% load static %}
|
|
{% load i18n %}
|
|
{% load l10n %}
|
|
{% load admin_url %}
|
|
{% load mastodon %}
|
|
{% load oauth_token %}
|
|
{% load truncate %}
|
|
{% load thumb %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ site_name }} - {% trans '未找到' %}</title>
|
|
{% include "common_libs.html" with jquery=0 v2=1 %}
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<main class="container">
|
|
<article class="error">
|
|
<header>
|
|
<h3>🤦🏻 条目未找到</h3>
|
|
</header>
|
|
您可能输入了一个无效的网址,或者相关内容已被作者删除。如果您确信这是我们的错误,请通过页面底部的链接联系我们。
|
|
</article>
|
|
</main>
|
|
{% include "partial/_footer.html" %}
|
|
</body>
|
|
</html>
|