laster 0.0.1

This commit is contained in:
2026-05-25 15:49:42 +07:00
parent 14d3a3152a
commit e2c4881bb7
22 changed files with 1139 additions and 158 deletions

View File

@@ -0,0 +1,18 @@
<%- include('partials/page-start') %>
<section class="page center-page">
<div class="empty-state error-state">
<span class="material-symbols-outlined">database_off</span>
<h1><%= errorTitle || 'Không thể tải dữ liệu' %></h1>
<p><%= errorMessage || 'Web server đang gặp lỗi khi đọc dữ liệu. Kiểm tra log container để xem nguyên nhân chi tiết.' %></p>
<% if (errorDetails) { %>
<code class="error-detail"><%= errorDetails.code %>: <%= errorDetails.message %></code>
<% } %>
<a class="btn btn-primary" href="/">
<span class="material-symbols-outlined">sync</span>
Thử lại
</a>
</div>
</section>
<%- include('partials/page-end') %>