mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-05-14 23:16:50 +00:00
init project
This commit is contained in:
9
rsshub/templates/errors/400.html
Normal file
9
rsshub/templates/errors/400.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends 'layout.html' %}
|
||||
|
||||
{% block title %}400 错误{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="jumbotron">
|
||||
<h1>400 Bad Request</h1>
|
||||
</div>
|
||||
{% endblock %}
|
||||
9
rsshub/templates/errors/404.html
Normal file
9
rsshub/templates/errors/404.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends 'layout.html' %}
|
||||
|
||||
{% block title %}404 错误{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="jumbotron">
|
||||
<h1>404 Not Found</h1>
|
||||
</div>
|
||||
{% endblock %}
|
||||
9
rsshub/templates/errors/500.html
Normal file
9
rsshub/templates/errors/500.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{% extends 'layout.html' %}
|
||||
|
||||
{% block title %}500 错误{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="jumbotron">
|
||||
<h1>服务器出错</h1>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user