hexo-theme-stellar/layout/404.ejs

20 lines
486 B
Plaintext
Raw Normal View History

2021-02-19 23:33:19 +08:00
<%
page.comment_title = '';
2024-01-17 14:07:30 +08:00
page.header = false;
2021-02-21 13:44:11 +08:00
page.robots = 'none';
2021-02-19 23:33:19 +08:00
%>
2022-11-23 22:44:11 +08:00
<article class='md-text error-page'>
2024-01-19 13:51:55 +08:00
<h1><img id='error' src='<%- theme.style.error_page %>' alt='404'></h1>
2021-02-19 23:33:19 +08:00
<p class='what'>
<strong>
<%- __('page.error.what') %>
</strong>
</p>
<p class='why'>
<%- __('page.error.why') %>
</p>
2021-07-13 23:45:40 +08:00
<br><br>
2022-12-15 22:42:48 +08:00
<a class='button' id='back' href="<%- config.root %>"><%- __('page.error.action') %></a>
2021-02-19 23:33:19 +08:00
</article>
2024-02-12 23:07:56 +08:00
<%- partial('_partial/comments/layout') %>