-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Long press to download file instead of show content in (#2)
- add 500 error page - long press `Download` button to Save file into disk - allow drag-drop file to entire webpage
- Loading branch information
Showing
4 changed files
with
213 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% extends "layout.html" %} | ||
|
||
{% block title %}500 Internal Server Error{% endblock %} | ||
|
||
{% block content %} | ||
<div class="col-md-12"> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<h5 class="card-title">500 Internal Server Error</h5> | ||
<pre class="card-text"> | ||
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there is an error in the application. | ||
</pre> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters