mirror of
https://github.com/iv-org/invidious.git
synced 2025-12-18 09:52:29 -05:00
Merge 547b3ee221 into 65463333f3
This commit is contained in:
commit
0f50bfbc8f
3 changed files with 2538 additions and 1 deletions
1261
assets/404_tv_box_dark_theme.svg
Normal file
1261
assets/404_tv_box_dark_theme.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 38 KiB |
1261
assets/404_tv_box_light_theme.svg
Normal file
1261
assets/404_tv_box_light_theme.svg
Normal file
File diff suppressed because it is too large
Load diff
|
After Width: | Height: | Size: 38 KiB |
|
|
@ -1,8 +1,23 @@
|
|||
<%
|
||||
dark_mode = env.get("preferences").as(Preferences).dark_mode
|
||||
%>
|
||||
|
||||
<% content_for "header" do %>
|
||||
<title><%= "Error" %> - Invidious</title>
|
||||
<% end %>
|
||||
|
||||
<div class="h-box">
|
||||
<div style="display: flex; flex-direction: column; align-items: center;">
|
||||
<%= error_message %>
|
||||
<% if dark_mode == "dark" %>
|
||||
<div style="width: 100px; height: auto;">
|
||||
<img src="/404_tv_box_dark_theme.svg" alt="" style="width: 100px; height: auto;">
|
||||
</div>
|
||||
<% else %>
|
||||
<div style="width: 100px; height: auto;">
|
||||
<img src="/404_tv_box_light_theme.svg" alt="" style="width: 100px; height: auto;">
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
<%= next_steps %>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue