ErrorState
AppHata durumu: uyarı banner'ı + merkezi boş durum kombinasyonu. retryHref ile yeniden deneme linki.
Something went wrong
Failed to load user data. Please check your connection.
Unable to load data
There was a problem loading this content.
<%- include('modules/app/ErrorState', {
message: 'Failed to load user data. Please check your connection.'
}) %>
<%- include('modules/app/ErrorState', {
title: 'Database connection failed',
message: 'Could not connect to the database. Please try again.',
retryHref: req.originalUrl,
retryLabel: 'Try again'
}) %>
<%
var _title = locals.title || 'Something went wrong';
var _retryLabel = locals.retryLabel || 'Try again';
%>
<%= _title %>
<% if (locals.message) { %><%= locals.message %>
<% } %>
<% if (locals.retryHref) { %>
<%= _retryLabel %>
<% } %>
Unable to load data
There was a problem loading this content.
<% if (locals.retryHref) { %>
<%= _retryLabel %>
<% } %>